|
@@ -1,6 +1,13 @@
|
|
|
/*
|
|
|
* 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/
|
|
@@ -22,10 +29,16 @@
|
|
|
* - 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
|
|
@@ -35,21 +48,10 @@
|
|
|
* BOX 6: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjMsImlhdCI6MTYwMDg0NTg4M30.OjsoqjcAMhCh9WLkBpBtXyOlOL25mBXSxT1Uy3tM01M
|
|
|
* BOX 7: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjUsImlhdCI6MTYwMDg0NjUwMH0.XqBhCwt9V6YTNE8fwfxrXahBxGGNHgLkXgO3XaqDcwI
|
|
|
* BOX 8: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjExLCJpYXQiOjE2MDA4NDYxMjd9.uJPST-APKEpsS-CIimNh3ePNce2PaabuX5c3HNnVsfo
|
|
|
- *
|
|
|
- *
|
|
|
- *
|
|
|
- *
|
|
|
- ************************************************
|
|
|
- *
|
|
|
- * 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
|
|
|
*
|
|
|
*
|
|
|
************************************************
|
|
|
*
|
|
|
- *
|
|
|
- * VERSION: 1.03
|
|
|
*/
|
|
|
|
|
|
#include <Adafruit_NeoPixel.h>
|