A multifunctional and modular Firmware for Multitech's mDot based on ARM mBed provides a widerange of functionality for several Sensors such as MAX44009, BME280, MPU9250, SI1143 and uBlox. It allows you to quickly build a Sensornode that measures specific data with its sensors and sends it via LoRaWAN.

Dependencies:   mDot_LoRa_Sensornode_Flowmeter_impl mbed-rtos mbed

LoRa-Sensornode Firmware for Multitech mDot

A multifunctional and modular Firmware for Multitech's mDot which provides a widerange of functionality for several Sensors. It allows you to quickly build a Sensornode that measures specific data with its sensors and sends it via LoRaWAN.

/media/uploads/mitea1/logo-lora-600x370.png /media/uploads/mitea1/mt_mdot_family_642px.png

Supported Sensors

Idea

The Firmware has some predefined Application Modes running different Tasks(Measurements). Each mode can be used in a different Scenario. Application_Modes define which sensors are used, how often they aquire data and how often the data has to be sent via LoRa. Lets say you just want to measure the Light then you choose an Application_Mode (or define one) that only runs TaskLight for light measurement. As a standard all measurements are taken every second and sent via LoRa but you can change that interval depending on your usage Scenario

Revision:
7:87cbeafdba06
Parent:
0:f2815503561f
--- a/app/BME280.h	Sat Sep 10 11:23:35 2016 +0000
+++ b/app/BME280.h	Sat Oct 08 09:55:41 2016 +0000
@@ -74,8 +74,8 @@
 
 
 	/**
-	 * @brief Gets the temperature in �C
-	 * @return temperature in �C
+	 * @brief Gets the temperature in °C
+	 * @return temperature in °C
 	 */
 	float getTemperatureFloat();
 
@@ -168,22 +168,22 @@
 	/**
 	 * @brief sets the Oversampling for Temperature Measurements
 	 */
-	void setOversamplingTemperature(uint8_t overSamplingTemperature);
+	void setOversamplingTemperature();
 
 	/**
 	 * @brief sets the Oversampling for Pressure Measurements
 	 */
-	void setOversamplingPressure(uint8_t overSamplingPressure);
+	void setOversamplingPressure();
 
 	/**
 	 * @brief sets the Oversampling for Humidity Measurements
 	 */
-	void setOversamplingHumidity(uint8_t overSamplingHumidity);
+	void setOversamplingHumidity();
 
 	/**
 	 * @brief sets the internal Sensor Mode inside the CTRL_MEAS Register
 	 */
-	void setMode(uint8_t desiredMode);
+	void setMode();
 
 
 	/**