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

Committer:
mitea1
Date:
Fri Aug 12 11:19:14 2016 +0000
Revision:
1:fe242f3e341b
Parent:
0:f2815503561f
Child:
3:ef29fec664d0
added OTAA Join Mode for LoRa Connection

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mitea1 0:f2815503561f 1 #include "Application.h"
mitea1 0:f2815503561f 2 #include "ApplicationConfig.h"
mitea1 0:f2815503561f 3 #include "UARTTunnel.h"
mitea1 0:f2815503561f 4
mitea1 0:f2815503561f 5 int main() {
mitea1 0:f2815503561f 6
mitea1 0:f2815503561f 7 Application application;
mitea1 1:fe242f3e341b 8 application.init(APPLICATION_MODE_9);
mitea1 0:f2815503561f 9
mitea1 0:f2815503561f 10 while (true) {
mitea1 1:fe242f3e341b 11 //sleep();
mitea1 0:f2815503561f 12 }
mitea1 0:f2815503561f 13
mitea1 0:f2815503561f 14 return 0;
mitea1 0:f2815503561f 15 }