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 Nov 02 17:01:02 2018 +0000
Revision:
10:4051c38bf73f
Parent:
6:90655031d4f7
wtf

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mitea1 0:f2815503561f 1 /**
mitea1 0:f2815503561f 2 * @file TaskLoRaMeasurement.h
mitea1 0:f2815503561f 3 *
mitea1 0:f2815503561f 4 * @author Adrian
mitea1 0:f2815503561f 5 * @date 13.06.2016
mitea1 0:f2815503561f 6 */
mitea1 0:f2815503561f 7
mitea1 0:f2815503561f 8 #include <Thread.h>
mitea1 0:f2815503561f 9 #include <Queue.h>
mitea1 0:f2815503561f 10 #include <Mutex.h>
mitea1 0:f2815503561f 11 #include "LoRa.h"
mitea1 0:f2815503561f 12 #include "LoRaMeasuermentMessage.h"
mitea1 0:f2815503561f 13 #include "main.h"
mitea1 6:90655031d4f7 14 #include "Task.h"
mitea1 0:f2815503561f 15
mitea1 0:f2815503561f 16 #ifndef APP_TASKLORAMEASUREMENT_H_
mitea1 0:f2815503561f 17 #define APP_TASKLORAMEASUREMENT_H_
mitea1 0:f2815503561f 18
mitea1 6:90655031d4f7 19 /**
mitea1 6:90655031d4f7 20 * @class
mitea1 6:90655031d4f7 21 */
mitea1 6:90655031d4f7 22 class TaskLoRaMeasurement : public Task {
mitea1 0:f2815503561f 23 public:
mitea1 0:f2815503561f 24 TaskLoRaMeasurement(LoRa*,Mutex*, Queue<LoRaMeasurementMessage,LORA_MEASUREMENT_QUEUE_LENGHT>*);
mitea1 0:f2815503561f 25 TaskLoRaMeasurement(LoRa*,Mutex*,Queue<LoRaMeasurementMessage,LORA_MEASUREMENT_QUEUE_LENGHT>*,
mitea1 0:f2815503561f 26 osPriority, uint32_t, unsigned char*);
mitea1 0:f2815503561f 27 virtual ~TaskLoRaMeasurement();
mitea1 0:f2815503561f 28
mitea1 0:f2815503561f 29 private:
mitea1 0:f2815503561f 30 rtos::Queue<LoRaMeasurementMessage,LORA_MEASUREMENT_QUEUE_LENGHT>* queue;
mitea1 0:f2815503561f 31 LoRa* lora;
mitea1 0:f2815503561f 32
mitea1 6:90655031d4f7 33
mitea1 6:90655031d4f7 34 void measure();
mitea1 4:2674bd4168f8 35
mitea1 4:2674bd4168f8 36 /**
mitea1 6:90655031d4f7 37 * @brief Sets the message Queue of the Task where the measured values will be stored
mitea1 6:90655031d4f7 38 * after the measurement
mitea1 6:90655031d4f7 39 * @param queueSingal the queue where the LoRa Signal strength will be stored
mitea1 4:2674bd4168f8 40 */
mitea1 0:f2815503561f 41 void setQueue(Queue<LoRaMeasurementMessage,LORA_MEASUREMENT_QUEUE_LENGHT>*);
mitea1 0:f2815503561f 42
mitea1 0:f2815503561f 43 };
mitea1 0:f2815503561f 44
mitea1 0:f2815503561f 45 #endif /* APP_TASKLORAMEASUREMENT_H_ */