aml_sensorbox_tmpNoise.ino 26 KB

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