12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- *
- * AML TMP+NOISE
- *
- * VERSION: 1.03
- *
- * The Sensorbox measures Temperature and Noise-Level and sends this information with the GPS-position to a webservice.
- *
- * ************************************************
- * GENERAL INFO AND COMPONENTS
- *
- * Measuring Battery: https://learn.adafruit.com/adafruit-feather-32u4-fona/power-management
- * Gettin Noise: http://arduinolearning.com/code/arduino-and-max4466-electret-module-example.php
- * Getting GSM Location: https://www.instructables.com/id/How-to-make-a-Mobile-Cellular-Location-Logger-with/
- *
- * Tiny GPS++ Library: http://arduiniana.org/libraries/tinygpsplus/
- *
- *
- * Battery saving:
- *
- * GPS Board: - Use EN Pin to turn of the board when not needed (https://learn.adafruit.com/adafruit-ultimate-gps/overview)
- * - EN soll laut der Quelle auf GND gesetzt werden. Es dauert dann aber länger bis wieder ein Fix gefunden wurde.
- *
- *
- * Feather FONA: - Cut the key trac on the bottom of the board (https://learn.adafruit.com/adafruit-feather-32u4-fona/power-management)
- * - If you want to depower the cell module, cut the KEY trace on the bottom of the board, wire KEY to an unused pad,
- * and toggle the pin low for 100ms to completely turn on/off the module.
- * - https://arduino.stackexchange.com/questions/54001/adafruit-feather-32u4-fona-key-pin
- * cut the trace and wire it to a micro controller pin
- * - 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.
- * (Pulse low for a few seconds to change from on to off) This is the only way to truly disable the cellular module.
- *
- *************************************************
- * TODOS & BUGS:
- * - Die Ladeanzeige über die LED funktioniert nicht immer korrekt. Besonders gelbes Blinken (Aufladen) ist davon betroffen.
- *
- ************************************************
- *
- * IMPORTANT INFO:
- * - Be sure to use the correct Token and device number before uplading the code
- * - 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
- *
- * SOURCE TOKENS:
- * BOX 1: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjcsImlhdCI6MTYwMDg0NjI2MH0.YKzbg-8_hFuw1-W0Hqa5eLZAncfqlqT2rf2c95Abi7k
- * BOX 2: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjE1LCJpYXQiOjE2MDA4NDY3MTl9.Jk1CXJXeB6cm4T0QARoj_1BtxvsZF3jl5UhvPRMEBvQ
- * BOX 3: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEwLCJpYXQiOjE2MDA4NDYyMDZ9.rrA8lZ18SThb4L8mf18Krz7dK5ioCwqWd10BstT9GnE
- * BOX 4: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjE0LCJpYXQiOjE2MDA4NDY0MDR9.0BPUK7NVTlqi7i9QFx9kcVY55jsn0qskPWDL1PKyKec
- * BOX 5: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlhdCI6MTYwMDg0NjY2NH0.d5xvkTVDcHJl-K6KkohIWcUC5XcYNRZ_wzSLMvqAyvw
- * BOX 6: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjMsImlhdCI6MTYwMDg0NTg4M30.OjsoqjcAMhCh9WLkBpBtXyOlOL25mBXSxT1Uy3tM01M
- * BOX 7: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjUsImlhdCI6MTYwMDg0NjUwMH0.XqBhCwt9V6YTNE8fwfxrXahBxGGNHgLkXgO3XaqDcwI
- * BOX 8: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjExLCJpYXQiOjE2MDA4NDYxMjd9.uJPST-APKEpsS-CIimNh3ePNce2PaabuX5c3HNnVsfo
- *
- *
- ************************************************
- *
- */
|