Тёмный

From blink to DIY Mini Game - Charlieplexing explained 

bitluni
Подписаться 254 тыс.
Просмотров 123 тыс.
50% 1

Опубликовано:

 

28 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 148   
@bitluni
@bitluni 7 месяцев назад
48000000/128/16 = 23437.5
@gsegallis
@gsegallis 7 месяцев назад
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.
@SojournerDidimus
@SojournerDidimus 7 месяцев назад
​@@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.
@Dazza_Doo
@Dazza_Doo 7 месяцев назад
If (Amazing_Videos) next_video() ; Are these floats or doubles? They are written as Ints 😉 - jk
@swarupsahu6611
@swarupsahu6611 6 месяцев назад
Is there any way to stream analog videos over wifi using esp32
@SojournerDidimus
@SojournerDidimus 6 месяцев назад
@@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 RU-vid is doing the same; on low bandwidth devices it will select a higher compression for you.
@mikeselectricstuff
@mikeselectricstuff 7 месяцев назад
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
@grindfi 7 месяцев назад
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
@rich1051414
@rich1051414 7 месяцев назад
@@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.
@SojournerDidimus
@SojournerDidimus 7 месяцев назад
​@@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.
@DwAboutItManFr
@DwAboutItManFr 7 месяцев назад
FINALLY THE PERFORMANCE I NEED.
@_Mackan
@_Mackan 7 месяцев назад
Of all channels to play Bad Apple, this was not one of them. Though, it was funny
@ok-tr1nw
@ok-tr1nw 7 месяцев назад
You forgor afew words!
@ReplicateReality
@ReplicateReality 7 месяцев назад
Is that your professional opinion?
@alexanderscholz8855
@alexanderscholz8855 7 месяцев назад
Main Question is, will it run Doom?!? Awesome 😁😎‼️‼️‼️
@miege90
@miege90 7 месяцев назад
nice project, never heard of charlieplexing before
@noanticheat
@noanticheat 7 месяцев назад
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
@SharpsBox
@SharpsBox 4 месяца назад
Make it so!
@Splarkszter
@Splarkszter 7 месяцев назад
What is this obsession with bad-apple?
@KTPDAILY
@KTPDAILY 6 месяцев назад
you are wonderful for making us smarter so thank you
@supreme_xenon
@supreme_xenon 7 месяцев назад
Nice demo of the mysterious MV
@protiumx
@protiumx 7 месяцев назад
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
@SojournerDidimus
@SojournerDidimus 7 месяцев назад
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.
@laserquant
@laserquant 7 месяцев назад
Bitluni again :-) wonderful.
@Dzatoah
@Dzatoah 7 месяцев назад
Charlieplex.. interesting name, where does it come from??
@TheEmbeddedHobbyist
@TheEmbeddedHobbyist 7 месяцев назад
in the old days it was just call multiplexing 🙂 a bit like the hyperloop is just a new name for BRUNEL’S ATMOSPHERIC PIPE 🙂
@mikeselectricstuff
@mikeselectricstuff 7 месяцев назад
I think it was named after an engineer at one of the semi. manufacturers who wrote an appnote describing the technique
@TheEmbeddedHobbyist
@TheEmbeddedHobbyist 7 месяцев назад
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.
@fluiditynz
@fluiditynz 7 месяцев назад
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.
@andymouse
@andymouse 7 месяцев назад
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.
@jet_mouse9507
@jet_mouse9507 6 месяцев назад
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
@fusseldieb
@fusseldieb 28 дней назад
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.
@rustygear9370
@rustygear9370 7 месяцев назад
@ 13:43 That's the techniest Rick Roll I've ever seen
@Shack283
@Shack283 7 месяцев назад
scientist: *creates a helpful device* me: can it run Doom?
@austinmarhold6358
@austinmarhold6358 7 месяцев назад
Please tell us more about the compression algorithm!
@o0julek0o
@o0julek0o 7 месяцев назад
Ofc cnlohr was involved! What a surprise (not)!!
@marshpw
@marshpw 7 месяцев назад
where does the sound come from? edit: you explain it :)
@mikeselectricstuff
@mikeselectricstuff 7 месяцев назад
Probably worth squeezing a 5 cent SPI flash on there for much more content
@thesecretengineer
@thesecretengineer 7 месяцев назад
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.
@TSangTaoChanel
@TSangTaoChanel 7 месяцев назад
What is the distance between each LED?
@gsestream
@gsestream 6 месяцев назад
so how about a 4K led wall. that might be better to do automated.
@danielmelendrez1616
@danielmelendrez1616 7 месяцев назад
Oh, no! There is one dead soldier there. Press F for paying respects... U__U
@vishalkumar040393
@vishalkumar040393 7 месяцев назад
Nice project. 👏
@graealex
@graealex 7 месяцев назад
Can you link the software USB implementation?
@Sensoger
@Sensoger 7 месяцев назад
I can't wait to play Doom on a megaplex
@GNARGNARHEAD
@GNARGNARHEAD 7 месяцев назад
that's really cool 😃
@ziomalZparafii
@ziomalZparafii 7 месяцев назад
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 🙃
@alpha_pixel_
@alpha_pixel_ 17 дней назад
Use piezo buzzer.
@backdemoletor4654
@backdemoletor4654 6 месяцев назад
Why can't I join the discord server?
@prof955
@prof955 7 месяцев назад
You have not working led in new board 😅
@frown
@frown 7 месяцев назад
Make a 55" version...
@gewinnercomic4999
@gewinnercomic4999 4 месяца назад
I hate that one broken Led
@piconano
@piconano 7 месяцев назад
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.
@fluiditynz
@fluiditynz 7 месяцев назад
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...
@seanabsher5577
@seanabsher5577 7 месяцев назад
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?
@Biru_to
@Biru_to 7 месяцев назад
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.
@redtex
@redtex 7 месяцев назад
"Трёхзначная сигнальная система" описана в патенте AEG-Telefunken в 1979г. Шах и мат.
@stevekean512
@stevekean512 7 месяцев назад
​@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
@Khatoblepas
@Khatoblepas 7 месяцев назад
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.
@fusseldieb
@fusseldieb 28 дней назад
That would be a cool thing to see!
@gn0st1c
@gn0st1c 7 месяцев назад
@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.
@certified-forklifter
@certified-forklifter 7 месяцев назад
noooooo why is one led broken :( very nice project, i really like the design
@Davedarko
@Davedarko 7 месяцев назад
one out of TEN THOUSAND (not good at counting, it was a lot)
@TheMrMinecrafttnt
@TheMrMinecrafttnt 7 месяцев назад
I think you can go to creditcard size it does make it more confortable to push Buttons 😅
@Jimmymcjimthejim
@Jimmymcjimthejim 7 месяцев назад
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.
@matthewvenn
@matthewvenn 7 месяцев назад
Great explanation of charlie-plexing!
@Roxy53280
@Roxy53280 7 месяцев назад
This is proof that Bad Apple!! can be played on anything in the world.
@DrRickDaglessMD
@DrRickDaglessMD 7 месяцев назад
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!
@thefatmoop
@thefatmoop 7 месяцев назад
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
@ETORERIGO
@ETORERIGO 7 месяцев назад
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
@anthonywilliams7052
@anthonywilliams7052 7 месяцев назад
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.
@Jimmymcjimthejim
@Jimmymcjimthejim 7 месяцев назад
Also, CR2032 batteries are lithium. Just not rechargeable.
@ilSySTeMli
@ilSySTeMli 7 месяцев назад
Love the Little Quirky Projects, Hope to see You soon on the Streams , cheers .
@MadScientist267
@MadScientist267 7 месяцев назад
Certainly interesting...
@horryportier7539
@horryportier7539 7 месяцев назад
I swear if i see one more bad apple on any type 2d matrix im gonna die
@MichaelOfRohan
@MichaelOfRohan 6 месяцев назад
Wtf is bad apple
@Davedarko
@Davedarko 7 месяцев назад
Welcome to the I-designed-a-charlie-plexed-led-handheld-club :)
@thexht7927
@thexht7927 4 месяца назад
How do you program the CH32V003 without the SWIO pin?
@PsychogenicTechnologies
@PsychogenicTechnologies 7 месяцев назад
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!
@AmaroqStarwind
@AmaroqStarwind 7 месяцев назад
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.
@2000jago
@2000jago 7 месяцев назад
Now that's more than just a bit looney...
@captheobbyist6434
@captheobbyist6434 7 месяцев назад
a tiny microrocessor with 4kb of memory: 23 thousand frames per second gaming laptop with intel cpu: 40 frames per second
@altamiradorable
@altamiradorable 7 месяцев назад
Can you display Never Going to Give You Up by Rick Astley ?🤣
@eDoc2020
@eDoc2020 7 месяцев назад
Rewatch around the 13:33 timestamp.
@techh3x4
@techh3x4 Месяц назад
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
@tim_allen_jr
@tim_allen_jr 7 месяцев назад
This gives me a idea for a project 🧠📈✨️
@redtex
@redtex 7 месяцев назад
Сигнальная система с использованием третьего состояния описана в патенте от 1979 года. При чём здесь какой-то Чарли??
@SharpsBox
@SharpsBox 4 месяца назад
Include a temperature or light sensor and you have an analog computer?
@scotdotwtf
@scotdotwtf 7 месяцев назад
i love your channel ❤
@garrukapex6693
@garrukapex6693 6 месяцев назад
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!
@floppydisk4500
@floppydisk4500 6 месяцев назад
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?
@jordantekelenburg
@jordantekelenburg 6 месяцев назад
Is the code and schematics available?
@mk0xf1e6e6
@mk0xf1e6e6 6 месяцев назад
I think it's ch32x035 not ch32x35
@kplatt8912
@kplatt8912 6 месяцев назад
The battery case will still short to the USB
@Slushee
@Slushee 7 месяцев назад
Why did you order so many!? Are you selling them somewhere?
@0osk
@0osk 7 месяцев назад
jlcpcb has a minimum order size of 5 boards
@Slushee
@Slushee 7 месяцев назад
@@0osk Those don't look like five silly
@0osk
@0osk 7 месяцев назад
@@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.
@Slushee
@Slushee 7 месяцев назад
@@0osk Nah you're not dumb dw xD
@PaulSpades
@PaulSpades 7 месяцев назад
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.
@pietrolemes7759
@pietrolemes7759 7 месяцев назад
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?
@PaulSpades
@PaulSpades 7 месяцев назад
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.
@thienvungo1829
@thienvungo1829 6 месяцев назад
do anyone noticed that one led is dead?
@YuHayate
@YuHayate 7 месяцев назад
now make it water proof :)
@fluiditynz
@fluiditynz 7 месяцев назад
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
@fusseldieb
@fusseldieb 28 дней назад
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.
@Kyoz
@Kyoz 7 месяцев назад
🤍
@sandswalker
@sandswalker 7 месяцев назад
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?
@Marc_Wolfe
@Marc_Wolfe 7 месяцев назад
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.
@peter.stimpel
@peter.stimpel 7 месяцев назад
It is somehow strange to listen the educating luni, instead of a luni doing funny stuff. However, I like it.
@sc0or
@sc0or 7 месяцев назад
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
@DanelonNicolas
@DanelonNicolas 7 месяцев назад
I'm speachless it's so cool.... how much would pcbway charme for this? XD
@redtex
@redtex 7 месяцев назад
Неплохо. Умеешь мигать светодиодами.
@MaDmanEXE
@MaDmanEXE 7 месяцев назад
Please tell us about that compression
@modarsoos
@modarsoos 7 месяцев назад
nice job 👍
@artursmihelsons415
@artursmihelsons415 7 месяцев назад
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.. 😂
@Arek_R.
@Arek_R. 7 месяцев назад
Why use this awkward uC tho? There are sub $1/2 ST micros.
@zoey101dogwablog
@zoey101dogwablog 7 месяцев назад
Another fantastic project in fantastic depth and detail! Pure gold!!
@rdyer8764
@rdyer8764 7 месяцев назад
Always interesting stuff!
@EdwinNoorlander
@EdwinNoorlander 7 месяцев назад
Nice project, I think je can also connect a button on each line from the led matrix.
@codebeat4192
@codebeat4192 7 месяцев назад
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.
@yoctoflop
@yoctoflop 7 месяцев назад
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.
@wolpumba4099
@wolpumba4099 7 месяцев назад
Amazing!
@ranganatennakoon
@ranganatennakoon 7 месяцев назад
Its great !
@moth.monster
@moth.monster 7 месяцев назад
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...
@landspide
@landspide 7 месяцев назад
Brilliant 👍
@MaxCarponera
@MaxCarponera 7 месяцев назад
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
@redtex
@redtex 7 месяцев назад
Только n(n-1)\ n=16
@sajalsanthosh
@sajalsanthosh 7 месяцев назад
I would love to know how the bad apple compression works!
@thesecretengineer
@thesecretengineer 7 месяцев назад
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.
@nuclear_tractor5957
@nuclear_tractor5957 7 месяцев назад
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?
@redtex
@redtex 7 месяцев назад
Одномоментно может светиться только один светодиод.
@user-wi5vi7dd3z
@user-wi5vi7dd3z 7 месяцев назад
So charlieplexing is basically like the "anti ghosting" technique used for keyboards but instead of the buttons it uses leds? :D
@multiplysixbynine
@multiplysixbynine 7 месяцев назад
This might be a good place to use a shift register or port extender.
@khanra17
@khanra17 7 месяцев назад
Please watch other videos for Charli Plexing. Lots of great videos available & personally this is the worst explanation I've ever watched!
@MrMegaPussyPlayer
@MrMegaPussyPlayer 6 месяцев назад
0:51 And that is a bad LED (3rd row from the bottom, 7th from the right)
Далее
Open source lightweight interpreter made in a day
9:08
I made a VGA card that blew my mind
15:44
Просмотров 428 тыс.
КОТЯТА В ОПАСНОСТИ?#cat
00:36
Просмотров 921 тыс.
Watermelon magic box! #shorts by Leisi Crazy
00:20
Просмотров 14 млн
Developing a high fidelity LED Magnet Matrix
15:26
Просмотров 122 тыс.
I made a custom ASIC: World's first of its kind
16:38
Просмотров 192 тыс.
I tried using AI. It scared me.
15:49
Просмотров 7 млн
What is the Smallest Possible .EXE?
17:04
Просмотров 397 тыс.
The unexpected probability result confusing everyone
17:24
Cheap Risc-V Supercluster for $2 (DIY, CH32V003)
9:02
Просмотров 250 тыс.
DIY sonar scanner (practical experiments)
14:30
Просмотров 1 млн
КОТЯТА В ОПАСНОСТИ?#cat
00:36
Просмотров 921 тыс.