What about sharing led pins with the switches? Either drive each switch with the normal led scan, or have a switch only scan after every led frame where you pulse one the switch pins. You can use the analog in put to read what will be a 0 or 3v signal from each switch, in sequential order. Resistors on the output of each switch will isolate the driving pin if multiple buttons are pressed.
@@gsegallisYes, you can charlieplex buttons as well, note you must add a diode to each switch to prevent button presses from shorting out rows in your LED matrix.
@@swarupsahu6611 What do you mean? Analog video by definition cannot be transmitted via WiFi. However, it is possible to digitize analog video and transmit the digitized video over WiFi, that can also be to an esp32. Note that you will probably need to choose a format and size that the esp32 can handle, but UA-cam is doing the same; on low bandwidth devices it will select a higher compression for you.
A couple of other tricks you can do : Measure the battery voltage and adjust the LED drive duty to maintain constant-ish current. for the buttons, use the LED matrix pins to scan a "1" across the pins, with a resistor from each pin through a switch to a common line, with a pulldown resistor, sensing with an ADC, or maybe logic level if that can work with the LED drive stuff. Or you could use 3 dual diodes instead of the series R's. Could maybe flip the button pin to input briefly for the measurement.
@@grindfi If you have Red green and blue subpixels, you can stagger the LEDs for more perceived resolution. You would not gain back all the resolution, but it would help. So the resolution would cut in a third, but then you could double the 'virtual resolution' with staggered LEDs, which would appear to about 1.5x the actual resolution.
@@rich1051414This reminds me of the Apple II subpixel trick. They used alternating green and magenta subpixels, allowing a white pixel at twice the horizontal accuracy.
I've used this technique in 1995. Learned it from some mailing list or BBS or Yahoo groups while working on a 68HC11 project. It didn't have a name back then, but a multiplexing trick someone knew and passed it along. Now this Charlie dude comes along and grabs the glory in 2003 while some other smart dude who was the true inventor of this technique got shafted and forgotten.
If you were on the PIClist then I posted around 1998. Microchip posted it in a book of tricks as "Charlieplexing" after Y2K. They also posed a simpler version of a matrix keypad in that same booklet, using a resistor ladder like bitluni did here. My one was around 2001 and I was surpriced to see that also pop up as known, later by Microchip. Mine was for an elevator manufacturer, a customer of mine then and I was maxing out the capabilities of an AtMega chip I was using for lift monitoring. If you wiki it, someone went in the waybackmachine and found my piclist entry for bipolar tristated LED multiplexing and even stuff preceeding it. So it doesn't get Grahamplexing either 😅 Lots of things like this have their time to be invented. Many inventions were independently invented and some the glory was stolen for sure but usually it starts with publicity of some breakthrough and inventive minds using it to finish a mental puzzle. For me it was simply wanting to drive a large number of LEDs and knowing that PICs can tristate. Using bipolar LED pairs gave me twice the LEDS I'd get from multiplexing alone. I did another one more recently with 20 off an 8 pin CH32V RISC-v micro but bitluni's used a few more LEDs than that...
if you don't patent or at least make your work known... you tend to get forgotten. I'm sure Charlie wouldn't mind taking the back seat if the other person was able to prove their "invention", right?
Pretty sure multiplexing has existed for long enough nothing significant has been invented the past decade or so for driving a tiny LED display like this.
@seanabsher5577 Carl Fredric Gauss is not forgotten, yet they continue to discover routines, etc. in his unpublished works. Poor students come to him with a solution and he would open a bottom drawer, rustle some papers and show the student he'd found that answer 10 years before. Lol
The 3.2V max in the LED datasheet is referring to the forward voltage of the LED when 5mA is flowing through it. Typically it is 2.8V, but variation from part-to-part could make the forward voltage as high as 3.2V. This specification does not refer to the maximum allowable voltage; typically LEDs are specified by the maximum current (30mA for this particular LED). If you were to apply 3.2V to one of these LEDs from a high-current power supply, the current would likely be higher than 5mA. Typically microcontrollers have current limiters on the IO pins, and a decent output resistance, which allows you to drive LEDs with them.
I made something similar to this in a game called The Powder Toy. It's a 2D particle physics simulator and has a bunch of electrical stuff as well. The screen has columns and rows like yours. There's an LCD element that lights up and acts as pixels, and is controlled by elements called PSCN and NSCN. PSCN turns the LCD element on, and NSCN turns it off. There's a switch under every pixel, also controlled by PSCN and NSCN. If the switch is in the ON position, the signal will go through it and to the PSCN that's touching the pixel, which turns the pixel on. The pixels reset by sending a signal to the NSCN touching each pixel. The screen is controlled by first turning on the switches to the first row, and then sending the column signal to certain pixels, which turns them on. The switches on the first row are then turned off, and the switches on the next row are turned on and then the column signals are sent to light up the pixels on that row. And so on and so forth. For faster speeds, instant conductors are used to send the signal instantly, and the off signals are sent to all switches or pixels at once so the system can reset/be ready for the next row much faster
A fantastic explanation: dunno why I had so much trouble wrapping my head around it--wish this had been out before I made the script and the video! Great job, thanks!
If u have adc you can make the buttons connect different resistors and make a voltage divider that outputs different voltages. Can cram a lot of buttons on 1 adc pin
Well, it would be a bit of a problem because he also has a 3 volt input and a 5 volt input, which would cause some problems in adc, but i like your idea, the resistor keypad trick is used in almost every cheap thing where mcu pins are limited
Imagine a real monitor using LEDs instead of OLED displays and being able to get to insane refresh rates. We could actually achieve this using micro LEDs for a RGB >1080p screen. This would be the future of monitors
Excellent video, again! 👍 Great LED driving idea! Didn't thought about it as way to drive LED matrix. But I used similar method with all 3 states for other different projects.. 😂
Adding a tiny plastic shroud around your battery will make the negative protected. If your board is designed with a Vcc plane instead of a ground plane this will allow for the metal battery connector.
I wonder, if you could make a 720*400 matrix it might be possible to make a ttl led monochrome monitor. It'd be a challenge to get the aspect ratio right but it might be a promising avenue.
I did some experiments with Charlieplexing a few years ago, it is a great technique but you have to select your components carefully and you need to keep the tracks as short as is possible. The biggest problem with Charlieplexing is ghosting (and to avoid this), especially when the LEDs are very sensitive. Using resistors (best way is without) can also introduce ghosting or a too slow update/pin switching speed. A too fast update speed (without resistors) can shorten the lifetime of the LEDs or can brownout the pins of the microcontroller over time. You need to find a safe balance between speed (without ghosting), visibiity and (overall) current. Remember we can only see 24 frames per second so there is enough room to skip frames (blank = no output) to reduce the current and also extend battery life. And because of a lower speed (and completely off states) there is enough time to read the state of the buttons without interference (many times). I think you need to slow down to make it better.
Why do people believe the 24fps thing?? If you're referring to the flicker fusion rate, sure, but we can certainly see above 24fps. I can see light fixtures flicker at 60hz.
Well done bitluni. You might need a small cap on your keypad resistor ladder, could be the led direct drive is affecting the adc performance. If you can get an accurate sample while resetting tristates during persistance of visiin before the next frame then thats an easy sw solution
Reading resistor networks with ADCs has always been an issue, for me at least. It just fluctuates way too much and messes the button presses up. For instance, I've got a 12-Bit ADC to read the resistor network of my car's multimedia buttons on the steering wheel, and just by turning the car on or off, I get wildly different ADC readings, throwing it off.
I didn't figure out until going back after finishing the video - only 1 column of LEDs is on at a time! I was confused at first. I think you should add a micro-sd slot! Anyways, it's a really cool project
Adding a sdcard slot would be really cool, as he could save some animations on it. Of couse more pins are needed, but at this point just get an ESP32 or something. It has SDCard+USB support "built-in" and a lot of pins.
If you ever sell these I’d be very interested in buying one, I’ve been looking for an entry point into the ch32v and I’d love to try to implement Tetris on it!
it's the same way that I bit bang i2c, I set the output low to pull the line down and set it to an input to let it go high. this give me a open collector type output on uC. so data is transferred just by changing port from output to input and not changing what's on the port, always a low. Works for me.
It got named Charlieplexing after a Maxam guy who did it but I invented before him, published before him (on the PICist) and apparently others were before me too. It's one of those things that was going to occur to inventive people once tristating of microcontroller pins was available.
In a Charlieplexed LED matrix, each LED is connected between two microcontroller pins. By selectively setting these pins to high, low, or as high-impedance inputs, the LEDs can be individually controlled. The name "Charlieplexing" is derived from Charlie Allen, who developed this technique.
How about this, but with a esp32 using all available pins to get the most pixels as possible. No buttons, no nothing, only wifi and this board becomes a wifi display. How many pixels would that be?
25*24. 600 pixels monochrome pixels. But I doubt you can drive that many leds in series from the micro. So, use some proper multiplexers (which can also stack channels, but with a delay in responsiveness). Also, that board already has 1 dead led out of 240. Which is fixable (as opposed to lcd and oled panels), but you're probably going to have a pretty high failure rate. This is a good solution for low res displays or public displays, though. I would make it bigger, go for 16 or 20 leds in series and try different aspect ratios (like 8*30). Some of the public digital displays and scrolling text displays might already use this technique.
Maybe am wrong, but If you connect the diodes in the matrix in antiparallel, so 2 diodes for every positiion, and still use the H-L-Z levels, you get n² matrix. Be 1 and 2 the antiparalell diodes, pin A column, ping B rows.. Then they light when: B/A Z L H Z - - - L - - 1 H - 2 - Rest of columns does not light because are Z
I think he had run out of pins for the micro, but with his bigger one now who knows, He's on live tonight I think (wednesday) as "Bitluni Live" at 20-00 UTCish, I'll be their.
Huffman encoding and lowering the frame rate, He's normally live tonight (Wednesday) at 20-00 UTC as "Bitluni Live", you can watch him do these projects their.
Now if the LEDs where a lot smaller (and greater in quantity), you added RGB, and you gave it control electronics (and power electronics) to match... You could make the world's fastest computer monitor.
@@Slushee oh youre right im dumb, i didnt go back to look. i have no clue then. he doesn't have any links to buy them so maybe he got a deal where buying that many was the same price as just buying 5. I've gone on that site before and for some configurations they charge the same amount whether you buy 5 or 10 boards.
For those who don't want to use a "strange" MCU with a typical "Chinese" datasheet, there is a PI4IOE5V6416 I2C 16-bit expander for any other MCU. 50mA I/O current capability, R/W pin configuration (a Z-state), 24TQFN, up to two devices on a same bus Yeah, and thank you for the great idea for my big matrix 8x5x30 indicator ) Merely lost a hope to find a good one manufactured
Looks cool:) What is the current limit on the microcontroller io pins? The current of one LED is 20mA, but there are 16 of them in one column... I don’t think the pin can output more than 100mA. Or maybe the LEDs do not work simultaneously within the same column? Then how many LEDs can light at the time in one column?
48000000/128/16 = 23437.5
What about sharing led pins with the switches? Either drive each switch with the normal led scan, or have a switch only scan after every led frame where you pulse one the switch pins. You can use the analog in put to read what will be a 0 or 3v signal from each switch, in sequential order. Resistors on the output of each switch will isolate the driving pin if multiple buttons are pressed.
@@gsegallisYes, you can charlieplex buttons as well, note you must add a diode to each switch to prevent button presses from shorting out rows in your LED matrix.
If (Amazing_Videos) next_video() ;
Are these floats or doubles? They are written as Ints 😉 - jk
Is there any way to stream analog videos over wifi using esp32
@@swarupsahu6611 What do you mean? Analog video by definition cannot be transmitted via WiFi. However, it is possible to digitize analog video and transmit the digitized video over WiFi, that can also be to an esp32. Note that you will probably need to choose a format and size that the esp32 can handle, but UA-cam is doing the same; on low bandwidth devices it will select a higher compression for you.
A couple of other tricks you can do :
Measure the battery voltage and adjust the LED drive duty to maintain constant-ish current.
for the buttons, use the LED matrix pins to scan a "1" across the pins, with a resistor from each pin through a switch to a common line, with a pulldown resistor, sensing with an ADC, or maybe logic level if that can work with the LED drive stuff. Or you could use 3 dual diodes instead of the series R's. Could maybe flip the button pin to input briefly for the measurement.
wait, we can do a color screen if you find 3.3v rgb leds, the resolution will be 3 times lower, but color is color
@@grindfi If you have Red green and blue subpixels, you can stagger the LEDs for more perceived resolution. You would not gain back all the resolution, but it would help. So the resolution would cut in a third, but then you could double the 'virtual resolution' with staggered LEDs, which would appear to about 1.5x the actual resolution.
@@rich1051414This reminds me of the Apple II subpixel trick. They used alternating green and magenta subpixels, allowing a white pixel at twice the horizontal accuracy.
I've used this technique in 1995. Learned it from some mailing list or BBS or Yahoo groups while working on a 68HC11 project.
It didn't have a name back then, but a multiplexing trick someone knew and passed it along.
Now this Charlie dude comes along and grabs the glory in 2003 while some other smart dude who was the true inventor of this technique got shafted and forgotten.
If you were on the PIClist then I posted around 1998. Microchip posted it in a book of tricks as "Charlieplexing" after Y2K. They also posed a simpler version of a matrix keypad in that same booklet, using a resistor ladder like bitluni did here. My one was around 2001 and I was surpriced to see that also pop up as known, later by Microchip. Mine was for an elevator manufacturer, a customer of mine then and I was maxing out the capabilities of an AtMega chip I was using for lift monitoring. If you wiki it, someone went in the waybackmachine and found my piclist entry for bipolar tristated LED multiplexing and even stuff preceeding it. So it doesn't get Grahamplexing either 😅 Lots of things like this have their time to be invented. Many inventions were independently invented and some the glory was stolen for sure but usually it starts with publicity of some breakthrough and inventive minds using it to finish a mental puzzle. For me it was simply wanting to drive a large number of LEDs and knowing that PICs can tristate. Using bipolar LED pairs gave me twice the LEDS I'd get from multiplexing alone. I did another one more recently with 20 off an 8 pin CH32V RISC-v micro but bitluni's used a few more LEDs than that...
if you don't patent or at least make your work known... you tend to get forgotten. I'm sure Charlie wouldn't mind taking the back seat if the other person was able to prove their "invention", right?
Pretty sure multiplexing has existed for long enough nothing significant has been invented the past decade or so for driving a tiny LED display like this.
"Трёхзначная сигнальная система" описана в патенте AEG-Telefunken в 1979г.
Шах и мат.
@seanabsher5577 Carl Fredric Gauss is not forgotten, yet they continue to discover routines, etc. in his unpublished works. Poor students come to him with a solution and he would open a bottom drawer, rustle some papers and show the student he'd found that answer 10 years before. Lol
FINALLY THE PERFORMANCE I NEED.
@6:48 don't miss this part! There is no music, yet you'll be playing it in your head. now that's hell of a music compression.
Of all channels to play Bad Apple, this was not one of them. Though, it was funny
Is that your professional opinion?
The 3.2V max in the LED datasheet is referring to the forward voltage of the LED when 5mA is flowing through it. Typically it is 2.8V, but variation from part-to-part could make the forward voltage as high as 3.2V. This specification does not refer to the maximum allowable voltage; typically LEDs are specified by the maximum current (30mA for this particular LED). If you were to apply 3.2V to one of these LEDs from a high-current power supply, the current would likely be higher than 5mA. Typically microcontrollers have current limiters on the IO pins, and a decent output resistance, which allows you to drive LEDs with them.
I made something similar to this in a game called The Powder Toy. It's a 2D particle physics simulator and has a bunch of electrical stuff as well. The screen has columns and rows like yours. There's an LCD element that lights up and acts as pixels, and is controlled by elements called PSCN and NSCN. PSCN turns the LCD element on, and NSCN turns it off. There's a switch under every pixel, also controlled by PSCN and NSCN. If the switch is in the ON position, the signal will go through it and to the PSCN that's touching the pixel, which turns the pixel on. The pixels reset by sending a signal to the NSCN touching each pixel. The screen is controlled by first turning on the switches to the first row, and then sending the column signal to certain pixels, which turns them on. The switches on the first row are then turned off, and the switches on the next row are turned on and then the column signals are sent to light up the pixels on that row. And so on and so forth. For faster speeds, instant conductors are used to send the signal instantly, and the off signals are sent to all switches or pixels at once so the system can reset/be ready for the next row much faster
Great explanation of charlie-plexing!
A fantastic explanation: dunno why I had so much trouble wrapping my head around it--wish this had been out before I made the script and the video! Great job, thanks!
If u have adc you can make the buttons connect different resistors and make a voltage divider that outputs different voltages. Can cram a lot of buttons on 1 adc pin
Well, it would be a bit of a problem because he also has a 3 volt input and a 5 volt input, which would cause some problems in adc, but i like your idea, the resistor keypad trick is used in almost every cheap thing where mcu pins are limited
Love the Little Quirky Projects, Hope to see You soon on the Streams , cheers .
Certainly interesting...
Just an idea but with all those LEDs maybe we can use it as a touch screen too by using the current draw from reflected light or as a light sensor.
you are wonderful for making us smarter so thank you
nice project, never heard of charlieplexing before
Main Question is, will it run Doom?!? Awesome 😁😎‼️‼️‼️
Imagine a real monitor using LEDs instead of OLED displays and being able to get to insane refresh rates.
We could actually achieve this using micro LEDs for a RGB >1080p screen. This would be the future of monitors
Another fantastic project in fantastic depth and detail! Pure gold!!
Excellent video, again! 👍
Great LED driving idea! Didn't thought about it as way to drive LED matrix. But I used similar method with all 3 states for other different projects.. 😂
Nice demo of the mysterious MV
Adding a tiny plastic shroud around your battery will make the negative protected. If your board is designed with a Vcc plane instead of a ground plane this will allow for the metal battery connector.
I wonder, if you could make a 720*400 matrix it might be possible to make a ttl led monochrome monitor. It'd be a challenge to get the aspect ratio right but it might be a promising avenue.
That would be a cool thing to see!
I did some experiments with Charlieplexing a few years ago, it is a great technique but you have to select your components carefully and you need to keep the tracks as short as is possible. The biggest problem with Charlieplexing is ghosting (and to avoid this), especially when the LEDs are very sensitive. Using resistors (best way is without) can also introduce ghosting or a too slow update/pin switching speed. A too fast update speed (without resistors) can shorten the lifetime of the LEDs or can brownout the pins of the microcontroller over time. You need to find a safe balance between speed (without ghosting), visibiity and (overall) current. Remember we can only see 24 frames per second so there is enough room to skip frames (blank = no output) to reduce the current and also extend battery life. And because of a lower speed (and completely off states) there is enough time to read the state of the buttons without interference (many times). I think you need to slow down to make it better.
Why do people believe the 24fps thing?? If you're referring to the flicker fusion rate, sure, but we can certainly see above 24fps. I can see light fixtures flicker at 60hz.
Well done bitluni. You might need a small cap on your keypad resistor ladder, could be the led direct drive is affecting the adc performance. If you can get an accurate sample while resetting tristates during persistance of visiin before the next frame then thats an easy sw solution
Reading resistor networks with ADCs has always been an issue, for me at least. It just fluctuates way too much and messes the button presses up.
For instance, I've got a 12-Bit ADC to read the resistor network of my car's multimedia buttons on the steering wheel, and just by turning the car on or off, I get wildly different ADC readings, throwing it off.
This gives me a idea for a project 🧠📈✨️
This is awesome! Do you share schematics and code in your Patreon? I'd love to be able to just order the board and play with the code
noooooo why is one led broken :(
very nice project, i really like the design
one out of TEN THOUSAND (not good at counting, it was a lot)
Do you plan on releasing the firmware open-source? I'd love to look at how you drive the display and abstract the charlieplexing logic in code!
Bitluni again :-) wonderful.
I didn't figure out until going back after finishing the video - only 1 column of LEDs is on at a time! I was confused at first.
I think you should add a micro-sd slot! Anyways, it's a really cool project
Adding a sdcard slot would be really cool, as he could save some animations on it. Of couse more pins are needed, but at this point just get an ESP32 or something. It has SDCard+USB support "built-in" and a lot of pins.
bro i'm literally making a homemade matrix just to play bad apple. i laughed so hard by the time you booted the megaplex lmao
Man, you are amazing. Subscribed
Always interesting stuff!
I think you can go to creditcard size it does make it more confortable to push Buttons 😅
Nice project, I think je can also connect a button on each line from the led matrix.
This is proof that Bad Apple!! can be played on anything in the world.
Welcome to the I-designed-a-charlie-plexed-led-handheld-club :)
Also, CR2032 batteries are lithium. Just not rechargeable.
Ooh, that's a cute little chip alright. Might be able to finally make my dream of a 1-wide DIP microcontroller dingle a reality...
If you ever sell these I’d be very interested in buying one, I’ve been looking for an entry point into the ch32v and I’d love to try to implement Tetris on it!
Please tell us more about the compression algorithm!
How do you program the CH32V003 without the SWIO pin?
Charlieplex.. interesting name, where does it come from??
in the old days it was just call multiplexing 🙂
a bit like the hyperloop is just a new name for BRUNEL’S ATMOSPHERIC PIPE 🙂
I think it was named after an engineer at one of the semi. manufacturers who wrote an appnote describing the technique
it's the same way that I bit bang i2c, I set the output low to pull the line down and set it to an input to let it go high. this give me a open collector type output on uC. so data is transferred just by changing port from output to input and not changing what's on the port, always a low.
Works for me.
It got named Charlieplexing after a Maxam guy who did it but I invented before him, published before him (on the PICist) and apparently others were before me too. It's one of those things that was going to occur to inventive people once tristating of microcontroller pins was available.
In a Charlieplexed LED matrix, each LED is connected between two microcontroller pins. By selectively setting these pins to high, low, or as high-impedance inputs, the LEDs can be individually controlled. The name "Charlieplexing" is derived from Charlie Allen, who developed this technique.
Amazing project! I assume that you are using a timer for driving the sound through the buzzer, how did you convert the music to PWM values?
How about this, but with a esp32 using all available pins to get the most pixels as possible. No buttons, no nothing, only wifi and this board becomes a wifi display. How many pixels would that be?
25*24. 600 pixels monochrome pixels. But I doubt you can drive that many leds in series from the micro. So, use some proper multiplexers (which can also stack channels, but with a delay in responsiveness).
Also, that board already has 1 dead led out of 240. Which is fixable (as opposed to lcd and oled panels), but you're probably going to have a pretty high failure rate.
This is a good solution for low res displays or public displays, though. I would make it bigger, go for 16 or 20 leds in series and try different aspect ratios (like 8*30). Some of the public digital displays and scrolling text displays might already use this technique.
Is there any way you can get multiple of these tiny little microcontrollers to work together to get a dual core system with more memory and storage?
Nice project. 👏
Maybe am wrong, but If you connect the diodes in the matrix in antiparallel, so 2 diodes for every positiion, and still use the H-L-Z levels, you get n² matrix. Be 1 and 2 the antiparalell diodes, pin A column, ping B rows.. Then they light when:
B/A Z L H
Z - - -
L - - 1
H - 2 -
Rest of columns does not light because are Z
Только n(n-1)\ n=16
Ofc cnlohr was involved! What a surprise (not)!!
i love your channel ❤
What is the distance between each LED?
Probably worth squeezing a 5 cent SPI flash on there for much more content
I think he had run out of pins for the micro, but with his bigger one now who knows, He's on live tonight I think (wednesday) as "Bitluni Live" at 20-00 UTCish, I'll be their.
I would love to know how the bad apple compression works!
Huffman encoding and lowering the frame rate, He's normally live tonight (Wednesday) at 20-00 UTC as "Bitluni Live", you can watch him do these projects their.
where does the sound come from?
edit: you explain it :)
Now if the LEDs where a lot smaller (and greater in quantity), you added RGB, and you gave it control electronics (and power electronics) to match...
You could make the world's fastest computer monitor.
so how about a 4K led wall. that might be better to do automated.
Why did you order so many!? Are you selling them somewhere?
jlcpcb has a minimum order size of 5 boards
@@0osk Those don't look like five silly
@@Slushee oh youre right im dumb, i didnt go back to look. i have no clue then. he doesn't have any links to buy them so maybe he got a deal where buying that many was the same price as just buying 5. I've gone on that site before and for some configurations they charge the same amount whether you buy 5 or 10 boards.
@@0osk Nah you're not dumb dw xD
Maybe he gives them out to friends to make games for them. It definitely has better potential than the 8by8 display console he made a while ago.
For those who don't want to use a "strange" MCU with a typical "Chinese" datasheet, there is a PI4IOE5V6416 I2C 16-bit expander for any other MCU. 50mA I/O current capability, R/W pin configuration (a Z-state), 24TQFN, up to two devices on a same bus
Yeah, and thank you for the great idea for my big matrix 8x5x30 indicator ) Merely lost a hope to find a good one manufactured
Please tell us about that compression
@ 13:43 That's the techniest Rick Roll I've ever seen
Looks cool:) What is the current limit on the microcontroller io pins?
The current of one LED is 20mA, but there are 16 of them in one column... I don’t think the pin can output more than 100mA. Or maybe the LEDs do not work simultaneously within the same column? Then how many LEDs can light at the time in one column?
Одномоментно может светиться только один светодиод.
Oh, no! There is one dead soldier there. Press F for paying respects... U__U
Brilliant 👍
nice job 👍
Can you link the software USB implementation?
scientist: *creates a helpful device*
me: can it run Doom?
I'm speachless it's so cool.... how much would pcbway charme for this? XD
that's really cool 😃
Is the code and schematics available?
Its great !
The battery case will still short to the USB
I have a flash light that does at least some of this for it's 4 charge indicator LEDs. It's a no-name chinese thing that uses 4 18650s.
do anyone noticed that one led is dead?
Why use this awkward uC tho?
There are sub $1/2 ST micros.
I can't wait to play Doom on a megaplex
I swear if i see one more bad apple on any type 2d matrix im gonna die
This might be a good place to use a shift register or port extender.
Why can't I join the discord server?
a tiny microrocessor with 4kb of memory: 23 thousand frames per second
gaming laptop with intel cpu: 40 frames per second
I think it's ch32x035 not ch32x35
You have not working led in new board 😅
Сигнальная система с использованием третьего состояния описана в патенте от 1979 года. При чём здесь какой-то Чарли??
Use piezo buzzer.
Very nice board but what is Bad Apple? Some music or some inside joke? From this short part I thought it's Rick Astley and you are rick rolling us 🙃
It is somehow strange to listen the educating luni, instead of a luni doing funny stuff. However, I like it.
Make a 55" version...
Can you display Never Going to Give You Up by Rick Astley ?🤣
Rewatch around the 13:33 timestamp.
What is this obsession with bad-apple?
I hate that one broken Led
So charlieplexing is basically like the "anti ghosting" technique used for keyboards but instead of the buttons it uses leds? :D
Неплохо. Умеешь мигать светодиодами.
now make it water proof :)
Wtf is bad apple
are flash lights per seconds dont frames hahaaha
🤍
Now that's more than just a bit looney...
Please watch other videos for Charli Plexing.
Lots of great videos available & personally this is the worst explanation I've ever watched!
Amazing!