readme 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. */