Hi All,
Recently downloaded the Arduino Sketch to send data to Database. At compilation got following error:
Send_Data_Database_Arduino_IDE:76:3: error: missing terminating ” character
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
^
it looks to be exact copy of the original .ino file. Could you please look what could cause the error?
Thanks a lot!
Tamás
Hi.
You are right.
There is a typo in the code.
In line 26 remove one ”
At the moment, it looks like this:
#define WIFI_SSID "REPLACE_WITH_YOUR_SSID""
But, it should be
#define WIFI_SSID "REPLACE_WITH_YOUR_SSID"
We’ll update the source code tomorrow.
Thanks for pointing that out.
Thank you for your patience.
Regards,
Sara
Thanks Sara,
was a late night work, even myself should have catched this typo.
Anyhow still not working properly. After successful upload of the code to NodeMCU-32S board, later connected BME280 sensor board (like yours) I got the following lines via Serial Monitor:
12:50:43.263 -> rst:0x10 (RTCWDT_RTC_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
12:50:43.263 -> flash read err, 1000
12:50:43.299 -> ets_main.c 371
12:50:43.658 -> ets Jun 8 2016 00:22:57
Is that maybe incorrect board selection or something else please?
Thanks,
Tamás