Loving my esp32wroom-da.This is a really nice function. I am amazed at how easy it is to use ap and wifi modes, and serve http.. I do these things for fun and LLMs are making it all feel like a new super power! (pause)- Yep. We can just ask for functions we want like this! lol.. Thanks for sharing. esp32's need more content :)
@jeanyvesterrien95584 күн бұрын
Hello, I don't understand because I download your sketch, but the display remains white. I checked the UserSetup.h. The pins correspond to my ILI9341. I went to see the diagram which is on the original site, it corresponds well. The original sketch has a problem because I only see the wifi connection and the screen becomes white. Do you have any idea of the problem? thank you
@patriciawawa32524 күн бұрын
Bonjour J'ai acheté la x6 pour mon fils il a fonctionné une fois mis en charge puis ne s'allume plus. Pourriez-vous m'aider à trouver une solution ? Merci
@dash9computing24 күн бұрын
I am sorry to hear the X6 stopped charging. Is it too late to reach out to the seller? Could be a bad power switch, power cord, charging port.... You could try a different charging cable and block (doubt that will be the issue but it is easy to try). Maybe try a wall outlet or computer USB charging port as well. I am afraid it is a bad power module/converter in the X6 itself. Best of luck! Ben
@baileysworldoflegos1702Ай бұрын
If you have a iPhone you can also make a Shortcut in the Shortcuts app for when an email is received. So you can do something on your phone with the information from the email.
@dash9computingАй бұрын
Great idea! That opens up some great possibilities!
@Eddie-e4tАй бұрын
Well done 👍
@aviorlos2448Ай бұрын
is it possible to show how to put emulator on cyd i have tried and tried i keep getting errors
@dash9computingАй бұрын
HI, I used ArduinoIDE , selected board ESP32 Dev Module and speed 115200. be sure to also select what port your esp32 is connected to. If this doesn't;t help please let me know what error message you are getting.
@aviorlos2448Ай бұрын
@@dash9computing i keep getting this error D:\yellow display\Galagino\galagino\galagino.ino: In function 'void setup()': D:\yellow display\Galagino\galagino\galagino.ino:963:11: error: 'BTN_LEFT_PIN' was not declared in this scope; did you mean 'BTN_START_PIN'? 963 | pinMode(BTN_LEFT_PIN, INPUT_PULLUP); | ^~~~~~~~~~~~ | BTN_START_PIN D:\yellow display\Galagino\galagino\galagino.ino:964:11: error: 'BTN_RIGHT_PIN' was not declared in this scope; did you mean 'BTN_START_PIN'? 964 | pinMode(BTN_RIGHT_PIN, INPUT_PULLUP); | ^~~~~~~~~~~~~ | BTN_START_PIN D:\yellow display\Galagino\galagino\galagino.ino:965:11: error: 'BTN_DOWN_PIN' was not declared in this scope 965 | pinMode(BTN_DOWN_PIN, INPUT_PULLUP); | ^~~~~~~~~~~~ D:\yellow display\Galagino\galagino\galagino.ino:966:11: error: 'BTN_UP_PIN' was not declared in this scope 966 | pinMode(BTN_UP_PIN, INPUT_PULLUP); | ^~~~~~~~~~ D:\yellow display\Galagino\galagino\galagino.ino:967:11: error: 'BTN_FIRE_PIN' was not declared in this scope; did you mean 'BTN_START_PIN'? 967 | pinMode(BTN_FIRE_PIN, INPUT_PULLUP); | ^~~~~~~~~~~~ | BTN_START_PIN D:\yellow display\Galagino\galagino\galagino.ino: In function 'unsigned char buttons_get()': D:\yellow display\Galagino\galagino\galagino.ino:1081:18: error: 'BTN_LEFT_PIN' was not declared in this scope; did you mean 'BTN_START_PIN'? 1081 | (digitalRead(BTN_LEFT_PIN)?0:BUTTON_LEFT) | | ^~~~~~~~~~~~ | BTN_START_PIN D:\yellow display\Galagino\galagino\galagino.ino:1082:18: error: 'BTN_RIGHT_PIN' was not declared in this scope; did you mean 'BTN_START_PIN'? 1082 | (digitalRead(BTN_RIGHT_PIN)?0:BUTTON_RIGHT) | | ^~~~~~~~~~~~~ | BTN_START_PIN D:\yellow display\Galagino\galagino\galagino.ino:1083:18: error: 'BTN_UP_PIN' was not declared in this scope 1083 | (digitalRead(BTN_UP_PIN)?0:BUTTON_UP) | | ^~~~~~~~~~ D:\yellow display\Galagino\galagino\galagino.ino:1084:18: error: 'BTN_DOWN_PIN' was not declared in this scope 1084 | (digitalRead(BTN_DOWN_PIN)?0:BUTTON_DOWN) | | ^~~~~~~~~~~~ D:\yellow display\Galagino\galagino\galagino.ino:1085:18: error: 'BTN_FIRE_PIN' was not declared in this scope; did you mean 'BTN_START_PIN'? 1085 | (digitalRead(BTN_FIRE_PIN)?0:BUTTON_FIRE); | ^~~~~~~~~~~~ | BTN_START_PIN exit status 1 Compilation error: 'BTN_LEFT_PIN' was not declared in this scope; did you mean 'BTN_START_PIN'?
@aviorlos2448Ай бұрын
@@dash9computing i done all that the problem is uploading keep getting button error tell without connecting nunchuck can I still upload the Galaginocode
@dash9computingАй бұрын
@@aviorlos2448 Sorry to hear you are having an issue. Can you paste the exact error? You should able to upload the code without any controller connected.
@aviorlos2448Ай бұрын
@@dash9computing i get this error D:\yellow display\Galagino\galagino\galagino.ino: In function 'void setup()': D:\yellow display\Galagino\galagino\galagino.ino:963:11: error: 'BTN_LEFT_PIN' was not declared in this scope; did you mean 'BTN_START_PIN'? 963 | pinMode(BTN_LEFT_PIN, INPUT_PULLUP); | ^~~~~~~~~~~~ | BTN_START_PIN D:\yellow display\Galagino\galagino\galagino.ino:964:11: error: 'BTN_RIGHT_PIN' was not declared in this scope; did you mean 'BTN_START_PIN'? 964 | pinMode(BTN_RIGHT_PIN, INPUT_PULLUP); | ^~~~~~~~~~~~~ | BTN_START_PIN D:\yellow display\Galagino\galagino\galagino.ino:965:11: error: 'BTN_DOWN_PIN' was not declared in this scope 965 | pinMode(BTN_DOWN_PIN, INPUT_PULLUP); | ^~~~~~~~~~~~ D:\yellow display\Galagino\galagino\galagino.ino:966:11: error: 'BTN_UP_PIN' was not declared in this scope 966 | pinMode(BTN_UP_PIN, INPUT_PULLUP); | ^~~~~~~~~~ D:\yellow display\Galagino\galagino\galagino.ino:967:11: error: 'BTN_FIRE_PIN' was not declared in this scope; did you mean 'BTN_START_PIN'? 967 | pinMode(BTN_FIRE_PIN, INPUT_PULLUP); | ^~~~~~~~~~~~ | BTN_START_PIN D:\yellow display\Galagino\galagino\galagino.ino: In function 'unsigned char buttons_get()': D:\yellow display\Galagino\galagino\galagino.ino:1081:18: error: 'BTN_LEFT_PIN' was not declared in this scope; did you mean 'BTN_START_PIN'? 1081 | (digitalRead(BTN_LEFT_PIN)?0:BUTTON_LEFT) | | ^~~~~~~~~~~~ | BTN_START_PIN D:\yellow display\Galagino\galagino\galagino.ino:1082:18: error: 'BTN_RIGHT_PIN' was not declared in this scope; did you mean 'BTN_START_PIN'? 1082 | (digitalRead(BTN_RIGHT_PIN)?0:BUTTON_RIGHT) | | ^~~~~~~~~~~~~ | BTN_START_PIN D:\yellow display\Galagino\galagino\galagino.ino:1083:18: error: 'BTN_UP_PIN' was not declared in this scope 1083 | (digitalRead(BTN_UP_PIN)?0:BUTTON_UP) | | ^~~~~~~~~~ D:\yellow display\Galagino\galagino\galagino.ino:1084:18: error: 'BTN_DOWN_PIN' was not declared in this scope 1084 | (digitalRead(BTN_DOWN_PIN)?0:BUTTON_DOWN) | | ^~~~~~~~~~~~ D:\yellow display\Galagino\galagino\galagino.ino:1085:18: error: 'BTN_FIRE_PIN' was not declared in this scope; did you mean 'BTN_START_PIN'? 1085 | (digitalRead(BTN_FIRE_PIN)?0:BUTTON_FIRE); | ^~~~~~~~~~~~ | BTN_START_PIN exit status 1 Compilation error: 'BTN_LEFT_PIN' was not declared in this scope; did you mean 'BTN_START_PIN'?
@rockinhocrespo3372Ай бұрын
thank you !!
@edwardfletcher77902 ай бұрын
For anyone mounting anything to the acrylic case. Make sure you use flat washers against the acrylic ! Anything that tightens with a point will cause cracks !!
@dash9computingАй бұрын
True!
@markcarter15702 ай бұрын
Did you ever figure out the controls? I’m stumped! I’ve tried reconfiguring the axis in several different locations to no avail
@dash9computing2 ай бұрын
I am sorry to say I didn't! I tried a couple things and then I was unable to connect to the watch. LilyGo said the port died and refunded my money.
@markcarter15702 ай бұрын
@@dash9computing thanks for the reply its driving me bonkers, Ive remapped it several different ways within the code with no change at all
@hakzolot2 ай бұрын
Neat kinda what I was looking for , lol more steps than I thought it would be. Thank you for sharing.
@lewispearson3 ай бұрын
@4:00 "The USB-C cord, you have to change the polarity in order to connect" ..... siiiigggghhh, 1 hour of troubleshooting and all I needed to do was flip the USB C cord around!
@dash9computing3 ай бұрын
I have been there! Took me a while to figure it out too! It is a cool idea but confusing.
@TheHandlebarGamer3 ай бұрын
There are 3d printable shells with openings. Tried one?
@dash9computing3 ай бұрын
I didn't;t know they made these! Sweet! I will check them out. Thanks
@Flare11074 ай бұрын
This is perfect, just curious if you have any estimates of file speed or file size maximums? I know a lot of other esp32 projects with wifi or asyncwebserver use have low speeds and 500mb transfer limits. With WIFI through router off, does this still perform as an access point? Im searching for a real simple solution for a mobile AP Storage system. A web GUI seems the most user friendly. But i am needing something as seamless as a flash drive transfer.
@dash9computing3 ай бұрын
I am sorry, I never did any speed testing. It isn't "fast" as it is 2.4Ghz wifi. There are controllers out or coming out soon that are 5G! I didn't upload big files. I was just using the onboard memory so it was fast but on the smaller side 8MB. You could use a USB but that will slow transfer speeds down a hair. Wish I could help more. If you give it a go please let me know!
@vedanshkumar57504 ай бұрын
Hi can you share the list or the zip of games that you found if possible? Im trying to find all the games, i used to play them when i was a kid, but i dont remember the names anymore. Ill appreciate the help ☺️
601. Total_recall.nes 602. Totally_rad.nes 603. Touch_downd_fever.nes 604. Toxic_crusader.nes 605.Adventures of Tom Sawyer (U).nes 606. Track_&_field2.nes 607. Trog.nes 608. Trojan.nes 609.After Burner 2 (J).nes 610. Twin_cobra.nes 611. Ultima_exodus.nes 612. Ultima_quest_for_the_avatar.nes 613. Ultima_war_of_destiny.nes 614. Ultimate_air_combat.nes 615. Ultimate_basketball.nes 616. Ultimate_stuntman.nes 617.After Burner (U).nes 618.Aigiina no Yogen - From The Legend of Balubalouk (J).nes 619. Uninvited.nes 620. Untouchables.nes 621. Urban_champion.nes 622. Vegas_dreams.nes 623.Air Fortress (J).nes 624. Vice_project_doom.nes 625. Vindicators.nes 626. Volleyball.nes 627. Wacky_races.nes 628. Wall_street_kid.nes 629. Wario's_world.nes 630.Air Fortress (U).nes 631. Wayne's_world.nes 632. Werewolf.nes 633. Wheel_of_fortune.nes 634. Wheel_of_fortune_family_edition.nes 635. Wheel_of_fortune_starring_vanna_white.nes 636. where's_waldo.nes 637. who_framed_roger_rabbit.nes 638. Whomp_em.nes 639. Wild_gunman.nes 640. Willow.nes 641. Win_lose_or_draw.nes 642. Winter_games.nes 643. Wizardry.nes 644. Wizardry2.nes 645. Wizards_n_warriors.nes 646. Wizards_n_warriors2.nes 647. wizards_n_warriors3.nes 648. Wolverine.nes 649. World_championship_wrestling.nes 650. World_cup_soccer.nes 651. World_games.nes 652. Wrath_of_the_black_manta.nes 653. Wrecking_crew.nes 654. Wrestlemania.nes 655. Wrestlemania_challenge.nes 656. Wrestlemania_steel_cage_challenge.nes 657. Wurm.nes 658. Xenophobe.nes 659. Xevious.nes 660. Xexyz.nes 661. Yo_noid.nes 662. Yoshi.nes 663. Yoshi's_cookie.nes 664. Young_indiana_jones.nes 665. Zanac.nes 666. zen_intergalactic_ninja.nes 667. zoda's_revenge.nes 668. Zombie_nation.nes 669.Baseball Fighter (J).nes 670.Baseball (J).nes 671.Baseball (UE).nes 672.Akagawa Jirou no Yuurei Ressha (J).nes 673.Akumajou Densetsu (J).nes 674.Akumajou Dracula (J).nes 675.Alfred Chicken (U).nes 676.Alpha Mission (U).nes 677.Amagon (U).nes 678.Arabian Dream Sherazaado (J).nes 679.Arctic (J).nes 680.Argos no Senshi (J).nes 681.Argus (J).nes 682.Arkanoid 2 (J).nes 683.Arkanoid (J).nes 684.Arkanoid (U).nes 685.Arkista's Ring (U).nes 686.Artelius (J).nes 687.ASO - Armored Scrum Object (J).nes 688.Asterix (E).nes 689.Astro Robo Sasa (J).nes 690.Athena (J).nes 691.Athena (U).nes 692.Attack Animal Gakuen (J).nes 693.Aussie Rules Footy (E).nes 694.AV Pachi Slot (J).nes 695.Babel no Tou (J).nes 696.Baby Boomer (U).nes 697.Bad News Baseball (U).nes 698.Bakushou Jinsei Gekijoh 3 (J).nes 699.Bakushou! Star Monomane Shitennou (J).nes 700.Bakushou!! Jinsei Gekijoh 2 (J).nes 701.Balloon Fight (E).nes 702.Balloon Fight (JU).nes 703.Baltron (J).nes 704.Barker Bill's Trick Shooting (U).nes 705.Base Wars (U).nes 706.Baseball (UE).nes 707.Baseball (J).nes 708.Baseball Fighter (J).nes 709.Batman (E).nes 710.Batman (J).nes 711.Batman (Prototype) (U).nes 712.Batman (U).nes 713.Batman - Return of the Joker (U).nes 714.Batsu & Terii (J).nes 715.Battle City (J).nes 716.Battle Fleet (J).nes 717.Battle of Olympus, The (E).nes 718.Battle of Olympus, The (U).nes 719.Battle Storm (J).nes 720.Battleship (U).nes 721.Best of the Best Championship Karate (U).nes 722.Best Play Pro Yakyuu 2 (J).nes 723.Best Play Pro Yakyuu '90 (J).nes 724.Bible Adventures (V1.2) (U).nes 725.Bible Adventures (V1.3) (U).nes 726.Big Bird's Hide and Speak (U).nes 727.Big Nose the Caveman (U).nes 728.Bikkuriman World - Gekitou Sei Senshi (J).nes 729.Bill & Ted's Excellent Video Game Adventure (U).nes 730.Binary Land (J).nes 731.Bio Miracle Bokutte Upa (J).nes 732.Bionic Commando (E).nes 733.Bionic Commando (U).nes 734.Black Bass 2, The (J).nes 735.Black Bass USA, The (U).nes 736.Blades of Steel (E).nes 737.Blades of Steel (U).nes 738.Blaster Master (E).nes 739.Blaster Master (Prototype) (U).nes 740.Blaster Master (U).nes 741.Blues Brothers, The (U).nes 742.Bokosuka Wars (J).nes 743.Bomber King (J).nes 744.Bomberman 2 (J).nes 745.Bomberman 2 (U).nes 746.Bonk's Adventure (U).nes 747.Boulder Dash (E).nes 748.Boulder Dash (J).nes 749.Boulder Dash (U).nes 750.Breakthru (U).nes 751.Bubble Bath Babes (UE).nes 752.Bubble Bobble (E).nes 753.Bubble Bobble (U).nes 754.Bubble Bobble Part 2 (U).nes 755.Buggy Popper (J).nes 756.Bugs Bunny Crazy Castle, The (U).nes 757.Bugs Bunny Fun House (Prototype) (U).nes 758.Bump'n'Jump (U).nes 759.Cadillac (J).nes 760.Caesar's Palace (U).nes 761.Casino Derby (J).nes 762.Casino Kid (U).nes 763.Castle of Deceit (U).nes 764.Castle of Dragon (U).nes 765.Castlevania 2 - Simon's Quest (E).nes 766.Castlevania 2 - Simon's Quest (U).nes 767.Castlevania 3 - Dracula's Curse (E).nes 768.Castlevania 3 - Dracula's Curse (U).nes 769.Castlevania (E).nes 770.Castlevania (PRG 1) (U).nes 771.Castlevania (U).nes 772.Chack 'n Pop (J).nes 773.Challenge of the Dragon (U).nes 774.Championship Bowling (U).nes 775.Championship Bowling (J).nes 776.Championship Pool (U).nes 777.Chaos World (J).nes 778.Chiisana Obake - Acchi Socchi Kocchi (J).nes 779.Chip 'n Dale Rescue Rangers (U).nes 780.Chip 'n Dale Rescue Rangers (E).nes 781.Chip to Dale no Dai Sakusen 2 (J).nes 782.Chip to Dale no Dai Sakusen (J).nes 783.Chou Hen (Joy Van) (J).nes 784.Chou Jikuu Yousai - Macross (J).nes 785.Chou Wakusei Senki - Metafight (J).nes 786.Chu Da D (C).nes 787.Chubby Cherub (U).nes 788.Chuka Taisen (J).nes 789.Chuugoku Senseijutsu (J).nes 790.Circus Charlie (J).nes 791.City Connection (U).nes 792.Classic Concentration (U).nes 793.Clu Clu Land (JU).nes 794.Color A Dinosaur (U).nes 795.Commando (U).nes 796.Conan (U).nes 797.Contra (U).nes 798.Corvette ZR-1 Challenge (E).nes 799.Cosmic Wars (J).nes 800.Cosmo Genesis (J).nes
@cristiangaspar3274 ай бұрын
Is there a way to get the code I can’t seem to get it to upload.
@dash9computing4 ай бұрын
You grabbed the code from here? github.com/harbaum/galagino Are you using ArduinoIDE? If yes, then you need to make sure you have the right settings to connect to the esp32. Check your baud, port and board type.
@pekpekstretch4 ай бұрын
I see others building this and can’t find them for sale anywhere :(
@dash9computing4 ай бұрын
Sorry to hear that! I picked up the NES cases on Amazon. Got he screen and esp32 on Aliexpress.
@EGGSSS-z7o4 ай бұрын
Is there a way to fix Super Mario Bros. crashing over and over again? I try to play Super Mario Bros. but then the game crashes at like World 4.
@dash9computing4 ай бұрын
I am sorry to hear that it is crashing. I would try a different ROM. Different sites might have different revisions. I haven't tried any from the following article but you could try: www.reddit.com/r/nintendo/comments/ghh3sz/i_catalogued_all_the_releases_and_alternate/ Best of luck!
@BrianM-440414 ай бұрын
I need help finding replacement bulbs for my older phototron, any ideas?
@dash9computing4 ай бұрын
Hi, I am pretty sure I used U-Bent Fluorescent Lamp, 40 W, Fluorescent Lamp, Bi-Pin G13 Medium Lamp Base, T12 Shape You can get them at most hardware stores like HomeDepot, etc. Looks like they make LED ones too now. They would have a different light spectrum but probably better than fluorescent: www.amazon.com/Luxrite-Equivalent-Fluorescent-Replacement-Certified/dp/B0B1GGQ53R/ref=sr_1_5?crid=9Y68Z4DXTYKO&dib=eyJ2IjoiMSJ9.dOFWcHVT--01Q6wA7wRKCymO-RNAhPaDMapMTqvCV6d_WTPlF8Z-XA-C9npiNiQNqGpKjo3y_OSY31Q4HdpjzxuPnZBSYW3kbRpUYarT4izUSrsgoYGy72jjBOFONja6T3A2q1ETBrf6ZR62cNl8i_xHZxYIqJiPHvj6XJoPZxqwFWFoecomtzJvWVip9z9gCM8ChH4cE1IAy1daqiewCa07hQxwrxqwuCdCGbTzMquCBN-jkhtskoYOgxGiBdS5L6uWfYz_HcTrX7IkOjmK-uHi0Ntcjyr7VhNrUEc_JVs.aj1IbwhXZJY0FEM5MBfcDF8KPDSsaG9WInkkN5RJj9k&dib_tag=se&keywords=fluorescent%2Blights%2Bu%2Bshape&qid=1725891374&sprefix=flourescent%2Blights%2Bu%2Bshap%2Caps%2C119&sr=8-5&th=1
@debbiswas20624 ай бұрын
Thanks, Sir...
@summerfun61145 ай бұрын
good job. I used TTGO T-Display got some thing in serial monitor, nothing on its screen, what can be?
@moosesnWoop5 ай бұрын
nice dude! Loving the potential with the CYD
@pierricciguineau5 ай бұрын
verry cool
@mortenlund63515 ай бұрын
i tryed ALL, no luck for me compiling to cyd,, used well over 50 hours, now its time to give up 🕹
@dash9computing5 ай бұрын
I am sorry to hear you are running into issues. I did build a very similar game with the same code on a CYD here kzbin.info/www/bejne/nWnOmnlnlsqtr6M . Hope that helps. Best of luck! Ben
@videshx8186 ай бұрын
I tried to upload example to check using arduino IDE & also thonny but non of the sketches are working on my T-PicoC3 screen. Could this be due to my OS windows 7
@videshx8186 ай бұрын
Will this not work on Arduino IDE if the laptop OS is windows 7 ? I read this somewhere !
@dislike_id48146 ай бұрын
what libraries should we download
@raulm587406 ай бұрын
Yo me lo hice portátil y con sonido
@dash9computing6 ай бұрын
You made it portable and with sound....awesome!!! I found the video on your youtube page. Very nice! Lo hiciste portátil y con sonido... asombroso¡¡¡ Encontré el vídeo en tu página de youtube. ¡Muy lindo! kzbin.info/www/bejne/jmrCmomefJWfbKc
@AbdulRahman-sv6xd6 ай бұрын
Can I use without display ??
@dash9computing6 ай бұрын
Absolutely! Just comment out anything that references the TFT. That or you could probably just leave it and if it compiles and loads, it should work you may have to install a library. I can’t remember.
@antonreuter-f7xКүн бұрын
@@dash9computingHow could you read the data then?
@videshx8186 ай бұрын
Is there a step by step tutorial from scratch for using T-PicoC3
@dash9computing6 ай бұрын
Hi, Did you get a chance to look at my Github page on the T-PicoC3? github.com/bdash9/T-picoC3-ESP32-RP2040 There is also some great info (where I got most of mine from) on Instructables.com: www.instructables.com/Parallelism-and-Much-More-on-the-T-Pico-C3/ Hope this helps, Ben
@videshx8186 ай бұрын
@@dash9computing Thanx for the github link. I did RP2040 Arduino procedure. & loaded & tried few example sketches & none where running & the screen shows blank. I will try with some other examples again.
@dash9computing6 ай бұрын
@@videshx818 just make sure the correct color light is on the board when you plug in the power adapter. Remember it’s a polarized adapter so if you plug it in with one side facing up, you’ll access the RP 2040 and if you flip the connector over plug it in with the other side facing up you will access the ESP32.
@videshx8186 ай бұрын
@@dash9computing I did those example testing with blue light on
@dash9computing6 ай бұрын
Wait… I recall I had to put a file on the RP 2040 with the python code in order to get the screen to work. I’m not in front of a computer right now, but it should be on my GitHub repository.
@MrGolf25286 ай бұрын
How to connect the game joystick
@dash9computing6 ай бұрын
Check this out: github.com/harbaum/galagino/blob/main/hardware/NUNCHUCK.MD They have a link to an Adafruit adapter for the Nunchuck with will be easier than what I did. I am using an off brand nunchuck and had to do trial an error with the wiring. Let me know how it goes! Thanks, Ben
@Deity_3608 ай бұрын
Hey so i was wondering if there was a specific file to put the roms in?
@dash9computing6 ай бұрын
Hi, Yes, you need to create a directory called "nes" on the pybadge. I think about a minute or two into the video I show where and how. Thanks, Ben
@danialonso48608 ай бұрын
I think the rom connection you chose is excellent. Could you share the package with all of them?
@dash9computing8 ай бұрын
HI, I don't know about the legality of posting the ROM's. They should all be on the site I posted a link to above. There are a bunch of other sites out there (just google them up :) Thanks!
@chrisrschroeder8 ай бұрын
Thank you for putting this together along with the Github repositories. I was just trying it out and it looks like you made a LinkedList.h which is not in your github. around line 208 you have #include <LinkedList.h. Can you add that to your repository?
@dash9computing8 ай бұрын
Hi Chris, I just uploaded LinkedList.h to the repo. Please let me know how it goes. Thanks, ben
@HyperDaaiki8 ай бұрын
you are a genius
@dash9computing8 ай бұрын
HAHAHA! If by ham-fisting hardware and breaking things...then yes, I agree :)
@cukymonster338 ай бұрын
You need a better mic, Hard to hear, your far away
@dash9computing8 ай бұрын
Yes and sorry! You are 100% right. I have made strides to improve the sound in videos since then.
@darshananand7778 ай бұрын
Can i achieve this with a rasberry pi zero with a screen r any other esp or uno ?
@dash9computing8 ай бұрын
Absolutely! The code will need to be tweaked but the micro controllers you mentioned can handle it. Please give it a go and let me know!
@darshananand7778 ай бұрын
what screen is it ? and thank you its a great iot device
@dash9computing8 ай бұрын
Hi, It is a Adafruit ESP32-S2 Feather TFT. It has a built in TFT ST7789.
@secondline56418 ай бұрын
Couple quick questions i was wanting to pair lorawifi with a file sharing unit. Like this esp32. Will the esp32 function as a file server on its own, or does it need a support board such as arduino or rasbery pi zero as example. What i had in mind was transmit large files over lorawifi using the old p2p file sharing programs using torrents. Lora is limited on data but breaking it up sending chunks at a time being reassembled in full. Just some ideas im playing with. Trying to push lora tech. Sorry long winded but interested in your ideas
@dash9computing8 ай бұрын
HI, The esp32 will unction as a file server on its own. You would need to use a SD card reader to store files long term. Fun ideas!
@KITThappens9 ай бұрын
Can you make own watchfaces
@dash9computing9 ай бұрын
Yes! You can. My watch broke unfortunately. Something in thing in the connector. LILYGO did refund my money so I can't fault them for that.
@KITThappens9 ай бұрын
@@dash9computing how?
@dash9computing9 ай бұрын
I recommend downloading the source code for an existing watch face and then modifying it. Here is a good video from ShotokuTech on how to do that (i think he also goes over the supporting software you need like Visual Studio Code, platformIO, etc: kzbin.info/www/bejne/hKSclHRjgbVojpo
@KITThappens9 ай бұрын
Can i use this watch via wifi or bluetooth as a wireless microphone for a windows pc? When i tap on a button the mic is on and if i release button mic is off
@dash9computing9 ай бұрын
That would be cool! I can say the watch has a microphone in it. As for integrating it with a Win PC....The watch does have an Analog to Digital Converters (ADC) and you could send the mic data from the watch (via wifi or bluetooth) but it might be hard to receive it on the PC. Not sure...This is out of my wheel house. Please let me know if you give it a go!
@azzar.22 күн бұрын
Of course, as long as u can write the code to do just what u want to, it's basically just a dev board that has a pretty good form factor for a dev board
@selim18299 ай бұрын
Is it possible to use it with LoRa Meshtastic ?
@dash9computing9 ай бұрын
I bet you could as they support MQTT. meshtastic.org/docs/software/integrations/
@glennhumphries94449 ай бұрын
Is Franklin holding a lightning rod?
@dash9computing9 ай бұрын
Hi, yes he is holding a three pronged lightning rod. Good eye! Here is a link to their site chsi.harvard.edu/exhibitions/putnam-gallery
@Atmatan10 ай бұрын
Any chance that i could convice you to be a really cool guy and make an app for the flipper zero for this to run on over gpio? The esp side should run out of the box on the devboard, im about to flash and test it, yet there's no display without the flipper and i can't write the custom code for the app to display it 🥲
@YoussefYoussef-io7yc10 ай бұрын
Hello, I have a watch v3, please. I forgot the password. How can I restart or...
@dash9computing10 ай бұрын
You can power cycle the watch by holding down the button on the side for 5 seconds (to turn off) then hold it down for 2 seconds (to turn it on). I never had a password. You could upload a sketch and over write the existing code and that will rest the password. Here is their code repository: github.com/Xinyuan-LilyGO/TTGO_TWatch_Library
@88farrel10 ай бұрын
Gmod Tool Gun
@dash9computing9 ай бұрын
That would be way cool!
@dans-designs10 ай бұрын
This is great work!! How did you code the games?
@dash9computing10 ай бұрын
Thanks! No I did not code the games. The code is by Dr. Till Harbaum. There is a link in the description. It is great code!
@mortenlund63516 ай бұрын
yes games need to somehow be coded and downloaded, did you find a way ? im still stuck
@ReneDO5RW10 ай бұрын
Battery is very Bad 😮
@dash9computing10 ай бұрын
I totally agree! It dies pretty quick.
@sergyoeletronico11 ай бұрын
Eu conheço sardinha "88", mas não é ínfimo
@Toddlersmind11 ай бұрын
can you make a video and program which can display pihole data , pfsense data or notification from uptime kuma or news from google api
@dash9computing8 ай бұрын
Display PiHole data...like query logging. Could be done...never tried. Would be say to print the query on screen. Here is a video and links to code where I send news to the ESP32 via WhatsApp. It could be modified to send news or other data from other sources. kzbin.info/www/bejne/p2TEaptqnaaVo6c
@motiduck8 ай бұрын
@@dash9computing Thanks dash
@CDubya.8211 ай бұрын
Buy an M17 Handheld and put MinUI on it. Way better build quality and software for emulation of everything up to and including PlayStation