Skip to content

Instantly share code, notes, and snippets.

View VincentK16's full-sized avatar
:octocat:
Connect with me

Vincent Kok VincentK16

:octocat:
Connect with me
View GitHub Profile
@VincentK16
VincentK16 / NodeMCU_receive_from_Arduino_NANO.ino
Created July 11, 2021 12:24 — forked from ariffinzulkifli/NodeMCU_receive_from_Arduino_NANO.ino
Arduino sketch for NodeMCU to receive incoming data from Arduino NANO using SoftwareSerial library
#include <SoftwareSerial.h>
SoftwareSerial softSerial(D2, D3); // (RX, TX)
SimpleDHT11 dht11(5);
void setup() {
softSerial.begin(9600);
}