No video

Combining Arduino, Android, and the Cloud Part 1

  Рет қаралды 50,217

ForceTronics

ForceTronics

Күн бұрын

Пікірлер: 37
@matthewmorales3662
@matthewmorales3662 7 жыл бұрын
Just wanted to say thanks for the great videos you are putting out. It is exactly what I needed to help me learn MIT App Inventor to develop an app with Arduino data for my engineering project at university. Hope you don't mind if I send you some messages about questions I have to help get the project off the ground. Keep up the good work!!
@liamwhite2700
@liamwhite2700 6 жыл бұрын
This series is helping me so much currently on my A Level computer science project (I'm making an aquarium monitor). Just wanted to say a massive massive thank you, you have saved me so much time and trouble. Recommended your channel to my teachers. Again, thank you so much!
@claudiufarcas
@claudiufarcas 8 жыл бұрын
Thank you for this tutorial series, I will look forward to learn more from them. One note over the encryption of the communication: just having private key in the header of HTTP request will not encrypt the message. The only safe way to encrypt the communication is via HTTPS which I don't know yet if it is supported by ESP8266 or MKR1000. I think the private key is more likely used as a authentication validation, but without communication encryption it has no point. The communication can be captured by middle man in the hacking attack and thus exposing the sensitive data.
@LuxuryDays_
@LuxuryDays_ 6 жыл бұрын
i had been searching for this , finally found it here . you r awesome mate thanks for this video.
@MdNazmusSadat
@MdNazmusSadat 7 жыл бұрын
Thanks for the great tutorial
@ziaullah8756
@ziaullah8756 7 жыл бұрын
Thank you
@hamzahm.marhoon9256
@hamzahm.marhoon9256 6 жыл бұрын
Good job, Regards .
@rexsace7104
@rexsace7104 5 жыл бұрын
Hi, just a question. Is it okay to use different kind of ESP8266 (The blue-colored one) and still use the same cloud tool, Phant?
@rarckgtz
@rarckgtz 6 жыл бұрын
Since sparkfun is not working anymore can we use simply another website such as thinger.io with the same process?
@ForceTronics
@ForceTronics 6 жыл бұрын
Yes you can use another cloud platform but you will need to modify the code for sending data because every platform is different. I am not familiar with thinger.io but it could work assuming it does the same thing. You could also use ThingSpeak which I have a video as well.
@purplefurture6960
@purplefurture6960 4 жыл бұрын
hello i have wismos d1 r1 mini esp12F , will it work with same code you used ?
@ForceTronics
@ForceTronics 3 жыл бұрын
No, different wifi libraries
@camilliawee6653
@camilliawee6653 4 жыл бұрын
can i apply this code in my project which is using arduino uno and nodemcu
@ForceTronics
@ForceTronics 4 жыл бұрын
If they use the same WiFi library. If not then you will need to add the Arduino WiFi library that supports the NodeMCU
@alifbiswas171
@alifbiswas171 5 жыл бұрын
Phant is down now. It will be helpful if you upload an alternative.
@ForceTronics
@ForceTronics 5 жыл бұрын
ThingSpeak I have video on it
@nandagopal4286
@nandagopal4286 7 жыл бұрын
i am facing a problem in finding right ESP8266 wifi library..pls give the the website link ...
@ForceTronics
@ForceTronics 7 жыл бұрын
I use the one that is installed with the Arduino IDE. I am sure you can find it on GitHub, but I don't know the link
@user-cf3wr5fm4s
@user-cf3wr5fm4s 6 жыл бұрын
May I ask where do I create new data stream? When I enter the data.sparkfun.com, I did not see the create button.
@ForceTronics
@ForceTronics 6 жыл бұрын
Unfortunately Sparkfun shut their cloud platform down to new users. I would recommend ThingSpeak, I have a video on using it.
@autogenicsautomation4904
@autogenicsautomation4904 7 жыл бұрын
sparkfun is not creating new data streams any other source
@ForceTronics
@ForceTronics 7 жыл бұрын
Just checked on it and you are right. That is a bummer. Hopefully they will have it back up soon!
@GRANDROIDZ
@GRANDROIDZ 7 жыл бұрын
any update if they can take new data streams?
@ForceTronics
@ForceTronics 7 жыл бұрын
No not yet. I would recommend checking out ThingSpeak. I have a tutorial video on it.
@tiwar87
@tiwar87 6 жыл бұрын
ForceTronics do you have any tutorial on thinkspeak? What about to use blynk app? Maybe have you experiences on it?
@realmadprodigy4912
@realmadprodigy4912 7 жыл бұрын
Where did you obtain the ESP8266 wifi library?
@ForceTronics
@ForceTronics 7 жыл бұрын
It is pre-installed in the Arduino IDE when you install the ESP8266 boards. You can most likely also find it on GitHub
@hareshshankar487
@hareshshankar487 7 жыл бұрын
the data is not getting posted. Why is that? Private key edited Public key edited....n also the custom fields...
@ForceTronics
@ForceTronics 7 жыл бұрын
I don't know without knowing the details of your setup. I would ensure you have your fields setup correctly in Phant. I would also take the phant post string and print it to the serial monitor and then cut and paste it into your web brouwer. If it works via the web brower then the problem is either in the Arduino code or Arduino is not connecting to the web. If it doesn't work through the web browser it mean you don't have the phant cloud setup right.
@hareshshankar487
@hareshshankar487 7 жыл бұрын
yes the fields are correct... the same data is correct on serial. but is not logging to phant cloud , is the port 80 common for all.??
@hareshshankar487
@hareshshankar487 7 жыл бұрын
Between arduino is connected to the web...
@ForceTronics
@ForceTronics 7 жыл бұрын
Can you post to phant using your web browser? Yes as far as I know port 80 is the port used for HTTP communication.
@hareshshankar487
@hareshshankar487 7 жыл бұрын
no thats the problem. My anolog data is not getting posted to the cloud. Between i am using a nodemcu (Lolin) Is that the Problem?
@VishalDonga
@VishalDonga 7 жыл бұрын
Can I get code of this?
@ForceTronics
@ForceTronics 7 жыл бұрын
Go to my blog (address in video description) and search on the video names to find the code
Combining Arduino, Android, and the Cloud Part 2
14:55
ForceTronics
Рет қаралды 13 М.
ESP8266 + Arduino + database - Control Anything from Anywhere
13:51
Electronoobs
Рет қаралды 632 М.
КАКУЮ ДВЕРЬ ВЫБРАТЬ? 😂 #Shorts
00:45
НУБАСТЕР
Рет қаралды 3,5 МЛН
Arduino: Log sensor data in the cloud
10:07
logMaker360
Рет қаралды 75 М.
How to Build an Android App to Control Your WiFi Enabled Arduino
12:55
LoRa - Long-Range Radio for IoT | Arduino, ESP32, RPI Pico
1:07:58
DroneBot Workshop
Рет қаралды 321 М.
Temperature and Humidity Monitor using Arduino IOT Cloud and ESP8266
10:17
Tech Trends Shameer
Рет қаралды 100 М.
Using Servo Motors with Arduino
43:06
DroneBot Workshop
Рет қаралды 1,4 МЛН
ESP-NOW - Peer to Peer ESP32 Network
43:02
DroneBot Workshop
Рет қаралды 355 М.
КАКУЮ ДВЕРЬ ВЫБРАТЬ? 😂 #Shorts
00:45
НУБАСТЕР
Рет қаралды 3,5 МЛН