Follow me on FACEBOOK for more: facebook.com/Electronoobs help me on Patreon: www.patreon.com/ELECTRONOOBS
@user-bi5yj7hs9t5 жыл бұрын
Te olvidas de el canal hispano :")
@skyevanderheijden53825 жыл бұрын
i have connected everything correctly but it does not work. when i open my serial monitor it keeps spitting out: 17:22:58.002 -> `f⸮⸮f⸮f~⸮⸮⸮⸮⸮f⸮f⸮⸮⸮f⸮⸮timeout 1 17:23:07.026 -> ESP CHECK FAILED 17:23:12.084 -> timeout 1 17:23:12.084 -> ESP RESET FAILED 17:23:17.122 -> timeout 1 17:23:17.122 -> ESP CWMODE SET FAILED 17:23:27.236 -> timeout 1 17:23:27.236 -> ESP SSID SET FAILED 17:23:27.275 -> CHECKING FOR AN IP ADDRESS 17:23:37.353 -> timeout 1 17:23:37.353 -> IP ADDRESS FAILtimeout 1 17:23:42.396 -> ESP CIPMUX SET FAILED 17:23:42.429 -> CONNECTING 17:23:47.517 -> timeout 1 17:23:47.517 -> FAILED TO CONNECT 17:23:52.560 -> timeout 1 i don't know how to fix this please help.
@khalidzaid1234 жыл бұрын
@@skyevanderheijden5382 me too the same my error
@arunjallipalli81184 жыл бұрын
I also had same error please help me to fix it
@thijsschrooten98434 жыл бұрын
@@skyevanderheijden5382 Have you fixed this issue? I have the same issue but i think you need to make some changes in the code or something. I think you need to put some text in the serial monitor but I havent figured it out yet.
@jonmms91933 жыл бұрын
Now I don't know if anyone has spotted this. There is a ***MISTAKE*** in the schematic at 8:11 in the video. The voltage divider is wrongly connected to the Rx pin of the 8266 and pin 11 of the Arduino MEGA. One must disconnect: 1) upper terminal of the 1k resistor from pin 4 of the 8266 and 2) cyan wire from pin 11 of the MEGA and switch them over i.e. the cyan wire goes to the 8266 pin 4 and the upper terminal of the 1k resistor goes to pin 11 of the MEGA. If you leave it as is, no voltage dividing is accomplished and the full 5V level is applied to the Rx pin of the 8266; this can stress the ic to unknown results. Having said that, CONGRATS for one more great video and project!
@AtharvSharma-d3gАй бұрын
are u sure
@Gmtail4 жыл бұрын
Thank you for properly explaining things from start to end.. Most KZbinrs assume people already know about PHP or making a web site, but I do not as I am sure others. So again, thank you for taking the time and doing it properly.
@jeffhousen89685 жыл бұрын
Hello my friends, we need to discuss basic website security please remember that allowing anyone that can see the website access to change it can result in....unexpected consequences this becomes even more important when you are controlling mechanical items through the website a basic password will stop the curious, for the determined, more drastic measures are needed do not rely on obscurity, that is useless for security that is all.
@S0K0N0MI4 жыл бұрын
I'm a little conflicted; I can host the site locally and just go in via VPN tunnel for best security, BUT at that point ill have a server in the house already, so why not skip the arduino and use a raspberry Pi. I wonder if there is a way of making this self contained on the arduino. It can throw up a basic no frills HTML page and read data directly from its own EEPROM, so it might be possible?
@ktaragorn4 жыл бұрын
Agree, so much easier and more secure to use an authenticated MQTT broker like cloudMQTT, instead of a public http page.
@S0K0N0MI4 жыл бұрын
@@ktaragorn Thats exactly the route I ended up taking. ;)
@TheRainHarvester4 жыл бұрын
Can you just create 2 websites : 1) for just the user controls, and 2) another for responding to the user controls? And this is pw protected and responds to user commands? This way, the user only gets access to #1. Not the meat of the innards which controls safety etc? (I'm a noob at internet. Just trying to learn....)
@oskar15044 жыл бұрын
@Ghislaine Maxwellthanks insane workaround. But u could change your ip and "crack" this method .
@fernandoarellano71264 жыл бұрын
If I had some money I will support you in Patreon man!
@fernandoarellano71264 жыл бұрын
Keep the good work!
@virtual_ninja8105 жыл бұрын
What if the website goes down for some reason or the company shuts or website is hacked that's why I prefer local server over IOT
@NiHaoMike645 жыл бұрын
There's PiVPN for an easy to set up VPN server.
@makersgeneration37395 жыл бұрын
True true. That's a way to see. It depends also of the importance of what you are doing
@UpcycleElectronics5 жыл бұрын
Yup. For something like a mailbox "you've got mail" notification, who cares if others see this. They could just watch the mailman for the same information. It's already public data. That's what I would do with this. In my experience, something like a privately hosted option is far more likely to fail than one hosted by a company online, but I'm no IT guy. The entire business model with these "free" web host sites is based on a long game. They are counting on a small percentage of people to build up enough presence on the site so that they use more than the free bandwidth limit. They need this bandwidth threshold to be high enough that moving to another platform is more of an expense than (over) paying for the site's services. They are trying to get people to invert the path of least resistance so that paying more is easier than not. This kind of thing takes time to develop. The only way for them to succeed is to play the long game, so exploiting the service like this is a pretty stable option IMO.
@kal90015 жыл бұрын
1, Pay for your own host - It's super cheap £5 a month gets you a basic web host with PHP. Or host it yourself, using a static IP or a DDNS service. A paid host is more likely to remain up all the time, and is more likely to have more secure apache settings than a typical home grown site. Either way you're still exposing the service to the internet so... 2, Security and encryption. These both work great for all sorts of things. Having your devices authenticate over an encrypted connection is all well and good, however this does add latency, security can be 'hacked' and encryption can be broken. 3, "Security" through obscurity. One should not send explicit data... send a load of random crap with your important data at known positions along the junk. don't send plain text data, just send binary and reconstruct the stuff after...etc... Also as good as this project seems I have a worry it could be bloated - I've not looked at it, and I know Kevin Darrah's work, but I suspect something is sandbagged here as I've been able to very easily get an ESP8266 to decode JSON strings with VAST amounts of text and numeric data, and pass that along to a 'duino for parsing. Having these 3 boolean limits, and an uno can't contain all the code, seems very odd.
@B1tm4n5 жыл бұрын
Let's just hope you're security is better then an industrial hosting service.. but ofc, if you have the infrastructure why not?
@richardbagin92605 жыл бұрын
"Full version" of code will also work on arduino UNO or NANO (ATmega328P) if you store all string in program memory (flash) via "F( )" macro. e.g.: Serial.println(F("READY TO SEND")); ( or lcd.print(F(...)); ) Like this I reduce the used RAM to 70% (595 bytes left). Obviously I didn´t test it yet (because I don´t have an ESP Wi-Fi module). And if it will still cause stability problems you can store other variables (because 45% of program memory are still unused) (e.g.: const char SSID_ESP[] = "..."; const char SSID_KEY[] = "..."; ...) via PROGMEM macro. e.g.: PROGMEM const char SSID_ESP[] = "..."; but you will need to write a little bit of code e.g.: for(i=0; i
@Mystical-TEDDY_2 жыл бұрын
YO THANK you bro i been looking for something like this. Ima try it out. But would I have to make these changes by looking through EVERY LINE of code? or is there a faster to make these changes
@robinulrichsen80349 ай бұрын
huge help!
@tcape725 жыл бұрын
great video, was able to create the website and uploaded and edited the files and had it working in about a half hour. Your instructions were perfect, thanks. Now I have to do the Arduino stuff.
@josephcagiano30553 жыл бұрын
One of the best channels I’ve ever found. Very grateful for your videos. Greetings from USA.
@MarceloCutin5 жыл бұрын
Thanks for sharing! This project really opens a wide range of possibilities.
@trashk14833 жыл бұрын
Hai.. do u have the sample code for this project.???? Can u help me please???
@vasuyadav29313 жыл бұрын
@@trashk1483 The link to the tutorial is in the description. The tutorial webpage has a zip file which contains all the .ino files mentioned in the video.
@ahmedboudi18084 жыл бұрын
Thank you for your excellent tutorial and all your videos ... but the diagram at 8:11 has some comments from me ... 1- PIN GPIO0 grounded when upload code, float otherwise 2- divider resistor is inverted ,The medium point must connected to RX(ESP).
@omarel-azab52234 жыл бұрын
i did that and yet the esp doesnt connect to the wifii network, any idea why?
@medilies4 жыл бұрын
hello so the way esp(client) recieves data orders from the server is by checking the database . doesn't that consume a lot of network ressource since it needs to check periodicly! and isn't there any way to make our servers send data via http to esp ?
@salimshamim38514 жыл бұрын
Yes, you can. You have to use mqtt(in place of http requests), that would work in publish subscribe model, so your esp can subscribe to a topic and will get notified when your app will publish on that topic.
@187702993 жыл бұрын
hi, sorry im using sp01 but still not working "ESP CHECK FAILED " I cant set up the ESP01 trought the arduino mega.i have the USB programer for the sp01.
@fouzaialaa79625 жыл бұрын
Im an embedded systems engineer and i know how much work goes into something like this ......... It would take weeks to do .......thank you for your work
@TheDrewker5 жыл бұрын
Subscribed because finally somebody provided a banana for scale
@guywhoknows3 жыл бұрын
After that I feel like adding a video on how to host a website on a server and how to make the server in less than ten minutes. But I'd also have to address the firewall and poet forwarding so it was world wide enabled. Good bit of work there!!!
@kanapkazpasztetem5 жыл бұрын
I may have missed something but... 1) why do you use esp8266 + arduino mega instead of the esp alone? pin cout? - if yes then just add i2c pin expanders and it still will be a cheaper solution with the same functionality ihmo 2) while the given PHP code may work and get things done it is also not secured, it is unlikely for anyone to find such endpoint and know what to send there but some authentication would be nice 3) as above, it may work but calling "example.com/esp/update_values.php" is meh imho, URLs like "example.com/esp_apiv1//update" "example.com/esp_apiv1//read" looks much better and are self-explanatory, you can use existing frameworks like Lumen do code that or you can even add it to your WordPress website since it has also a built-in rest API (I have done similar thing) all in all good video to just get started but what was missing (or what I missed) is that it can be done better if you spent more time on it :(
@aai29625 жыл бұрын
I think this esp8266 is just a WiFi module and not a full microcontroller
@kanapkazpasztetem5 жыл бұрын
@@aai2962 ESP8266 has microcontroller capability, just google "esp8266 boards comparison" and you will get many of them. They are quite cheap so if you need to connect a small device to the internet (like in this vid) it is a very interesting and cost-effective option
@sigmata04 жыл бұрын
I hope others have mentioned this, but you've implemented no security of communication between the webserver and controller nor the between the webserver and the browser client. On the face of it I would expect anyone to be able to control whatever your website controls. This means if you set it to issue alarms or set equipment on or off, anyone on the planet could do so. You show an example of opening your door latch remotely, and in this setup anyone could do so if they found your free website. Some of this would be ameliorated if you'd implemented SSL between the controller and the website, and between the client of the website and the browser. On top of this I'd be adding an authorization page to access your control page (as a minimum). The 000website service does not provide SSL protection unless you pay for it. In fact it doesn't even supply SSH services. It's unclear if you could implement SSL yourself, using a self signed certificate or one of the free services (letsencrypt.org/ for instance). Really, I'd be more inclined to buy a small SoC device like a Raspberry Ri and setup the web server on it, which means you have complete control over how and what is implemented. This would enable you to have SSL and SSH services, and even a VPN server (like OpenVPN) if you desire. I'd then create a port forward setup on your home router to allow connections to that host from the Internet. All the communications between that host and your Arduino would be inside your local network and not over the Internet (and you could add encryption to that traffic as well if you so desired). If you wanted a specific domain address to resolve where your home public IP address is, you could use one of the Dynamic DNS services that are available for no cost. No-IP, or FreeDNS come to mind but there are a range of others who provide this service. If you use a VPN, then you connect via VPN to your host first, then either login or simply control things via the website as you've demonstrated. You could get a similar effect by using an SSH channel to connect to your host from the outside, if you didn't want to setup up VPN. Security is one of the concerns best implemented from the beginning and not just tacked on later in the process.
@GabDrakee Жыл бұрын
Hello, sorry for the basic question, but how can i uplooad multiple files to the arduino ? I will try to alter your project a bit , to use a server i rent over the internet, from linux, which im configuring, do you think that i will have much complication ? I will try to make the arduino insert the info on my db , and control it on another webpage that i made. This is because i have a college project to make im trying to guide myself by your project in order to do something similar .
@vijaysmrt98763 жыл бұрын
I have connected everything correctly but it does not work. when i open my serial monitor it keeps spitting out: timeout 1 17:23:07.026 -> ESP CHECK FAILED 17:23:12.084 -> timeout 1 17:23:12.084 -> ESP RESET FAILED 17:23:17.122 -> timeout 1 17:23:17.122 -> ESP CWMODE SET FAILED 17:23:27.236 -> timeout 1 17:23:27.236 -> ESP SSID SET FAILED 17:23:27.275 -> CHECKING FOR AN IP ADDRESS 17:23:37.353 -> timeout 1 17:23:37.353 -> IP ADDRESS FAILtimeout 1 17:23:42.396 -> ESP CIPMUX SET FAILED 17:23:42.429 -> CONNECTING 17:23:47.517 -> timeout 1 17:23:47.517 -> FAILED TO CONNECT 17:23:52.560 -> timeout 1
@187702993 жыл бұрын
same to me.. did you fixed it?
@theN10CITYproject2 жыл бұрын
this is the needle in the heystack i been searching for! perfect vid!!
@PiyushNikam4 жыл бұрын
Hey, really nice work man. Can you tell me how we can upload multiple Arduino code to a single Arduino? Will the previous uploaded code get deleted?
@chinmoytahbildar32785 жыл бұрын
Seriously your videos really amazed me and I always waiting for your videos...God bless YOU...love from India
@Kevindarrah3 жыл бұрын
thanks for the shout out!
@nand26245 жыл бұрын
Nodemcu 8266 or 32 and blynk would be a lot cheaper and easy for iot projects..
@suloman58455 жыл бұрын
using adafruit mqtt server is cheaper.
@fouzaialaa79625 жыл бұрын
the flexibility of using an arduino (much more easier) trumps everything !!
@fouzaialaa79625 жыл бұрын
@@suloman5845 mqtt on arduino is a bitch !!!!! trust me i know !!!!
@ChrisPrefect5 жыл бұрын
@@fouzaialaa7962 A NodeMCU can do the same as an Arduino and you can even use the same code and the arduino ide. So there is really no need for a separate arduino.
@fouzaialaa79625 жыл бұрын
@@ChrisPrefect yes but sometimes you find a library that arduino uses that is not available for Node and then what ?? ...... it happend to me before so i always try to research everything before ....... every thing depends on the project ....but better be safe than sorry !!!!
@gowrob_27773 жыл бұрын
why it dont work? I did all the things. but it shows me a page and this "You see this page because your website doesn't have "index.php" or "index.html" file in public_html folder." what should i do now
@marnolotz4614 жыл бұрын
Great viddeo, thanks you. Quick question thouhg: I have an Arduino UNO, is there a way I can make it run more effectively on the UNO (eg. code I can snip) as I don't have an Arduino MEGA?
@TheKingDnz3 жыл бұрын
I can't find uno codes too.
@yugalsharma132 жыл бұрын
Have you tried socket programming (using IPv6)? I presume that would be much faster than using a web app for this task. There's a lot of overhead involved in the management of web requests, right!
@shehabxcode3 жыл бұрын
i don't have Arduino mega i have Arduino uno so is it possible to give me simple example about how to turn 4 leds on and off also get the leds status if its on or off.i tried your example on arduino uno but i got error message "Not enough memory"
@chriswouse77135 жыл бұрын
“Easy but difficult project” Me: (wipes spat coffee off screen)
@raagamparmar1793 жыл бұрын
xD
@a332pilot4 жыл бұрын
Some almost 13 minutes that are very worth it! Thank you so much 🙂
@thijsschrooten98434 жыл бұрын
mine doesnt work. Can you maybe send me your code. then i try if your code does work on mine
@a332pilot4 жыл бұрын
@@thijsschrooten9843 I haven't done it yet, I meant the video is worth the time. But I'll work on it this week and update you.
@Mystical-TEDDY_2 жыл бұрын
@@a332pilot lmao its been 2 years bro u good?
@DylanNeo4 жыл бұрын
Hello Sir, I have been learning arduino lately and I've been lead in my search to this video to try next. I have experience in front and back end web dev (including PHP), so I'm excited to put that knowledge together with Arduino to make something really interesting.
@adelashour32535 жыл бұрын
Thank you, great job, but why webpage, we are in time of mobile apps, what about nodemcu it has a wi fi adapter
@ochienoeliud57233 жыл бұрын
Great work. Very precise and informative tutorial guides. Lots of thanks
@mariya54803 жыл бұрын
Thank you so much! I am going to make best friends lamp for distance relationships. Your tutorial is the best one I saw on KZbin! I appreciate your work. Good luck with your channel. Subscribed
@fridolineckerd61353 жыл бұрын
thats also why im here, did it work for you?
@mariya54803 жыл бұрын
@@fridolineckerd6135 i decided not to do this😂
@katsuoofficial84653 жыл бұрын
Sir can i use only the Text input and send ID number to database for may IOT attendance syem using only Nodemcu Esp8266 and a router
@jacks43215 жыл бұрын
You are such a great electronics engineer Love you 😘❤️😘😘
@srrandall885 жыл бұрын
Thank you for the awesome video Can you use just an esp8266 node lua board? Also is there a way to log the database to get graphs On the website? I want to track environmental temp, humidity and pool temperature over time.. but access from anywhere
@engineeredessentials66605 жыл бұрын
Blynk
@mrrcomp4 жыл бұрын
Great Video .. Since the NodeMCU gives both the Connection to the Wifi and has I/O would be nice if you could possibly show how to convert your current project onto NodeMCU.. Just a suggestion :)
@joshuaolakanla39932 жыл бұрын
Same here
@victorgarnier99022 жыл бұрын
did any of you guys figure that out?
@ebrahimprice21545 жыл бұрын
Informative video. Definitely helpful with an IoT project. Time to brush up on AMP in the LAMP.
@mustaphakabou38273 жыл бұрын
Hello Electronoobs, thank you very mutch for this tutorial but I want to ask you about the:(String location_url = "/TX.php?id="; //location of your PHP file on the server.), I didn't understand how define or know my location_url and what you mean by the server ?
@GeorgeGeorge-xj2bc4 жыл бұрын
I am intending to work on esp8266 and my question is about how can someone learn it and programming it.But it seems like using ready made programs and libraries looks the only solution to handle with it.The AVR microcontrollers are familiar to me since i write both in C and assembly using the avr studio,but the esp8266 looks somehow like a "black box" unaccessible to a deeper learning.
@valerafox77953 жыл бұрын
So, that what I clarified: I can do a database (I know MySQL so it's better for me to use it), that's being handled by Arduino, and it can be accessed and retrieved for a change through any Net protocol (Ethernet, or any another IEEE protocol)? And the DB can be stored and saved on a SD card being connected through ISP? Are all the things I written right?
@kabeatzz21864 жыл бұрын
I want to send bme280 and gp2y1010au0f sensor data. Do i need to create variables for these values to send it ?
@lelandclayton54625 жыл бұрын
I like this very much however this is how I would do it. Arduino, ESP8266 and a Omega2 or Raspberry Pi as the host. Install LAMP on the Pi or LNMP on the Omega2 since it will be the host. Sign up with a DynamicDNS and setup vLan on the router with some port forwarding and you'll have your own IoT server. Wonder if anyone has made a Arduino to Python Crosscompiler / emulator yet. This way you can just use the Pi or Omega2. Toss in a ZWave Controller and then you could really do some awesome Home Automation with it.
@rdssdr9395 жыл бұрын
Hello Leland, I have done a project with the method you recommend. The advantage is that response time is much less. However somehow router stopped forwarding to assigned ports. To avoid router problems, one of the outputs is recycling router daily. So currently with DDNS service set on camera dvr, I get the ip address daily. But as port forwarding doesn’t work, I cannot access ardunio. Well, currently I’m 1000 km a way from router and cannot set back the port forwarding. So only way to fix this problem is replacing router with a remote control feature or to have a pc running teamviewer or logmein on it. Both options are costly. So as a result, I will have to update my ardunio that will run over a server database on internet. So if you are able to be near the router, your method is fine as you could fix issue on the place. But if you are a way and have a chance to set router settings once a year, Best to have a control over server database.
@S0K0N0MI4 жыл бұрын
Very cool video! Question; Is there a way for my phone to receive a push alert when something is triggered on the arduino? Email tends to be a little slow, sometimes over 15 minutes. I would like to have it alert me immediately. I want to use this to keep an eye on my fishtank.
@johnnyenglish79514 жыл бұрын
Great project. I would love use this project with my ESP8266 NODEMCU instead. But there are too many changes to the code needed and I'm a hobbyist with no idea how to start. Would also like to have a non-latching push button operation. Any help would be greatly appreciated.
@victorgarnier99022 жыл бұрын
hello, i'm currently trying to do the same thing have you ever figured it out?
@gregjohnson51944 жыл бұрын
Excellent, works like a charm now I’ll code it for nodemcu and just a couple sensors and home automations is in the bag! Thanks
@deomarshalsimorangkir66033 жыл бұрын
Hi sir, tell me if you understood about the topic, send me your email address
@victorgarnier99022 жыл бұрын
Hello, were you able to code it for nodeMCU?
@Tegatreides3 жыл бұрын
hi thanks for the video. i have a question. i feel a little unconfortable putting the password of my db on a file. what if someone access the database_connect page and just clicks on show source?
@TheSilvax3 жыл бұрын
bro, your schematic is wrong, on the Rx on the Esp you will deliver 5 v to the Rx, the voltage devider is wrongly connected.
@mangocafee17 күн бұрын
Can you please tell me how can i fix that issue
@MrMaxbrax3 жыл бұрын
Hi, beautiful project, congratulations, I want to implement it with ESP32, in the next days I will try it. I would just like to know if in the project you have implemented a form of control to know if the device is on line or offline.
@sowmyam8012 жыл бұрын
Did you do it
@MrBlacks411 ай бұрын
Do you have a sloution with an App for android instead of a homepage? The two-way-communication is necessary for my project. I want to send commands and receive data with the app.
@wdujsub79024 жыл бұрын
This is a very cool and informative tutorial that is easy to understand and super helpful especially the files in the description. Keep up the good work!
@N1ghtR1der6663 жыл бұрын
but that built in antenna will seriously limit the range, how far do you get? and is there the same thing but with a antenna socket or solder point to install a higher gain antenna?
@012chris2104 жыл бұрын
Would I be able to send a web link to select a certain function to run within my Arduino code? I have a led strip with some preset modes and would like to be able to change them via a web link on my phone?
@helmi91595 жыл бұрын
sir, have you made arduino for control motor 1 phase like fan from internet?
@hamzaqasem90314 жыл бұрын
in tx.php i get the error (Undefined variable: update_number in /storage/ssd3/262/13007262/public_html/TX.php on line 70) can any body help me!!!
@ssukhvant3 жыл бұрын
Amazing project, I want to ask that if wifi network will not available then ? How Hardware will connect to the internet and access the database?
@mv96933 жыл бұрын
Hello Sir, This is amazing, I have a question, consider this is what I used for Room #1, what should I do for multiple rooms with the same.?
@jhonsebastianboterolemos30464 жыл бұрын
El video esta en español ? evisto algunos tuyos y se que hablas español tambien y quisiera saber si esta en español ya que me interesa mucho tu programacion en PHP y otras cositas
@shobhitkumarpatkar54682 жыл бұрын
Thanks a lot for such great information but I want to ask why banana was kept at the table ?
@rottison5 жыл бұрын
will the project work on a NodeMCU alone or does need the Arduino I have a few extra Nodes but not arduinos
@kuro680005 жыл бұрын
So is this constantly polling or is there some "push" element?
@b2eingimedali8004 жыл бұрын
Thank you very mutch for this good tuto but when i compilation i get an error ""exit status 1 request for member 'print' in '1', which is of non-class type 'int' "" i dont how fixed please help me
@MiguelGarcia-by3nn2 жыл бұрын
Mi duda es, ¿se podría hacer todo esto desde Wordpress? es decir prescindir del web server y poder simular un IoT Cloud con Wordpress para ver los gráficos / charts y poder almacenar los datos medidos con los sensores por al menos 90 días. Gracias!!!
@brdflu4 жыл бұрын
Can i ask if the Texting is possible to type a text in an app inventor application then going to the other person phone but using the arduino SMS texting using IFTT
@hamza30982 жыл бұрын
how can I do the same project but only with reading the analog value of the sensors on my website without the other things shown in the video ?
@paul_vantieghem5 жыл бұрын
Cayenne IoT on a Raspberry Pi is very powerful and very easy for beginners. No coding resuired. You can add sensors, motors, screens, ... and confiqure them with a wizard. It's crazy
@MasKimochi3 жыл бұрын
dang.. the next level IoT tutorials.. it's sophisticated !!
@DolfimGames5 ай бұрын
Sorry bro, but I needed to know if I can use the Arduino for remote access, outside the house to sell to someone, so that in the app I create I can just use the network name and password so that person can control the device?
@alessandroloschi88655 жыл бұрын
Hello, I'm an electronic engineer and I want to do the same thing which you show in this video, using the same hw, but I need to use simulink for my project and I'm having some problems with the esp configuration. Can you give me some suggestions please? Maybe I can help you with other things and share some knowledge
@ingcentellas87043 жыл бұрын
Hi! Thnks so much! This is a very very very good tutorial for this kind of purpose, I have a question, maybe another user (if there is such a good soul out there jeje) could answer me. Well, there is my question: Is it functional to use a sensor just connecting in a direct way? I mean For example, the DHT11 just connecting VCC GND and DATA or it is better if I use a wheatstone bridge?
@kumeshananth8166 Жыл бұрын
Hello sir can you please tell me what is the app should be downloaded to control the system. I mean that you are using some app on your mobile to control light that is what Iam asking sir
@mmdnaderi71835 жыл бұрын
Hi, Thanks for sharing, the video has great quality both information and visuals, GREAT
@kishoreg88355 жыл бұрын
is it possible to scan data from a QR code to make a device work with respect to the read data? if so how?
@copo72055 жыл бұрын
Would it be possible to recreate this project with an arduino nano or micro? The mega seems way too big and expensive for many instances of it and they also have the necessary I/O pins
@dozog5 жыл бұрын
Yes of course. Nobody knows why he used Mega for such minimalist project.
@metropolitano215 жыл бұрын
por que no intentas hacer un smartmirror que te indique la hora, el tiempo y asi? podria ser una pasada y yo lo haria desde luego. un saludo
@f1-coldlaps4603 жыл бұрын
If I only want the boolean variables, can I use an arduino uno?
@vnagaravi5 жыл бұрын
Im confused How to flash multiple files in Arduino it will erase old code when uploading new one
@Joennuh5 жыл бұрын
If there is a filename which has the same name as the name of the folder where that file is placed the other files will be opened automatically in seperate tabs in Arduino. All those tabs will get included in the upload to your board.
@nilutpolkashyap4 жыл бұрын
How can I send strings from the web browser to my esp8266 to display it over a LCD display? Can you please help? Thank you
@arunjallipalli81184 жыл бұрын
While dumping program to ardunio whether we should select esp8266 in board manager or atmega 2560
@duverneygomeztovar44225 жыл бұрын
hola como siempre excelente video eres el mejor hice el tutorial pero no me funciona el modulo esp8266 mi pregunta es si hay que configurarlo antes de montarlo y porque no conectas el RX y TX a pines de comunicación como 16 y 17 de arduino ? gracias por tu respuesta
@jdeveloper1512 жыл бұрын
Hola! tu como hiciste para subir los sketchs a arduino, es decir no se como subir multiples sketch
@jr529904 жыл бұрын
Is it possible to use If This Then That to have a smart home device (like Alexa) to control the Arduino with this method?
@chanelas2924 жыл бұрын
Sir? Newbie here, did you make a application. For your mobile phone and a application for your website? Answer me please. 😭
@grimoria98573 жыл бұрын
Hi, newbie here. I just follow the guideline, but why i still got this error? timeout 1 FAILED TO CONNECT timeout 1 ESP CHECK FAILED ..etc
@syafiqmuda97622 жыл бұрын
nvm problem solve
@grimoria98572 жыл бұрын
@@syafiqmuda9762 same
@kristusvinci Жыл бұрын
@@grimoria9857 howd you solve it?
@pojintae32622 жыл бұрын
i dont understand about uploading the file into arduino mega. do i need to upload all or just MAIN_ESP8266 ?
@thijsschrooten98434 жыл бұрын
for me it doesnt work. can someone help me i get this messages from the serial monitor: CONNECTING timeout 1 FAILED TO CONNECT timeout 1 ESP CHECK FAILED timeout 1 ESP RESET FAILED timeout 1 ESP CWMODE SET FAILED timeout 1 ESP SSID SET FAILED CHECKING FOR AN IP ADDRESS timeout 1 IP ADDRESS FAILtimeout 1 ESP CIPMUX SET FAILED PLEASE HELP ME!!!
@yudisdwi2254 жыл бұрын
Check your wiring bro!
@abeditani82935 жыл бұрын
Something goes wrong when I upload the code . It say that the LCD crestal is not valid . As it missing the LCD display code
@nkit76725 жыл бұрын
Can work if u use arduino uno??? Secondly can control that system on pc???
@TheNewKill12125 жыл бұрын
Do not use arduino with ESP, just use ESP only :) This is about ten times more faster chip!
@urtetoliusyte29015 жыл бұрын
Do you try something like that?
@abdelfattahmabchour28914 жыл бұрын
I have a project < stock management > and i need to make prototype of this system i ask you if i can make it with arduino+esp+website
@Gm94.14 жыл бұрын
How can I read some temperature by ntc (5k Ohm) sensor and see it from my phone from anywhere?
@povnurb4 жыл бұрын
Podrías hacer el video en español o tienes el tutorial en alguna página?
@ymps76784 жыл бұрын
hi, does anyone could help me please. I wonder if it's possible to do juste the LCD display with an arduino uno. Because I would like to diplay a message on a LCD (wich will stay in my home) from anywere as long as I'm in 4G datamobile with an arduino uno an esp8266 and a lcd screen and I heard that you said we could only use an arduino mega cause of the volume of the arduino code. And I'm not really good and Idk what can I remove from the arduino code. Thanks for your time
@viliuspocius4383 жыл бұрын
I want to make a temprature sensor that can send notification if it gets over 100°. It would be for a burner that heats tha water. I only need 1 value will arduino pro mini handel that??
@Mystical-TEDDY_2 жыл бұрын
Hey is there a version of the code for teh arduino that is lighter weight? since I only have an arduino Uno / might not need all of the things on that website. I tried editing it but I keep messing it up
@reemashraf433 жыл бұрын
If I want the server to detect the existence of the robotic car to receive the data collected by the sensors of the car by using Arduino, In this case what the protocol that I will use and how I will do that? Note; the car must go far away from the server without internet for measuring and come back again.
@urtetoliusyte29015 жыл бұрын
Hey, I have a question. How to change a code that I could use just esp8266 NodeMCU (without arduino)? How to change ESP8266.begin(); or ESP8266.print();
@olislaw98125 жыл бұрын
You can use blynk application for nicer GUI and much simpler setup or if you care about privacy you can use lua to controll esp8266 via tcp commands
@johncojiebizar780610 ай бұрын
Hello, waht if i only need the switching of light bulbs?? what do i need to edit in the php file? and can arduino uno handle it??
@JessicaRyan7of95 жыл бұрын
I really enjoy watching your video's and the stuff you make is really awesome.