Sending Data with ESP8266 to ADAFRUITIO and sending that data to Thunkable

I want to send random numbers from 1 to 100 to adafruit io cloud with node mcu v3 (esp8266). Then i want to send that exact same data realtime to an app that is made by me in Thunkable app Builder. Feel free to ask anything if u find some doubts.

the current code am using is

#include <AdafruitIO.h>
#include <AdafruitIO_WiFi.h>

#define IO_USERNAME    "xxxxxxxxx"
#define IO_KEY        "xxxxxxxxxxxx"

AdafruitIO_WiFi io(IO_USERNAME, IO_KEY, "Aeroponics Stand 1", "1234567890");
AdafruitIO_Feed *humidity = io.feed("humidity");

void setup() {
  Serial.begin(9600);
  io.connect();
}

void loop() {
  io.run();
  int randomHumidity = random(1, 101); // Generate random number between 1 and 100
  humidity->save(randomHumidity); // Send to Adafruit IO
  delay(1000); // Wait for 1 second
}

i got this from an ai called blackbox.ai
please help me fast because the deadline for the project is tomorrow 28/1/25

i have done till sending data to adafruitio now i wanna send that to thunkable app i made

It appears you will miss the assignment date as you waited to long to do the project. Before I can help I need to know what hardware items you have, links to there technical information and an annotated schematic showing how all of this is connected together.

thanks for showing up to help me. I have node mcu v3 or u could call it as esp8266 wifi module. then a cable to connect to pc and a pc. these all i have. And if u want to know further i have an adafruit io account and half made app.

Yesterday i tried smth and step 1 is completed means now i could send data to adafruit io but now i want to send that data fromadafruit io to thunkable

Have u got any answers?

Sorry I have no idea what that is? How do you communicate with it?

no problem i did it myslef

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.