aml_sensorbox_tmpNoise.ino 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817
  1. /*
  2. * AML TMP+NOISE
  3. *
  4. * VERSION: 1.03
  5. *
  6. * The Sensorbox measures Temperature and Noise-Level and sends this information with the GPS-position to a webservice.
  7. *
  8. * ************************************************
  9. * GENERAL INFO AND COMPONENTS
  10. *
  11. * Measuring Battery: https://learn.adafruit.com/adafruit-feather-32u4-fona/power-management
  12. * Gettin Noise: http://arduinolearning.com/code/arduino-and-max4466-electret-module-example.php
  13. * Getting GSM Location: https://www.instructables.com/id/How-to-make-a-Mobile-Cellular-Location-Logger-with/
  14. *
  15. * Tiny GPS++ Library: http://arduiniana.org/libraries/tinygpsplus/
  16. *
  17. *
  18. * Battery saving:
  19. *
  20. * GPS Board: - Use EN Pin to turn of the board when not needed (https://learn.adafruit.com/adafruit-ultimate-gps/overview)
  21. * - EN soll laut der Quelle auf GND gesetzt werden. Es dauert dann aber länger bis wieder ein Fix gefunden wurde.
  22. *
  23. *
  24. * Feather FONA: - Cut the key trac on the bottom of the board (https://learn.adafruit.com/adafruit-feather-32u4-fona/power-management)
  25. * - If you want to depower the cell module, cut the KEY trace on the bottom of the board, wire KEY to an unused pad,
  26. * and toggle the pin low for 100ms to completely turn on/off the module.
  27. * - https://arduino.stackexchange.com/questions/54001/adafruit-feather-32u4-fona-key-pin
  28. * cut the trace and wire it to a micro controller pin
  29. * - Key - this is by default tied to ground, cut the trace on the bottom and wire to a microcontroller pin to manually turn the module on and off.
  30. * (Pulse low for a few seconds to change from on to off) This is the only way to truly disable the cellular module.
  31. *
  32. *************************************************
  33. * TODOS & BUGS:
  34. * - Die Ladeanzeige über die LED funktioniert nicht immer korrekt. Besonders gelbes Blinken (Aufladen) ist davon betroffen.
  35. *
  36. ************************************************
  37. *
  38. * IMPORTANT INFO:
  39. * - Be sure to use the correct Token and device number before uplading the code
  40. * - For A1 Sim-Cards the APN needs to be set in initFONA(). Uncomment the line if other SIM-Card is used or set the correct APN
  41. *
  42. * SOURCE TOKENS:
  43. * BOX 1: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjcsImlhdCI6MTYwMDg0NjI2MH0.YKzbg-8_hFuw1-W0Hqa5eLZAncfqlqT2rf2c95Abi7k
  44. * BOX 2: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjE1LCJpYXQiOjE2MDA4NDY3MTl9.Jk1CXJXeB6cm4T0QARoj_1BtxvsZF3jl5UhvPRMEBvQ
  45. * BOX 3: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEwLCJpYXQiOjE2MDA4NDYyMDZ9.rrA8lZ18SThb4L8mf18Krz7dK5ioCwqWd10BstT9GnE
  46. * BOX 4: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjE0LCJpYXQiOjE2MDA4NDY0MDR9.0BPUK7NVTlqi7i9QFx9kcVY55jsn0qskPWDL1PKyKec
  47. * BOX 5: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlhdCI6MTYwMDg0NjY2NH0.d5xvkTVDcHJl-K6KkohIWcUC5XcYNRZ_wzSLMvqAyvw
  48. * BOX 6: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjMsImlhdCI6MTYwMDg0NTg4M30.OjsoqjcAMhCh9WLkBpBtXyOlOL25mBXSxT1Uy3tM01M
  49. * BOX 7: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjUsImlhdCI6MTYwMDg0NjUwMH0.XqBhCwt9V6YTNE8fwfxrXahBxGGNHgLkXgO3XaqDcwI
  50. * BOX 8: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjExLCJpYXQiOjE2MDA4NDYxMjd9.uJPST-APKEpsS-CIimNh3ePNce2PaabuX5c3HNnVsfo
  51. * BOX 9: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjE2LCJpYXQiOjE2MTA3MTg5MjF9.2lk9xY4Gy0CR65V9giXPHrDR7Eei-O3R5sS1oD6hzsM
  52. *
  53. *
  54. ************************************************
  55. *
  56. */
  57. #include <Adafruit_NeoPixel.h>
  58. #include "Adafruit_FONA.h"
  59. #include <SoftwareSerial.h>
  60. #include <TinyGPS++.h>
  61. #include <AES.h>
  62. #define LEDPIN 13
  63. #define ANALOG_TEMP_PIN A0
  64. #define ANALOG_NOISE_PIN A1
  65. #define KEYPIN 12
  66. #define GPSENABLE 11
  67. #define FONA_RX 9
  68. #define FONA_TX 8
  69. #define FONA_RST 4
  70. #define FONA_RI 7
  71. #define aref_voltage 3.3
  72. Adafruit_NeoPixel pixel(1, LEDPIN, NEO_GRB + NEO_KHZ800);
  73. //Name of this Box
  74. String boxID = "BOX 009";
  75. //GSM
  76. SoftwareSerial fonaSS = SoftwareSerial(FONA_TX, FONA_RX);
  77. SoftwareSerial *fonaSerial = &fonaSS;
  78. Adafruit_FONA fona = Adafruit_FONA(FONA_RST);
  79. uint8_t type;
  80. //char URL[] = "http://airquality.media.tuwien.ac.at:10005/measurements";
  81. char URL[] = "http://aml.media.tuwien.ac.at:11312/api/sensordata/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjE2LCJpYXQiOjE2MTA3MTg5MjF9.2lk9xY4Gy0CR65V9giXPHrDR7Eei-O3R5sS1oD6hzsM";
  82. char URL2[] = "http://www.mobillab.wien/sensorbox/write/";
  83. //char URL[] = "www.kunstmedienkultur.com/sensorbox/";
  84. unsigned long ATtimeOut = 10000; // How long we will give an AT command to complete
  85. boolean initFONAagain = false;
  86. //GPS
  87. static const uint32_t GPSBaud = 9600;
  88. TinyGPSPlus gps;
  89. boolean encodeGPSAgain = false;
  90. //Timing
  91. unsigned long currentMillis =0;
  92. unsigned long singleBlinkDuration = 500; //Duration for 1 Blink
  93. unsigned long lastSingleBlinkStart = 0;
  94. unsigned long blinkSequenceDuration = 4200; //Duration for an blink sequence (not sure if needed)
  95. unsigned long lastBlinkSequenceStart = 0;
  96. unsigned long blinkPauseDuration = 200; //Duration for blink pause
  97. unsigned long lastBlinkPauseStart = 0;
  98. unsigned long blinkInterval = 10000; //Interval to blink
  99. unsigned long checkBatInterval = 15000; //Interval for Checking the Battery -> long interval: every 10 Minutes (if everthing is ok) 600000; short interval: every 15 seconds (150000)
  100. unsigned long lastBatCheck = 0;
  101. unsigned long sendToWebInterval = 1200000; //20 min = 1200000; 5min = 300000; //Interval for sending data to webservice
  102. unsigned long lastSendToWeb = 0;
  103. unsigned long pullLowDuration = 2000; //3 seconds for pulling KEYPIN low to turn off/on Fona
  104. unsigned long GPSUpdateInterval = 21600000; // 6hrs
  105. unsigned long lastGPSupdate = 0;
  106. unsigned long GPSUpdateTimeout = 180000; //Time for trying to find a fix! If over, then no fix found (indoor).
  107. unsigned long noiseSameplingInterval = 2000; //Start sampling
  108. unsigned long lastNoiseSampling = 0;
  109. //Temp
  110. byte tempPin = A0;
  111. float temperature;
  112. //Noise
  113. const int sampleWindow = 500; // Sample window width in mS (50 mS = 20Hz)
  114. unsigned int sample;
  115. int noiseAVG = 0;
  116. const int numReadings = 20; // change for higher smoothing
  117. int readings[numReadings]; // the readings from the analog input
  118. int readIndex = 0; // the index of the current reading
  119. int total = 0; // the running total
  120. double boxDB = 115;
  121. //Status Flags
  122. byte statusInfo[] = {
  123. 1, //Value = 1 - status everything ok (white)
  124. 0, //Value = 1 - no Position (blue)
  125. 0, //Value = 1 - no connection to server (GSM) (pink)
  126. 0, //Value = 1 - low battery (red)
  127. 0, //Value = 1 - is charging (yellow)
  128. 0, //Value = 1 - battery fully charged (green)
  129. };
  130. uint16_t lastBatteryLevel = 0;
  131. uint16_t lastMilliVolts = 0;
  132. boolean lastMessageSent = true;
  133. //encryption
  134. AES aes;
  135. byte *key = (unsigned char*)"0123491889010123";
  136. void setup() {
  137. //while (!Serial);
  138. Serial.begin(115200);
  139. Serial1.begin(GPSBaud);
  140. //Inbit LED and turn on pixel
  141. pixel.begin();
  142. pixel.setBrightness(30);
  143. pixel.setPixelColor(0, pixel.Color(255, 255, 255)); //light up while startup
  144. pixel.show();
  145. analogReference(EXTERNAL); //sets analog reference voltage to AREF pin
  146. // initialize the readings for Noise to 0:
  147. for (int thisReading = 0; thisReading < numReadings; thisReading++) {
  148. readings[thisReading] = 0;
  149. }
  150. //Pins to turn on and off gsm and gps
  151. pinMode(KEYPIN, OUTPUT);
  152. digitalWrite(KEYPIN, HIGH);
  153. pinMode(GPSENABLE, OUTPUT);
  154. digitalWrite(GPSENABLE, LOW);
  155. encodeGPSAgain = true;
  156. /*
  157. //Get initial position
  158. lastGPSupdate = millis();
  159. encodeGPS();
  160. //Switch FONA on to initially check battery status
  161. initFONA();
  162. if(initFONAagain) initFONA(); //Try again. In case FONA was turned off in 1st attempt
  163. lastMilliVolts = getBatteryVoltage();
  164. switchFONA();
  165. */
  166. delay(900000); //15minutes to charge the battery before anything else is done
  167. //Turn off pixel
  168. pixel.setPixelColor(0, pixel.Color(0, 0, 0));
  169. pixel.show();
  170. }
  171. void loop() {
  172. blinkStatus(); //After the last message led is constantly red
  173. if(!lastMessageSent) { //Turn off everything thats not needed
  174. if(encodeGPSAgain) encodeGPS(); //Encoding again if no valid or updated signal found; no rekursion here
  175. if(initFONAagain) initFONA(); //Init FONA again if FONA was off while first attempt
  176. //Sampling Noise in a specific interval.
  177. currentMillis = millis();
  178. if (currentMillis - lastNoiseSampling >= noiseSameplingInterval) {
  179. lastNoiseSampling = currentMillis;
  180. noiseAVG = getNoise();
  181. //Serial.println("Info: Noise: " + String(noiseAVG) + "dB");
  182. }
  183. //Getting GPS data in a specific interval.
  184. currentMillis = millis();
  185. if (currentMillis - lastGPSupdate >= GPSUpdateInterval) {
  186. //Serial.println("Checking GPS");
  187. lastGPSupdate = currentMillis;
  188. encodeGPS();
  189. }
  190. }
  191. //Send to Web in a specific interval
  192. currentMillis = millis();
  193. if ((currentMillis - lastSendToWeb >= sendToWebInterval)) {
  194. lastSendToWeb = currentMillis;
  195. //Send to Webservice, if battery is good enough and GPS was once valid
  196. //INFO: Checking for valid GPS Signal only makes sense for static use on one place.
  197. // For dynamic use with changing places the check should use gps.location.isUpdated()
  198. if(gps.location.isValid() && (lastMilliVolts >= 3500) && !lastMessageSent) {
  199. switchFONA();
  200. initFONA();
  201. lastMilliVolts = getBatteryVoltage();
  202. //Serial.println("INFO: Sending to URL");
  203. sendToWebService(getGeoJSONDataString(), URL);
  204. //(Serial.println("INFO: Sending to URL2");
  205. //sendToWebService(getGeoJSONDataString(), URL2);
  206. switchFONA();
  207. } else { //Check Battery
  208. switchFONA();
  209. initFONA();
  210. lastMilliVolts = getBatteryVoltage();
  211. switchFONA();
  212. }
  213. //SERVICE MESSAGES
  214. //Power too low, but last message not yet sent -> send last message; BUT make sure, that mV is plausible -> >500
  215. if ((lastMilliVolts < 3480) && (lastMilliVolts > 500) && !lastMessageSent) {
  216. switchFONA();
  217. initFONA();
  218. //sendToWebService(getServiceJSONDataString(" LAST MESSAGE - NO BATTERY"));
  219. sendToWebService(boxID + "Bat: " + lastMilliVolts + "mV ------- LAST MESSAGE - NO BATTERY", URL2);
  220. lastMessageSent = true; //set to false; needed if battery is charging and sensor is sending again
  221. switchFONA();
  222. } else if((lastMilliVolts > 3550) && lastMessageSent) { //Power sufficient again (after charging) -> back to work msg (just a service msg) (3520mV to avoid pending between last msg and back to work msg)
  223. switchFONA();
  224. initFONA();
  225. sendToWebService(boxID + "Bat: " + lastMilliVolts + "mV ------- BACK TO WORK", URL2);
  226. //sendToWebService(getGeoJSONDataString(), URL);
  227. lastMessageSent = false; //set to false; needed if battery is charging and sensor is sending again
  228. switchFONA();
  229. }
  230. //Try to get a valid GPS location
  231. if(!gps.location.isValid() && (lastMilliVolts >= 3550) && !lastMessageSent) {
  232. switchFONA();
  233. initFONA();
  234. sendToWebService(boxID + "Bat: " + lastMilliVolts + "mV ------- NO GPS", URL2); //TODO: Change to service message
  235. //sendToWebService(getGeoJSONDataString(), URL);
  236. switchFONA();
  237. GPSUpdateInterval = sendToWebInterval;
  238. //Serial.println("INFO: NO GPS (sendtowebservice; 258)");
  239. }
  240. }
  241. }
  242. void initFONA() {
  243. //Serial.println("INFO: Starting FONA init");
  244. fonaSerial->begin(4800);
  245. if (!fona.begin(*fonaSerial)) {
  246. //Serial.println(F("INIT - Couldn't find FONA"));
  247. switchFONA(); //In case Phona is turned off (happens wenn battery runs completely out and is charged up again.
  248. initFONAagain = true; //after switching ON try to init again
  249. //Serial.println("ERROR: init FONA again; FONA not found");
  250. statusInfo[2] = 1;
  251. // Try to turn it on
  252. //turnOn();
  253. if (!fona.begin(*fonaSerial)) {
  254. while (1)
  255. ;
  256. }
  257. } else {
  258. statusInfo[2] = 0;
  259. initFONAagain = false;
  260. }
  261. type = fona.type();
  262. // Set APN (needed for A1 Sim cards) -> Uncomment if other SIM-Cards are in use
  263. fona.setGPRSNetworkSettings(F("A1.net"), F("ppp@a1plus.at"), F("ppp"));
  264. // turn GPRS on
  265. delay(10000);
  266. if (!fona.enableGPRS(true)) {
  267. //Serial.println(F("INIT - Failed to turn on GPRS"));
  268. statusInfo[2] = 1;
  269. //Serial.println("ERROR: init FONA again; no GPRS");
  270. initFONAagain = true; //Try to init FONA again in the next loop
  271. } else {
  272. statusInfo[2] = 0;
  273. initFONAagain = false;
  274. }
  275. /* NOT WORKING: Sending timestamp couses HTTP POST ERROR
  276. // enable NTP time sync
  277. fona.enableNTPTimeSync(true, F("pool.ntp.org"));
  278. //Serial.println(F("INFO: Failed to enable NTP time sync"));
  279. */
  280. //turnOnOffFona();
  281. }
  282. void switchFONA() {
  283. //Switching FONA on and off through pulling the KEYPIN LOW for a while
  284. //Each pull to LOW switches the FONA, either on or off (depending on the current state)
  285. //Serial.println("INFO: Switching FONA");
  286. unsigned long startMillis = millis();
  287. while (millis() - startMillis < pullLowDuration) {
  288. digitalWrite (KEYPIN, LOW);
  289. }
  290. digitalWrite(KEYPIN, HIGH);
  291. }
  292. void sendToWebService(String message, char URL[]) {
  293. //Serial.println("INFO - Start sending to Webservice");
  294. uint16_t statuscode;
  295. int16_t length;
  296. //String datastring = getGeoJSON();
  297. //String datastring = getSimpleDataString(); //For readable output on Server
  298. String datastring = message;
  299. //******with encryption start******
  300. /*
  301. byte *key = (unsigned char*)"0123491889010123"; //needs to be randomized!!!!
  302. unsigned long long int my_iv = 36712162; //needs to be randomized!!!!
  303. byte plain[datastring.length()];
  304. datastring.getBytes(plain, datastring.length());
  305. int plainLength = sizeof(plain)-1; // don't count the trailing /0 of the string !
  306. int padedLength = plainLength + N_BLOCK - plainLength % N_BLOCK;
  307. aes.iv_inc();
  308. byte iv [N_BLOCK] ;
  309. byte plain_p[padedLength];
  310. byte cipher [padedLength] ;
  311. aes.set_IV(my_iv);
  312. aes.get_IV(iv);
  313. aes.do_aes_encrypt(plain,plainLength,cipher,key,128,iv);
  314. flushSerial();
  315. bool success = true;
  316. if (!fona.HTTP_POST_start(URL, F("text/plain"), (uint8_t *) plain, strlen(plain), &statuscode, (uint16_t *)&length)) {
  317. //Serial.println("HTTP POST FAILED!");
  318. statusInfo[2] = 1;
  319. } else {
  320. statusInfo[2] = 0;
  321. }
  322. */
  323. //******with encryption end******
  324. //******without encryption start******
  325. unsigned int len = datastring.length() + 1;
  326. char data[len];
  327. datastring.toCharArray(data, len);
  328. flushSerial();
  329. //char myData[] = "{\"simple\":\"json\"}";
  330. bool success = true;
  331. String test = "fona";
  332. unsigned int lenToken = test.length() + 1;
  333. char tokenData[lenToken];
  334. test.toCharArray(tokenData, lenToken);
  335. if (!fona.HTTP_POST_start(URL, F("text/plain"), (uint8_t *) data, strlen(data), &statuscode, (uint16_t *)&length)) {
  336. statusInfo[2] = 1; //HTTP Post failed
  337. //Serial.println("ERROR: HTTP post failed");
  338. //pixel.setPixelColor(0, pixel.Color(255 ,255, 255)); //white, just for testing
  339. //pixel.show();
  340. } else {
  341. statusInfo[2] = 0;
  342. }
  343. //******without encryption end******
  344. fona.HTTP_POST_end();
  345. //Serial.println("INFO - End sending to Webservice");
  346. }
  347. String getGeoJSONDataString() {
  348. /* GeoJSON should look like this:
  349. {
  350. "type": "Feature",
  351. "geometry": {
  352. "type": "Point",
  353. "coordinates": [100.0, 0.0]
  354. },
  355. "properties": {
  356. "Temperature": [24.5, "°C"],
  357. "Noise": [100.0, "dB"],
  358. "timestamp": "123456723495",
  359. }
  360. }
  361. */
  362. String json = "{\"type\":\"Feature\",\"geometry\":{\"type\": \"Point\", \"coordinates\":[" +
  363. floatToString(gps.location.lng()) + ", " + floatToString(gps.location.lat()) + "]}, \"properties\": {\"Temperature\":[" +
  364. String(getTemperature()) + ", \"°C\"], \"Noise\":[" + String(noiseAVG) + ", \"dB\"], \"timestamp\":\"" + getTimeString() + "\"}}";
  365. return json;
  366. }
  367. String getServiceJSONDataString(uint16_t batLevel, String message) {
  368. /* Service JSON should Look like this
  369. {
  370. "battery": 17.4,
  371. "status_message": "failed to get GPS fix"
  372. }
  373. */
  374. String json = "{\"battery\": " + String(batLevel) +
  375. ", \"status_message\": \"" + message + "\"}";
  376. return json;
  377. }
  378. String getTimeString() {
  379. /* NOT WORKING: Sending timestamp couses HTTP POST ERROR
  380. *
  381. *
  382. // read the time
  383. char timeBuffer[23];
  384. fona.getTime(timeBuffer, 23); // make sure replybuffer is at least 23 bytes!
  385. //Format timebuffer: YY/MM/DD,HH:MM+00
  386. //Serial.println("INFO: Time: " + String(timeBuffer));
  387. String timestamp = timeBuffer;
  388. */
  389. return "";
  390. }
  391. String getSimpleDataString() {
  392. return ("GPS: " + floatToString(gps.location.lng()) + ", " + floatToString(gps.location.lat()) +
  393. "; Temperature: " + String(getTemperature()) + " C; Noise: " + String(noiseAVG) + " DB; Battery: " + String(getBatteryLevel()) + " %; Voltage: " + String(getBatteryVoltage()) +" mV; " + boxID);
  394. }
  395. String floatToString(float val) {
  396. int i;
  397. char buff[10];
  398. String valueString = "";
  399. dtostrf(val, 4, 6, buff); //4 is mininum width, 6 is precision
  400. valueString += buff;
  401. return valueString;
  402. }
  403. //////////// Get Sensor Data ///////////////////
  404. void encodeGPS(){
  405. //Serial.println("INFO: Turning on GPS module");
  406. digitalWrite(GPSENABLE, HIGH);
  407. unsigned long start = millis();
  408. // For one second we parse GPS data and report some key values
  409. for (start; millis() - start < 1000;)
  410. {
  411. while (Serial1.available())
  412. {
  413. char c = Serial1.read();
  414. //Serial.write(c); // uncomment this line if you want to see the GPS data flowing
  415. gps.encode(c); // Did a new valid sentence come in?
  416. }
  417. }
  418. //Serial.println();
  419. // DEBUGGING: Re-encoding for a certain time
  420. if(millis() - lastGPSupdate <= GPSUpdateTimeout) {
  421. //if we haven't seen lots of data in 5 seconds, something's wrong.
  422. if (start > 5000 && gps.charsProcessed() < 10) {
  423. //Serial.println("ERROR: Not getting any GPS data! Encoding again");
  424. encodeGPSAgain = true;
  425. //TODO: Turning Module OFF here?
  426. } else if(!gps.location.isValid()) { //also add timer for circumstances when there is definately no signal to find
  427. //Serial.println("ERROR: GPS Data not valid! Encoding again");
  428. encodeGPSAgain = true;
  429. GPSUpdateInterval = sendToWebInterval; //SendToWebinterval is usually shorter.
  430. } else if(!gps.location.isUpdated()) {
  431. //Serial.println("ERROR: GPS Data not updated! Encoding again");
  432. encodeGPSAgain = true;
  433. } else {
  434. //Serial.println("INFO: GPS: " + floatToString(gps.location.lat()) + ", " + floatToString(gps.location.lng()));
  435. //Serial.println("INFO: Turning off GPS-Module");
  436. digitalWrite(GPSENABLE, LOW); //turn gps module off
  437. encodeGPSAgain = false;
  438. GPSUpdateInterval = 21600000;
  439. statusInfo[1] = 0;
  440. }
  441. } else {
  442. //Serial.println("ERROR: Timeout - No GPS-Data");
  443. statusInfo[1] = 1;
  444. //TODO: Send Error Message to Server
  445. digitalWrite(GPSENABLE, LOW); //turn gps module off
  446. encodeGPSAgain = false;
  447. GPSUpdateInterval = sendToWebInterval;
  448. }
  449. }
  450. float getTemperature(){
  451. int pinReading = analogRead(ANALOG_TEMP_PIN);
  452. float voltage = pinReading * aref_voltage;
  453. voltage /= 1024.0;
  454. float temp = (voltage - 0.5) * 100;
  455. //Serial.println("Temperature: " + String(temp));
  456. //(((analogRead(ANALOG_TEMP_PIN) * 3.3)/1024.0) - 0.5) * 100;
  457. return temp;
  458. }
  459. //source: http://arduinolearning.com/code/arduino-and-max4466-electret-module-example.php
  460. float getNoiseReading(){
  461. unsigned long startMillis= millis(); // Start of sample window
  462. unsigned int peakToPeak = 0; // peak-to-peak level
  463. unsigned int signalMax = 0;
  464. unsigned int signalMin = 1024;
  465. while (millis() - startMillis < sampleWindow){
  466. sample = analogRead(ANALOG_NOISE_PIN);
  467. if (sample < 1024){ // toss out spurious readings
  468. if (sample > signalMax){
  469. signalMax = sample; // save just the max levels
  470. }
  471. else if (sample < signalMin){
  472. signalMin = sample; // save just the min levels
  473. }
  474. }
  475. }
  476. peakToPeak = signalMax - signalMin; // max - min = peak-peak amplitude
  477. return peakToPeak; //* 3.3) / 1024; // convert to volts
  478. }
  479. int getNoise(){
  480. // subtract the last reading:
  481. total = total - readings[readIndex];
  482. double noiseReading = getNoiseReading();
  483. // read from the sensor:
  484. // https://forum.arduino.cc/index.php?topic=318908.0
  485. // 80 = db on SPL-Meter, 120 = Noise from Noise Sensor at 80 db on the SPL-Meter
  486. //How to calibrate:
  487. //take the SPL-Meter and the Sensorbox
  488. //uncomment this:
  489. //Serial.println("Noise:");
  490. //Serial.println(noiseReading);
  491. //Serial.println("");
  492. //uncomment the seria println before the return
  493. //play a sound to reach 80 db on the SPL Meter
  494. // change boxDB on top to Value which is showing for the Sensorbox
  495. readings[readIndex] = (20 * log(noiseReading / boxDB) + 80);
  496. // add the reading to the total:
  497. total = total + readings[readIndex];
  498. // advance to the next position in the array:
  499. readIndex = readIndex + 1;
  500. // if we're at the end of the array...
  501. if (readIndex >= numReadings) {
  502. // ...wrap around to the beginning:
  503. readIndex = 0;
  504. }
  505. // calculate the average:
  506. //for calibration of Noise
  507. //Serial.println(total / numReadings);
  508. return (total / numReadings);
  509. // send it to the computer as ASCII digits
  510. }
  511. uint16_t getBatteryLevel() {
  512. uint16_t vbat;
  513. fona.getBattPercent(&vbat);
  514. lastBatteryLevel = vbat;
  515. //Serial.println("Battery Level: " + String(vbat));
  516. return vbat;
  517. }
  518. uint16_t getBatteryVoltage() {
  519. uint16_t vbat;
  520. //uint16_t batStat; //NOT WORKING
  521. fona.getBattVoltage(&vbat);
  522. //ATTENTION: This function doesn NOT work with public FONA Library.!!!!
  523. //Status: 0 = not charging; 1 = charging; 2 = finished charging
  524. //More Info in SIM800 Series AT Command Manual
  525. //NOT WORKING: getBattStatus always returns 0
  526. //fona.getBattStatus(&batStat);
  527. //Serial.println("Battery Status: " + String(batStat));
  528. //Serial.println("MilliVolts: " + String(vbat));
  529. //Clear false readings with too high (unrealistic) values
  530. if(vbat > 4700) vbat=0;
  531. //Battery low
  532. if (vbat <= 3600 && vbat!=0 ) statusInfo[3] = 1;
  533. else statusInfo[3] = 0;
  534. //Battery charging
  535. if (vbat > lastMilliVolts && vbat!=0) statusInfo[4] = 1;
  536. else statusInfo[4] = 0;
  537. //Battery fully charged
  538. if (vbat > 4170 && vbat!=0) {
  539. statusInfo[5] = 1;
  540. statusInfo[4] = 0;
  541. } else {
  542. statusInfo[5] = 0;
  543. }
  544. return vbat;
  545. }
  546. //////////// Helpers & Output ///////////////////
  547. void blinkStatus() {
  548. //get number of statusInfo
  549. boolean blinkSequenceActive = false;
  550. currentMillis = millis();
  551. if(currentMillis - lastBlinkSequenceStart >= blinkInterval) { //start blinking
  552. blinkSequenceActive = true;
  553. lastBlinkSequenceStart = currentMillis;
  554. }
  555. if(blinkSequenceActive) { //do the blink sequence
  556. lastSingleBlinkStart = currentMillis;
  557. for(int i=0; i<sizeof(statusInfo); ) {
  558. switch (i) {
  559. case 0:
  560. pixel.setPixelColor(0, pixel.Color(255 ,255, 255)); //white -> status blink
  561. break;
  562. case 1:
  563. pixel.setPixelColor(0, pixel.Color(0,200, 255)); //blue -> no GPS
  564. break;
  565. case 2:
  566. pixel.setPixelColor(0, pixel.Color(255,0, 255)); //pink -> no GSM
  567. break;
  568. case 3:
  569. pixel.setPixelColor(0, pixel.Color(255,0, 0)); //red -> low Battery
  570. break;
  571. case 4:
  572. pixel.setPixelColor(0, pixel.Color(255,188, 0)); //orange -> bat charging
  573. break;
  574. case 5:
  575. pixel.setPixelColor(0, pixel.Color(0,255, 0)); //green -> bat fully charged
  576. break;
  577. }
  578. if(statusInfo[i] !=0) pixel.show();
  579. currentMillis = millis();
  580. if(currentMillis - lastSingleBlinkStart >= singleBlinkDuration) {
  581. i++; //increase counter to get to the next info
  582. lastSingleBlinkStart = currentMillis;
  583. pixel.setPixelColor(0, pixel.Color(0,0, 0)); //green -> bat fully charged
  584. pixel.show();
  585. }
  586. }
  587. }
  588. if(currentMillis - lastBlinkSequenceStart >= blinkSequenceDuration) { //turn off again
  589. pixel.setPixelColor(0, pixel.Color(0 ,0, 0));
  590. pixel.show();
  591. blinkSequenceActive = false;
  592. }
  593. }
  594. /*
  595. void printSensorData(){
  596. Serial.println("SensorData:");
  597. Serial.print("\nTemperature: "); Serial.println(getTemperature());
  598. Serial.print("\nNoise: "); Serial.println(getNoise());
  599. Serial.print("\nBattery: "); Serial.print(getBatteryLevel()); Serial.println(" %");
  600. Serial.print("\nLocation: "); Serial.print(gps.location.lat(), 6); Serial.print(", "); Serial.println(gps.location.lng(), 6);
  601. Serial.println("---------------------------------------");
  602. }
  603. String sensorDataToString() {
  604. String data = "Sensordata: Temperature: " + String(getTemperature()) + " Noise: " + String(getNoise()) + " Battery: " + String(getBatteryLevel()) + "% Location: " + String(gps.location.lat()) + ", " + String(gps.location.lng());
  605. return data;
  606. }
  607. */
  608. void flushSerial() {
  609. while (Serial.available()) {
  610. Serial.read();
  611. }
  612. }