Skip to main content

Questions tagged [iot]

A new paradigm where many, typically microcontroller-driven embedded systems are connected by the Internet, and they are cooperating with eachother to reach common goals, without requiring human-to-human or human-to-computer interaction.

Filter by
Sorted by
Tagged with
2 votes
0 answers
452 views

Why does my program end up with CUT HERE FOR EXCEPTION DECODER for esp8266? I am triying to integrate gps and accelerometers with a website. integrating gps is the hardest one since it always refuse ...
Marifin -'s user avatar
2 votes
1 answer
189 views

We're using the ESP8266 to receive data from the Arduino Mega board, where our sensors are connected. Supposedly, our ESP is connected to the Blynk App. However, the values showing up in our dashboard ...
Earth_Lovers's user avatar
1 vote
1 answer
176 views

I'm using a water level sensor with two outputs, a 5V fan and a water pump. Here's the wiring . What I want to do with this project is: When the water reaches 2 cm, then the water pump is on while ...
jeonsann's user avatar
2 votes
2 answers
226 views

I'm using a Maduino Zero 4G SIM7600 device to upload data from 28 sensors to a ThingSpeak IoT server. It works well for a few hours, then stops uploading the data. Sometimes it starts again after an ...
Zurn's user avatar
  • 21
4 votes
1 answer
171 views

Hey there Stack community. I'm working with the Particle Boron v4.1.0. I'm connecting a Garmin Lidar Lite V4 on I2C. I'm using the LIDARLite_v4LED.h header file found in the library given for this ...
Katie Neeley's user avatar
1 vote
1 answer
2k views

I have connected a Reyax RYLR998 LoRa module to an ESP32's UART2, but AT commands passed through Hardware serial are not working. #define RXD2 16 #define TXD2 17 void setup() { Serial.begin(...
MrNams's user avatar
  • 129
-1 votes
1 answer
402 views

AT+CIPSEND=65 link is not valid ERROR OK OK OK OK STATUS:2 OK \x0BQ\xADUART_DEF=115200,8,1,0,0ATE0 AT+CWMODE=3 AT+CIPMUX=0 AT+CIPMODE=0 AT+CIPSTATUS AT+CIPSTART="TCP","api....
Satvinder Jaglan's user avatar
1 vote
0 answers
138 views

I've got an ESP-07s and I used an example code from the internet. When I power it and the program starts, it should just connect to my Wifi network. It has a simple webpage that should be locally ...
user2190492's user avatar
1 vote
0 answers
142 views

I wrote simple program to test debug macros, but it gives me compilation error Program: #include <Arduino.h> #define DEBUG #ifdef DEBUG #define DPRINT(...) Serial.print(__VA_ARGS__) #...
MrNams's user avatar
  • 129
1 vote
0 answers
67 views

The setup includes an WEMOS/ESP8266 R1 mini compatible board, a DHT11, a photo resistor and a magnetic reed. The libs used are: #include <ESP8266WiFi.h> #include <PubSubClient.h> #include &...
thermike's user avatar
1 vote
0 answers
120 views

I am trying to connect esp8266-12f to aws iot core following this tutorial. Below is my code. main.cpp #include <Arduino.h> #include <ESP8266WiFi.h> #include "config.h" #include &...
Jess's user avatar
  • 11
3 votes
1 answer
1k views

I am getting a json object from aws iot MQTT. Assuming that json from aws is {status:opened}. Here is my code. #include <ArduinoJson.h> void messageHandler(char *topic, byte *payload, unsigned ...
Jess's user avatar
  • 53
1 vote
0 answers
449 views

I would like to connect ESP8266 with Azure IoT Hub Device via X509 certificate. Currently, I can connect using the symmetric key connection to my device, but I have devices that I want to authenticate ...
VitoCK's user avatar
  • 111
0 votes
0 answers
121 views

I am trying to connect to AWS IoT through the Arduino Portenta H7 and I am following this blog (https://create.arduino.cc/projecthub/Arduino_Genuino/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-...
Electric Dragon's user avatar
1 vote
0 answers
844 views

I'm trying to build a device for my startup IoT-related, using an A7672S. Here is the code: mySerial.println("AT+HTTPINIT"; checkresponse("OK\r\n"); mySerial.println("AT+...
narendok's user avatar
0 votes
1 answer
2k views

error: C:\Users\mrtas\Desktop\sketch_may23a\sketch_may23a.ino: In function 'void setup()': C:\Users\mrtas\Desktop\sketch_may23a\sketch_may23a.ino:41:24: warning: ISO C++ forbids converting a string ...
tasos's user avatar
  • 21
2 votes
0 answers
166 views

I am looking for a working example of an ESP32 sending telemetry data to Azure IoT hub. I find nothing working around the internet: below is the code I am trying to make it working. As you can see in ...
Stéphane de Luca's user avatar
2 votes
5 answers
3k views

I have a Teensy 4.1 with ethernet, but I have other networked MCUs like a D1 mini, various ESP8266s and Arduino ethernet shields. My question is: how I can make better looking web pages on these ...
j0h's user avatar
  • 902
2 votes
0 answers
562 views

Im working with node mcu ESP 8266 and trying to make it a webserver but keep encountering this problem. #include<ESP8266WiFi.h> WiFiClient client; WiFiServer server(80); void ...
Stars and planet's user avatar
1 vote
2 answers
427 views

I have a cheap wireless doorbell. My plan is to include an ESP8266 and power the doorbell from the microcontroller 3.3V output as the doorbell also runs on 3V I specifically chose a model with a LED, ...
Will777's user avatar
  • 113
1 vote
0 answers
96 views

I am trying to implement websockets for MKR1500 and I am having trouble finding a perfect example to implement it. Can someone guide me to an example that works with MKR1500?
Dave's user avatar
  • 69
1 vote
1 answer
145 views

I am using a MKR1500 with an Arduino SIM. I am able to upload the code on the device using the web editor. But when once I am done uploading the code, the device shows status offline and I am unable ...
Dave's user avatar
  • 69
1 vote
0 answers
98 views

I am working on Home automation project and I am stuck somewhere on connecting my smart switch board to internet through my home WIFI. Actually I want to connect my ESP module with my home Wi-Fi ...
Gone Lastvirus's user avatar
2 votes
0 answers
1k views

I have 3 nodemcu's(ESP32) each connected with a sensor, from which I get data and send it to aws IoT-core. How can I send all 3 sensor's data by a single MQTT subscription? The below code is for a ...
Shridatha Hegde's user avatar
3 votes
1 answer
3k views

For a project I am working on, I need to connect my ESP32 board to another server via MQTT protocol. I am using the Mosquitto MQTT Broker and it is presently on my laptop. Following is the test code I ...
P_K's user avatar
  • 57
0 votes
1 answer
293 views

I'm trying to turn ON/OFF a DC motor from Arduino Iot Cloud. I have to turn it ON/OFF physically and through the cloud, physically it works well but from the cloud it does nothing. I'm using an ...
Karen Baeza Domínguez's user avatar
1 vote
1 answer
569 views

I’m starting on a project about monitoring the soil in the agriculture field and also to visualise the data remotely. The aim of this project is collect the atmospheric data as well as the soil ...
Huy's user avatar
  • 11
1 vote
0 answers
202 views

I am trying to control esp8266 esp 01 with Alexa This is my code: #include <Arduino.h> #include <ESP8266WiFi.h> #include "fauxmoESP.h" #define ssid "admin" #define ...
S.K.G Ezhil's user avatar
0 votes
1 answer
81 views

For the below code snippet const char* fr_fbdb(char tag[30]) // fn for retrieving data { char full_path[120]; const char *_dt ; strcpy(full_path , base_path); strcat(full_path , tag); ...
Somasundharam Sampath's user avatar
-1 votes
1 answer
1k views

I have a mobile app (done using MIT App Inventor) storing some values to a Firebase database. App inventor stores all the values as strings (i.e. with quotes, and strings have quotes enclosed within ...
Somasundharam Sampath's user avatar
1 vote
0 answers
49 views

I tried to send random data to MQTT but it's not working and I get: { "m2m:rsp" : { "rsc" : 4004, "rqi" : "123456", "pc" : "Resource not found", "to" : "5a185cedc6ad749b:...
daffa faiz's user avatar
0 votes
1 answer
66 views

Just starting to learn about Arduino and IoT. I'd like to know what the Arduino hardware options are to try the following: Use FreeRTOS as SO WiFi and BLE connectivity Solderless board Test OTA ...
Alexandre's user avatar
1 vote
1 answer
192 views

I have a project where I want to remotely turn on and off a relay using an Arduino,(ESP8266) over the internet. I have a remote web server that hosts my existing hobby website, cPanel hosted by ...
edgar_wideman's user avatar
1 vote
1 answer
159 views

I have a SIM900A GSM Module hooked onto an Arduino Uno board. The Arduino is connected to a MPU6050 Accelerometer which is constantly monitoring data at 1 second interval. I am trying to transmit the ...
Tamoghna Bhattacharya's user avatar
1 vote
3 answers
174 views

I am working with some sensors and sending data to a public web server via http, I was thinking this server can be possibly used by more people to send their data and server displays a chart. I was ...
adrianTNT's user avatar
  • 252
1 vote
1 answer
928 views

I have an Arduino Nano 33 IOT and it uses BLE. I want it to talk to my Pi 3B+ and send all of its sensor data. I cannot figure out a way to do it using Python for the Pi and ArduinoBLE library for my ...
DragonflyRobotics's user avatar
1 vote
0 answers
39 views

How can I use Arduino Uno Analog Pins as Digital pins, So that I can Attach more components like sensors to the Arduino? My 13 pins are preoccupied and I want more.
Amit Nikhade's user avatar
1 vote
1 answer
999 views

Below is the code that I have done on Lolin Wemos D1 R2 and mini it works fine but it throws exceptions every time, I tried understanding my problem by reading this: NodeMCU 1.0 - Exception 9 `Fatal ...
Somasundharam Sampath's user avatar
1 vote
0 answers
58 views

I want to write below code but I don't know where I doing wrong, so please help me solve this issue. Serially read some text like number then I want to serially parse integer value into some variable ...
Mehul's user avatar
  • 31
1 vote
0 answers
166 views

sim.println("AT+CMGS=\"+91xxxxxxxxxx\"\r"); I don't want to write this. I want to write mobile number on serial monitor in Arduino and on that number, i want to send message. how ...
Mehul's user avatar
  • 31
1 vote
0 answers
375 views

I am trying to search for anything to send my sensor data from Arduino + GSM SIM900A to a cloud server, preferably firebase. Does anyone know how can I achieve this operation to firebase or any other ...
Prateek Goyal's user avatar
0 votes
2 answers
1k views

I am new to the ESP32 series of boards.I powered up my ESP32 Cam board using the Vcc pin supplying about 7.4V using two 18650 batteries only to find out later that was a completely incorrect way to ...
AfiJaabb's user avatar
  • 219
-1 votes
1 answer
1k views

Good Morning I'm trying to integrate with Azure IoT with Arduino Mega 2560. I imported the AzureIoTHub and AzureIoTUtility lib. I just created this part of the code #include <AzureIoTHub.h> ...
Carlos Eduardo's user avatar
0 votes
1 answer
81 views

In most 12v CCTV power supplies, each power cable is behind a glass fuse. I haven't seen fuses or circuit breakers used when distributing 5v power used in IoT projects. Is there a reason overcurrent ...
zwiebelspaetzle's user avatar
1 vote
1 answer
1k views

I'm using a Relay Channel and NodeMCU(8266-WIFI). When i trigger the connection, LED Turns ON in Node MCU But the Relay connection is not working. I'm not sure what is the issue, Please help to fix it....
GK_'s user avatar
  • 111
0 votes
1 answer
3k views

i am using esp32 as a client and using following example. So here i am getting header response only that is 200. I am not getting any response after that. here is the example #include <WiFi.h> #...
dev_eng's user avatar
0 votes
0 answers
76 views

Im wanting to automate the lighting in my house, e.g. turn on lights when entering a room without having to fumble around with my phone or switches. I have looked at audio, PIR and radar sensors, are ...
Tanenthor's user avatar
  • 141
0 votes
1 answer
954 views

I need to know the IP address of ESP32 on the local network(without printing ip on serial monitor ). The idea is to do mDNS or UDP broadcast to send the IP to the android application. The app will ...
shivam's user avatar
  • 1
1 vote
0 answers
240 views

For Arduino Nano 33 IoT, I want to turn off everything except Bluetooth and Wireless since I don't use them. My question please: Can I switch off / deactivate the IMU sensors completely? If yes, How ...
Mike's user avatar
  • 113
3 votes
0 answers
2k views

I have found many projects involving esp32cam, but in all projects video is being seen on local server only.For its of no use.As for a home security project user can view the video at remote location ...
user65895's user avatar