Now that I have my SK working I want to explore the project some more.
Can anyone tell me what the arduino is expecting to see in the wifi settings part of constants.h
//Espacio reservado para los SSID y PASS
#define DEFAULT_ADDR_SSID 200
#define DEFAULT_ADDR_PASS 520
#define DEFAULT_ADDR_AUTH 840
#define DEFAULT_ADDR_ANTENNA 1160
I guess that these settings could do with explanation too, so that we set them in the correct format
char* WEB[8]={
“data.smartcitizen.me”,
"PUT /add HTTP/1.1
",
"Host: data.smartcitizen.me
",
"User-Agent: SmartCitizen
",
"X-SmartCitizenMacADDR: ",
"X-SmartCitizenApiKey: ",
"X-SmartCitizenVersion: ",
"X-SmartCitizenData: "};
I want to set these manually rather than using the website.
Thanks