Published © GPL3+

Posting Arduino Serial data to twitter using Node-Red

Here we will learn how to build a simple workflow with Node-Red to post the Serial output of Arduino to Twitter.

BeginnerProtip6,397
Posting Arduino Serial data to twitter using Node-Red

Things used in this project

Story

Read more

Code

Arduino code

Arduino
Please load this sketch to the Arduino
void setup() {
Serial.begin(9600);
}

void loop() {
delay(15000);
Serial.println("Test data from Node-red");
}

Credits

Comments