We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a8a035 commit 4c693bbCopy full SHA for 4c693bb
src/main.ino
@@ -16,9 +16,10 @@ const char MQTT_PUB_TOPIC[] = "$aws/things/" THINGNAME "/shadow/pub";
16
17
uint8_t DST = 0;
18
WiFiClientSecure net;
19
-SoftwareSerial UnoBoard(10, 11); // make RX Arduino line is pin 2, make TX Arduino line is pin 3.
20
- // This means that you need to connect the TX line from the esp to the Arduino's pin 2
21
- // and the RX line from the esp to the Arduino's pin 3
+
+// ESP TX => Uno Pin 2 (2 in binary is 10)
+// ESP RX => Uno Pin 3 (3 in binary is 11)
22
+SoftwareSerial UnoBoard(10, 11);
23
24
BearSSL::X509List cert(cacert);
25
BearSSL::X509List client_crt(client_cert);
0 commit comments