The pump quit in the church well so we had to dig it up. When we tried to pull it we could see somthing on the pitless adapter. We tapped it with a long stick and discovered it was a rock and now it was further down in the well. No amount of pounding or pulling would loosen the pitless connector. So we had to did up the well.
My Commentary and Technical help
From BobDavis321
Monday, March 31, 2025
We had to dig up the church well
Waveshare Zero to Pi3 Review
I recently purchased a Waveshare Zero to Pi3 adapter. I had a couple of Pi zero's laying around not being used because I had to look up the HDMI and USB adapters in order to use them. One Zero was even so old that it did not have any built in network ability. I had to use USB memory sticks to add programs to it.
Friday, March 14, 2025
Mackie Thump TH-15A Powered speaker Repair
I was asked to repair a Mackie Thump TH-15A Powered speaker by a friend. It powered on and everything looked good but there was no sound coming out. I checked the speakers and the power supplies but everything was just fine. However, the computer board was getting really hot. It had 3.3 volts coming into a voltage regulator but only .5 volts coming out. I tried easter egging the capicitors and it turned out to be the tiny little .1 uF capacitor that was shorting out the power supply. The correct output is 1.2 volts.
This is what the guts look like, we are going to zero in on the logic board.
Saturday, March 8, 2025
ESP32 HUB75 DMA Hue Value Spectrum demo
Aurora Demo on ESP32 with a 16S 32x32 LED panel
Thursday, February 13, 2025
New Big LED sign powered by Raspberry Pi
I have made another big LED sign, but this time it is powered by a Raspberry Pi. At first I used the Adafruit Hat ,but I have upgraded to the three HUB75 Hat from ElectroDragon! This enalbes three chains of LED arrays. So far I have 5 32x32 panels in each chain but I will likely expand that.
This is a view of the back of the assembled panel. I am using metal brackets to hold the panels together as they have on inch spacing. 24mm is ideal as the one inch spacing leaves about a two mm space between the panels. I have a 3D printed version of the brackets on thingiverse and have used them in other designs.
Here is a couple of pictures of the panel being lit up. The text demo is limited to one line of panels.
There are several demo programs to check out the proper operation of the Raspbery Pi adapter.
Here is a link to the video of the demos;
Sunday, February 9, 2025
Testing LED panels for bad LED's
I have written two programs to test LED panels after someone sold me a pile of them with many bad LED's. Some panels had over 30 LED's that were not working. He also shipped them with no padding between the LED's! This resulted in smashed LED's and some of the alignment nubs were broken off. Fortunatly with some soldering I was able to reduce the number of bad LED's to 3 or 4 per panel. Now I can use them for testing out programs and configurations. Some LED's had broken runs but most of them just needed to be resoldered.
The first program tests the colors and leaves the panel white for quickly testing if the LED's just soldered are working. This does not work on 16S panels for some reason.
// RGBcolors test for Adafruit RGBmatrixPanel library.
// For testeing LED arrays for bad bits.
#include <RGBmatrixPanel.h>
#define CLK 8 // USE THIS ON ARDUINO UNO, ADAFRUIT METRO M0, etc.
#define OE 9
#define LAT 10
#define A A0
#define B A1
#define C A2
#define D A3
// Does not work with 16S panels if you add "D" nothing happens!
RGBmatrixPanel matrix(A, B, C, CLK, LAT, OE, false);
void setup() {
matrix.begin();
// fill the screen with colors
matrix.fillRect(0, 0, 32, 32, matrix.Color333(0, 7, 0));
delay(1000);
matrix.fillRect(0, 0, 32, 32, matrix.Color333(7, 0, 0));
delay(1000);
matrix.fillRect(0, 0, 32, 32, matrix.Color333(0, 0, 7));
delay(1000);
matrix.fillRect(0, 0, 32, 32, matrix.Color333(7, 7, 7));
delay(1000);
}
void loop() {
}
The next program is for sorting LED panels by how they are internally wired. There are 16S, 8S (There are many varieties of 8S) and 4S panels. It scans all LED's one at a time.
I could not get this to work with the normal drivers so I wrote my own using "bit banging". Its slow but works great! Note:This program was improved in March of 2021, it runs much better now!
// RGB bitbang test bits by scanning
#define CLK 8
#define OE 9
#define LAT 10
#define A A0
#define B A1
#define C A2
#define D A3
#define R1 2
#define G1 3
#define BL1 4
#define R2 5
#define G2 6
#define B2 7
int tbit;
int row;
int col;
void setup() {
pinMode(A, OUTPUT);
pinMode(B, OUTPUT);
pinMode(C, OUTPUT);
pinMode(D, OUTPUT);
pinMode(CLK, OUTPUT);
pinMode(OE, OUTPUT);
pinMode(LAT, OUTPUT);
pinMode(R1, OUTPUT);
pinMode(G1, OUTPUT);
pinMode(BL1, OUTPUT);
pinMode(R2, OUTPUT);
pinMode(G2, OUTPUT);
pinMode(B2, OUTPUT);
}
void loop() {
// Set sequential bits
for (row=0; row<16; row++){
for (col=0; col<64; col++){
for (tbit=0; tbit<64; tbit++){
digitalWrite(R1, LOW);
digitalWrite(G1, LOW);
digitalWrite(BL1, LOW);
if (tbit <= col){
digitalWrite(R1, HIGH);
// digitalWrite(G1, HIGH);
// digitalWrite(BL1, HIGH);
}
digitalWrite(CLK, HIGH);
digitalWrite(CLK, LOW); //Clock data in
}
// latch and display results
digitalWrite(OE, HIGH); // disable output while latching data.
digitalWrite(LAT, HIGH);
// select next column if it has changed
digitalWrite(A, LOW);
digitalWrite(B, LOW);
digitalWrite(C, LOW);
digitalWrite(D, LOW);
// update row selection
if ((row & 0x0001)>0)digitalWrite(A, HIGH);
if ((row & 0x0002)>0)digitalWrite(B, HIGH);
if ((row & 0x0004)>0)digitalWrite(C, HIGH);
if ((row & 0x0008)>0)digitalWrite(D, HIGH);
// delay(5); // dim display
digitalWrite(LAT, LOW);
digitalWrite(OE, LOW);
delay(50);
}
}
}
Sunday, February 2, 2025
Explaining the different types of LED Arrays
Not all LED arrays are the same, there are many varieties within a set size and set amount of LED's. There are the P numbers. P10 means 10mm LED spacing. P6 is 6mm spacing. P3 is 3mm spacing.
Then there are the S or scan or row select numbers. Typical S numbers are S4, S8, and S16. But they even vary within these numbers! Lets start with a 16S arrangement. In a 32 by 32 LED array there are two 32 bit shift registers one for the top half and one for the bottom (As well as one for each color). Then there are 16 row selectors that select what two rows are currently lit up.
Tuesday, January 28, 2025
Big LED sign with 6x4 of 32x32 P6 LED panels
Wednesday, January 1, 2025
Expanding my sign with 16x16 addressable LED arrays.
I am expanding my sign with 16x16 WS2812B Addressable LED arrays. Currently I am at 3x5 of these arrays but am working on adding three more for a 3x6 or 48 by 96 sign.
This is the built in demo with a T8000 controller. I had more luck with the SP801E controller.
Here I am starting to add the grids to make the pixels square. The grids are on thingiverse. I drilled too many holes in the luan because I confused the orientation. They need to connet from top to bottom.
This is another picture of assembling the arrays. I am using E-6000 glue to hold them in place. I glue two or three at a time just in the corners then put something on them to hold them in place till the glue dries.
![]() |
https://www.youtube.com/watch?v=STn5s0Ipr-M
This is a demo with an SP801E controller
https://www.youtube.com/shorts/VzCqLekaI-U
Here it is with WLED on an ESP32 processor
Here are some pictures from the WLED demo.
Friday, November 29, 2024
Sunrise Systems LED Sign revisited
I was asked to convert another Sunrise Systems LED sign to Arduino control and wireless updates via bluetooth. This time I wanted to make the conversion simpler by reusing the driver IC's and Transistors. To do that I cut the board in half just to the right of the processor. Then I tapped into signals on the 74HC04 and 74HC138. The following picture shows the location for the cut and where to tap into the signals:
I spliced in a bare board to add the arduino processor.
Friday, June 21, 2024
InMoov Compatible Hand Design Upgrade
I am working on a InMoov Compatible Hand Design Upgrade. The main goal is to put all the servos in the hand. Years ago I printed out a hand only to discover that all the servos are in the forearm. Recently I though I could do better. So far I am on my third hand.
This is what it looks like so far. I used the one piece finger segments and printed them laying down with supports to plate only. The servo arms will need to be two sided or 3D printed.
Wednesday, June 5, 2024
Converting TV to LED sign with 16x16 Arrays and SP801E
I have been Converting an old TV into a LED sign with 16x16 Arrays and SP801E controller. At first I had 8 of the 16x15 ws2812 LED arrays then I added two of the 8x32 LED arrays to better fill in the screen area.
Here are two demo pictures. One is a built in pattern and the other is a picture of my wifes pineapple upside down cake.
Friday, May 31, 2024
Repair of Suzuki GP-3 Digital Piano
My brother dropped off a Suzuki GP-3 electric digital piano for repairs. Many of the keys were stuck in the down position. So I googled how to fix it and here is what I found:
Here is a video telling how to take it apart:
https://www.youtube.com/watch?v=KE7A7I0mirg
Then I found this coment on how to fix it at:
https://www.yamaha-keyboard-guide.com/suzuki-keyboard-repair.html
"I used the orange fibreglass driveway marker from Home Depot. It’s the perfect size. With a rubber mallet I used it to punch out the old rods and replace them at the same time."
The first step was to remove the keys from the piano.
Eventually I decided to remove every other octave, then remove all of the rods, then carefully push an orange driveway marker through all of the octaves. I left the angled tip on the rod, and still had to lift some keys slightly to get the rod to go through them. The commentator above said that he drove the marker through pushing the rods out as he went, but my keyboard was so far gone that that was not a possibility. I had to use some pliers to twist and pull out the rods, one at a time, as they were really stuck in place.
When I put it back together there were way too many screws left over. So I took it back apart and put in a lot of missing screws. Even so I still had about 16 screws left over!!
Thursday, March 7, 2024
Rocker Bogey 6 Wheel Drive Mars Rover
I had about eight wheels and matching motors around so I decided to make a six wheel drive Arduino controlled rover. Then I discovered the rocker-bogie design that can handle really fough terrain. So I 3D printed a design and modified it for a bigger platform for the electronics.
I have not figured out the front suspension yet and I would love to include one of my 3D prited Nerf guns in the design!
I cut a hold to mount a rotating servo in the middel of the platform. there is not enough room for the arduino, batteries, and motor controller!