aml_sensorbox_tmpNoise.ino 26 KB

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