Тёмный
StechiezDIY
StechiezDIY
StechiezDIY
Подписаться
Welcome to STechiezDIY channel.
STechiezDIY makes the videos for
- Arduino Basics
- Arduino interface tutorials
- IoT Projects
- Electronics Basics
- DIY Electronics/Embedded Projects
- Home Automation Projects
- Smart Intelligent Display Tutorials
- How it Works?
- Raspberry pi videos

Need Help?
Don't hesitate to send me mail on mail-id. You can get it below.
BUT EXPECT SOME DELAY IN RESPONSE.

Want to see video/tutorial on some topic
Let me know and i will add it to my TODO list.

Please send me a mail for any discussion about products/projects

Don't Forget to like share and Subscribe to the Channel.

Happy Learning
Happy Coding
Happy Soldering....
ESP32 WiFi manager Code Explained
4:21
Месяц назад
Arduino Debugging in VSCode using Platform IO
4:24
11 месяцев назад
Arduino Programming: PlatformIO & VS Code Guide
8:02
11 месяцев назад
Комментарии
@AliMkmk-bi3np
@AliMkmk-bi3np 14 часов назад
Can i use arduino uno And 10f200
@peterdunne9819
@peterdunne9819 7 дней назад
Junk code See espconfig to learn how to do it far easier with superior results
@snoody7025
@snoody7025 9 дней назад
how can i stablish a conversation with the AI
@jeffjohnson8721
@jeffjohnson8721 10 дней назад
Very helpful. I just got my 128x160 display running on the Pico W after carefully watching this video. Thank you!
@Dan-EmmanuelNignan
@Dan-EmmanuelNignan 19 дней назад
big thanks for your video very helpful
@adriangallo1719
@adriangallo1719 26 дней назад
Does this work with hidden networks?
@s66k854fh
@s66k854fh 27 дней назад
first view
@tampabaybutterfly
@tampabaybutterfly 27 дней назад
Worked perfectly, once I enabled I2C in the Raspberry Pi config utility and changed the directory to the folder name, 'raspberrypi_python'. Thanks!!!
@arturovasquez5334
@arturovasquez5334 Месяц назад
Great until I run the code, what about error generating "gdb-version" is not recognize a name of mdlet, funtion, file, or excutable program?
@jontpt
@jontpt Месяц назад
Google's tech is complete garbage. Why would you even waste 5 minutes on it?
@leroycarfrey7451
@leroycarfrey7451 Месяц назад
I ran the git clone w/ web address and it's showing git: command not found I'm running raspberry pi os Bookworm
@Garfangel1
@Garfangel1 19 дней назад
Open a terminal and run: sudo apt install -y git. Rerun the clone command
@ajuxx
@ajuxx Месяц назад
how to add audio out to it
@StechiezDIY
@StechiezDIY Месяц назад
speech recognition module and text to speech implementation required.
@ajuxx
@ajuxx Месяц назад
@@StechiezDIY can you make a vidio for it
@mikeryan2388
@mikeryan2388 Месяц назад
Appreciate the github link. Thank you
@StechiezDIY
@StechiezDIY Месяц назад
You're welcome!
@bennguyen1313
@bennguyen1313 Месяц назад
Any thoughts what would be involved in writing an ESP32 application, that takes data from the uart, and passes it wirelessly either via bluetooth (SPP) or via Wifi? For Wifi, I imagine the ESP32 could act as a web server (TCP) and display the RS232 data, but maybe there's a UDP way it could send data to a PC on the same network?
@UnspokenSilence
@UnspokenSilence 2 месяца назад
Despite the AI voice over, I do appreciate you taking the time to explain things. Your video and a few other pieces of research helped me with my problem.
@StechiezDIY
@StechiezDIY Месяц назад
I appreciate that!
@Red_7813
@Red_7813 2 месяца назад
Great video!
@bullygram
@bullygram 2 месяца назад
STM8bis gonna be pased out, i mean obsolete?
@neelamrani8819
@neelamrani8819 2 месяца назад
The script that you copy and paste how we can get that
@dangerdiesel3106
@dangerdiesel3106 2 месяца назад
Jesus dude, every single video I try to learn about goes great for 10 seconds the. You all just start shooting off with the craziest info. Great for the 1% of people that can keep up with that bullshit
@Bucefal76
@Bucefal76 3 месяца назад
Now calll things like millis() in your code and watch debugger crasching...
@user-mf4gw8ym6s
@user-mf4gw8ym6s 3 месяца назад
Thank u so much ❤
@StechiezDIY
@StechiezDIY Месяц назад
You're welcome 😊
@primos8709
@primos8709 3 месяца назад
In my ARDUINO IDE not have file named tools
@codingfella464
@codingfella464 2 месяца назад
same but here is why bec it works with the old ide 1.8.13
@akiztaecho7514
@akiztaecho7514 3 месяца назад
thanks for sharing.. can u make code for ESP8266+MAX7219?
@Manon-xs2fj
@Manon-xs2fj 3 месяца назад
thank you for the video (and the link to the code :) ) . Where do you find the Slave adresse that you put in the master's program?
@nicolasguanoluisa552
@nicolasguanoluisa552 3 месяца назад
you need to use the AT comand, AT+LADDR?, some HC-05 give you this ERROR(0), i use this code to use the AT code:#include <SoftwareSerial.h> SoftwareSerial BTSerial(2, 3); // RX | TX void setup() { Serial.begin(9600); BTSerial.begin(38400); Serial.println("Sending AT+LADDR command to HC-05..."); sendATCommand("AT+LADDR?"); } void loop() { if (Serial.available()) { BTSerial.write(Serial.read()); } if (BTSerial.available()) { Serial.write(BTSerial.read()); } } void sendATCommand(String command) { BTSerial.println(command); delay(1000); while (BTSerial.available()) { Serial.write(BTSerial.read()); } }
@stepal3887
@stepal3887 3 месяца назад
Hi, can I use the same device as Master to receive a command (e.g. swtch on a motor) from a different device like a remote controller and then translate that command in an analog signal (e.g. open the circuit to power the motor)? Thanks.
@user-zp2ep7hb2d
@user-zp2ep7hb2d 3 месяца назад
How to do for date and time
@user-zp2ep7hb2d
@user-zp2ep7hb2d 3 месяца назад
Help me
@letusexcel
@letusexcel 3 месяца назад
I am not able to find MD_Parola.h
@firs5165
@firs5165 3 месяца назад
Did you make the cable for RS232 to the display yourself? Or where can I buy?
@Seifsstudying-wq2nv
@Seifsstudying-wq2nv 3 месяца назад
Thank you so much sir, out of all the HC-05 pairing forums and videos on the internet, you are the only one who solved my problem!!!
@peterphiliprowley
@peterphiliprowley 3 месяца назад
Only works with older Raspberry Pi OS with Python2, so seems like buster, I have a pi400 which is bookworm and cannot run earlier versions of raspbian OS
@Monarch_61
@Monarch_61 4 месяца назад
Total cost
@j.van_heck4394
@j.van_heck4394 4 месяца назад
Thanks. Looks very nice
@hussainadil6617
@hussainadil6617 4 месяца назад
I think your wiring in the video will destroy your micro controller, as you swapped VDD+(14) and VSS-(5). Your green wire is connected to pin 14 to GND on Arduino. So, it would not work like this. Most probably you later re-wired before you programmed the PIC.😀
@chandhanu_
@chandhanu_ 4 месяца назад
thank you so much, after a month lcd is worked looked for many lcd videos but nothing worked
@HakkiOgrt
@HakkiOgrt 4 месяца назад
Thnx bro
@janarthanandayalan
@janarthanandayalan 4 месяца назад
Is the same can be done with esp32 camera with a IP address generate by it to store a data????
@pichikahemchandrasaisantho5181
@pichikahemchandrasaisantho5181 5 месяцев назад
lcd display is coming blank nothing is printing. what to do sir
@qjaws
@qjaws 5 месяцев назад
Anyone tried pic16f877a?
@anandhugopi2135
@anandhugopi2135 5 месяцев назад
Which restauranter are used
@FriendsExplanation
@FriendsExplanation 5 месяцев назад
Helpful video. Kindly, make a video on controlling output, reading input from pins
@unglaubichuberlieber8048
@unglaubichuberlieber8048 5 месяцев назад
well done, steps in detail + your illustration spoke with confidence, well done !!! bravo bravo bravo !!!
@Ccheng322
@Ccheng322 5 месяцев назад
thanks for the video!
@creativearts4917
@creativearts4917 6 месяцев назад
any reference for interfacing p10 red led display module with rpi pico??
@hulaan.mo_den
@hulaan.mo_den 6 месяцев назад
Can it be accurate as .1mm?
@saillively
@saillively 6 месяцев назад
I didn't know this was a possibility, still can't update the firmware but I can upload code, thank you!
@mariuspetcu7482
@mariuspetcu7482 6 месяцев назад
Works GREAT ... Thank You ... Please, how can I slow down the "scrolling speed " or make it smaller and stay "still" ? .... Best Regards ...
@rhoseannemartinez
@rhoseannemartinez 6 месяцев назад
do you have for raspberry pi 4?
@shazanmahmud2973
@shazanmahmud2973 6 месяцев назад
PIC16F877A can programme ??
@joeking5211
@joeking5211 6 месяцев назад
@ 1:32 - There is no 'Trust Workspace & Install' so i have no ides where your platformio extension came from bit is not the one that appears top of list if 'platformio' is typed in the top editbox. Just a heads up to anyone in same state of confusion as I am, as you must be doing something no one else can replicate. Kind Rgds. EDIT. Just a thought, are you sure you don't need the extension 'Arduino' from MS, that sounds more like it ??. Again just a hint for anyone else trying to decypher all this.
@anithasshenoy6662
@anithasshenoy6662 6 месяцев назад
CMD consol commands are impossibly small to read.