I am compiling and trying to configure my Arduino board for the first time. I am getting a compilation error message... what can I do to solve this problem?
Can you share your code and the specific error? I'm pretty new to Arduino also, but I'm sure that would help.
this is my sketch link.. can you view my sketch ?
Looks like just some general syntax errors!
In thingProperties.h:
const char THING_ID = "60456d45-7b7a-4359-aaec-40fd94292587";
Should be...
const char THING_ID[] = "60456d45-7b7a-4359-aaec-40fd94292587";
And, in Temperature_And_Humidity_Monitor, you forgot the semicolon.
DHT dht(DHTpin,DHTTYPE)
Should be...
DHT dht(DHTpin,DHTTYPE);
Whenever you have issues with verification, you can drag up the output and take a look at the errors closely. Does this work?
Hi.. Yah it worked..
Thank you so much for your help..
The code is fine now and these codes are synched to the board as well.. but I am not getting the output in my dashboard.. is there any specific reason for that ?
Well, I personally haven't used Arduino Cloud before, so I'm not sure - all I could suggest is to change the Serial.print() and Serial.println() to a value you know should appear - like Serial.println("Hello World!") or something.
Make sure your baud rates match too! I've had that issue with my own project recently.
actually this is not Arduino board.. this is nodeMCU board.. do you know any solution for this ? I still cannot get the output in the dashboard..
@ashfarq96, your topic has been moved to a more suitable location on the forum. Installation and Troubleshooting is not for problems with (nor for advise on) your project See About the Installation & Troubleshooting category.
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.