askSensors's instructables
Achievements
- askSensors commented on askSensors's instructable Temperature & Humidity Monitoring Using the ESP-01 & DHT and the AskSensors Cloud
- askSensors commented on askSensors's instructable Connecting Arduino WiFi to the Cloud Using ESP8266View Instructable »
Hello,It looks like a hardware issue, please check the cabling.
- askSensors commented on askSensors's instructable How to Connect the ESP8266 NodeMCU to the IoT CloudView Instructable »
Hello,Please read this article, it shows you with more details how to create a sensor devices on the AskSensors web application and how to visualize your data.https://asksensors.com/doc/create-sensor-device.ht...
- askSensors commented on askSensors's instructable Connecting Arduino WiFi to the Cloud Using ESP8266
Hello,Please follow this guide, it describes you how to create a sensor device and get your API KEY IN.https://asksensors.com/doc/create-sensor-device.ht...This image shows you where the API KEY is located.
View Instructable »Strange, I did lot of tests without connecting any voltage divider.As a precaution, I'm going to add a simple voltage divider between the ESP and the Arduino I/O.Thank you for getting in touch David.
- askSensors commented on askSensors's instructable Connecting Arduino WiFi to the Cloud Using ESP8266View Instructable »
Please try to connect to AskSensors with 80 port not 443.
- askSensors commented on askSensors's instructable Connecting Arduino WiFi to the Cloud Using ESP8266View Instructable »
Hello,Please double check the cabling. can You try to connect to another server "google.com" ?
- askSensors commented on askSensors's instructable How to Connect the ESP8266 NodeMCU to the IoT CloudView Instructable »
Hello,No, The delay of 25sec is set as example.With paid account you can send data every second.With free account, you can send data every 10 seconds.
- askSensors commented on askSensors's instructable How to Connect an ESP32 to the IoT CloudView Instructable »
Thank you for reaching out.Have you tried this instructable ? Are you able to connect your ESP32 to the AskSensors cloud and send data over HTTP ?It works just fine.Please feel free to ask any question in the AskSensors Forum: https://forum.asksensors.com/We will be glad to answer your questions.
- askSensors's instructable How to Publish ESP32 Data With NTP Timestamp to the IoT Cloud's weekly stats:
- askSensors commented on askSensors's instructable Connecting Arduino WiFi to the Cloud Using ESP8266View Instructable »
Hello, It looks like your Arduino+ESP8266 are not able to get connected to the AskSensors web servers. could you please check your WiFi connection to internet.
- askSensors commented on askSensors's instructable Connecting Arduino WiFi to the Cloud Using ESP8266
Hello,Could you please specify what's esp module you are using, and have you loaded any firmware on it?
View Instructable »Hello,AT failed, means your ESP module is not responding or the connection is wrong.please double check.
- askSensors commented on askSensors's instructable How to Send Data to the Cloud With Arduino EthernetView Instructable »
Hello RafaelB1,Thank you for trying AskSensors,Yes, this is asked in HTTP GET Request : client.print(String("GET ") + url + " HTTP/1.1\r\n" + "Host: " + server + "\r\n" + "Connection: close\r\n\r\n");Means, connection will be closed by the server once the request is proceeded.
- askSensors commented on askSensors's instructable Connecting Arduino WiFi to the Cloud Using ESP8266View Instructable »
Hello,Looks like your board is not able to connect to the asksensors server.could you please check your WiFi connection to internet.you can do a try with another website to confirm to you are able to access to other servers via internet.
- askSensors commented on askSensors's instructable How to Send Data to the Cloud With Arduino EthernetView Instructable »
Hello Hlulani,As discussed in private. The adress IP is set by DHCP, if failed, it will take the IP address specified in the line below, that should be in the range of your network.IPAddress ip(...., ......, ......, ......); // example 192, 168, 1, 177
- askSensors followed FABLAB Dhahran
- askSensors commented on askSensors's instructable Connecting Arduino WiFi to the Cloud Using ESP8266View Instructable »
Hello,It seems that your arduino is not able to communicate with the ESP8266 through serial AT commands.Please refer to this tutorial for a detailed description of the AT commands SW and HW.https://www.instructables.com/Get-Started-With-ESP8266-Using-AT-Commands-Via-Ard/
- askSensors commented on askSensors's instructable How to Connect the ESP8266 NodeMCU to the IoT CloudView Instructable »
Hello Tod333,Thank you for trying this tutorial.It seems that you have some issues with including the right WiFiClientSecure.h file.1. First, Do an upgrade of your Arduino IDE, and make sure that the ESP8266 target is well installed as shown in this documentation: https://asksensors.com/doc/ConnectHardware.html#re...2. make sure that you are compiling the file with the right Target configuration (ESP8266..).3. If the issue of setInsecure persists, try out with this example code (where the setInsecure is not used): https://github.com/asksensors/AskSensors-ESP8266-A...The result should be the same.Hope it helps. It you have any other inquiries, please ask directly in the community Forum so you will get quick answers ;)https://forum.asksensors.com/
- askSensors commented on askSensors's instructable Connecting Arduino WiFi to the Cloud Using ESP8266
Hello,It looks like you have an issue of connection between your Arduino and ESP8266, this could be a reason why the AT command failed.Concerning the data sent to AskSensors: you can notice at the end of the URL "module1=..". This shows an example of random data that you can replace later by your sensor data as well.
View Instructable »Hello again,Could you double-check your hardware connections. plz share your HW schematics.Please take a look on this documentation, it may help you to get started with AskSensors: https://asksensors.com/doc/Documentation.html
- askSensors commented on askSensors's instructable Connecting Arduino WiFi to the Cloud Using ESP8266View Instructable »
Hello,could you please describe the way you connect your arduino to the ESP8266 ? (schematic or photo).
- askSensors commented on askSensors's instructable DHT Temperature and Humidity Monitoring Using the ESP8266 and the AskSensors IoT PlatformView Instructable »
Hello,Looks like your ESP8266 is not able to connect through HTTPS, I tried to send data to your sensor from the browser, it works fine.https://asksensors.com/api.asksensors/write/EWNo4t...One of the fixes suggested by the AskSensors Community is to set the client to insecure by putting client.setInsecure(); in the setup as explained here:https://forum.asksensors.com/viewtopic.php?f=6&t=6
- askSensors commented on askSensors's instructable DHT Temperature and Humidity Monitoring Using the ESP8266 and the AskSensors IoT PlatformView Instructable »
Hello,it looks like a TLS certificate issue.Please try this version of code : https://github.com/asksensors/AskSensors-ESP8266-DHT/blob/master/dht11_https_get.ino
- askSensors commented on askSensors's instructable Temperature & Humidity Monitoring Using the ESP-01 & DHT and the AskSensors CloudView Instructable »
Great instructable,Thanks!
- askSensors's instructable Plant Monitoring and Alerts With ESP8266 and AskSensors IoT Cloud's weekly stats:
- askSensors's instructable How to Connect Soil Moisture Sensor and ESP8266 to the AskSensors IoT Cloud's weekly stats:
- askSensors commented on askSensors's instructable Temperature & Humidity Monitoring Using the ESP-01 & DHT and the AskSensors CloudView Instructable »
Hello,STEP1:First, You need to confirm that you are able to send data to your sensor using the appropriate API KEY IN. You can do it from the browser as shown in this tutorial (step 3).https://www.instructables.com/Send-Data-to-AskS...STEP2:If STEP1 Ok, so try to send dummy data to your sensor using only ESP8266 connected to the serial terminal (which allows you to see if your ESP8266 is connecting to WiFi and sending data to the AskSensors server. use the following code:https://github.com/asksensors/AskSensors-ESP8266-A...STEP3: Connect your DHT sensor to your ESP8266. To be sure, you can start with testing your DHT sensor separately: ESP + plugged on the serial converter and DHT sensor connected to the ESP using wires. use the adafruit library:https://github.com/asksensors/DHT-sensor-li…
see more » - askSensors commented on askSensors's instructable Temperature & Humidity Monitoring Using the ESP-01 & DHT and the AskSensors CloudView Instructable »
Hello,Yes you are right, At the final step, the IOT-MCU board does not allow USB connection.
- askSensors commented on askSensors's instructable How to Monitor Ultrasonic Distance With ESP8266 and AskSensors IoT CloudView Instructable »
Hello,Great!Yes, the ultrasonic works better with 5VDC.
- askSensors's instructable How to Monitor Ultrasonic Distance With ESP8266 and AskSensors IoT Cloud's weekly stats:
- askSensors followed snorlaxprime, TruthS3, RaymondN29, VijayU2 and 3 others
- askSensors commented on askSensors's instructable Connecting Arduino WiFi to the Cloud Using ESP8266View Instructable »
Hello,You have it in Step 4.This one: https://github.com/asksensors/AskSensors-Arduino-WiFi
- askSensors followed Jakub_Nagy
- askSensors followed JayconSystems
- askSensors commented on askSensors's instructable Room Temperature & Humidity Monitoring With the ESP32 and AskSensors CloudView Instructable »
Hello Peter,Please correct this mistake in the URL: module2=42.60?module3change the "?" by "&" as you did for the other modules --> module2=42.60&module3The correct URL will be:https://asksensors.com/api.asksensors/write/2A4JCMAPSELZZ4NS498CV3N4OFDTE62K?module1=23.13&module2=42.60&module3=23.19&module4=44.95The problem is fixed as shown in the attached image.
- askSensors commented on askSensors's instructable Temperature & Humidity Monitoring Using the ESP-01 & DHT and the AskSensors Cloud
Hello Peter,I'm glad to see you making it.Yes, we had a certificate update a while ago. this is not an issue. just ignore it.
View Instructable »Hello,Concerning ESP32, please refer to this tutorial: https://www.instructables.com/Room-Temperature-Humidity-Monitoring-With-the-ESP3/
- askSensors followed ElecFreaks
- askSensors's instructable Connecting Arduino WiFi to the Cloud Using ESP8266's weekly stats:
- askSensors followed TheSpodShed, SunFounder Maker, amandaghassaei, geo bruce and 9 others
- askSensors followed Nematic!, educ8s, Nikus, jfryar30272 and 1 other
- askSensors's instructable Room Temperature & Humidity Monitoring With the ESP32 and AskSensors Cloud's weekly stats:
- askSensors's instructable How to Connect an ESP32 to the IoT Cloud's weekly stats:
- askSensors followed bingdo72
- askSensors followed WolfxPac
- askSensors's instructable Connect Raspberry Pi to Asksensors Using Node.js's weekly stats:
- askSensors's instructable Automated Data Sending to AskSensors Using Node.js's weekly stats:
- askSensors's instructable Low-cost Temperature and Humidity Monitoring Using the IoT-MCU ESP-01-DHT and AskSensors's weekly stats:
- askSensors followed udubinsky
- askSensors's instructable DHT11 Temperature and Humidity Monitoring Using the ESP8266 and the AskSensors IoT Platform's weekly stats:
- askSensors followed Ardumotive_com
- askSensors commented on askSensors's instructable DHT11 Temperature and Humidity Monitoring Using the ESP8266 and the AskSensors IoT PlatformView Instructable »
Bonjour Philippe,Oui, c'est ce qui est définit dans les specs. mais sa marche aussi bien avec3V3, une alim très accessible sur le kit, donc beaucoup plus simple :-).
- askSensors followed diy_bloke, TapNDie and ErikA45
- askSensors followed mscala
- Show More Activities
Yes, You need to update the firmware for sure.This firmware works only with the AskSensors server.