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

app/LoRaMeasuermentMessage.h

Committer:
mitea1
Date:
2018-11-02
Revision:
10:4051c38bf73f
Parent:
0:f2815503561f

File content as of revision 10:4051c38bf73f:

/**
 * @file LoRaMeasuermentMessage.h
 *
 * @author Adrian
 * @date 13.06.2016
 */

#ifndef APP_LORAMEASUERMENTMESSAGE_H_
#define APP_LORAMEASUERMENTMESSAGE_H_

#include <stdio.h>
#include <stdint.h>
#include <string>
#include <vector>
#include "SensorMessage.h"

/**
 * @class LoRaMeasurementMessage
 * @brief A Container that can hold acquired measurement values such as Rssi, Snr and some other config values from the LoRa Module.
 * The container will be transported via a MessageQueue between different Tasks and its intended to stored measurement results.
 */
class LoRaMeasurementMessage: public SensorMessage {
public:
	LoRaMeasurementMessage();
	virtual ~LoRaMeasurementMessage();


	/**
	 * @brief Sets the rssi value of the LoRaMeasurementMessage
	 * @param rssi rssi value to be stored
	 */
	void setRssi(int16_t rssi);

	/**
	 * @brief Gets the stored rssi value of the LoRaMeasurmentMessage
	 * @return
	 */
	int16_t getRssi();

	/**
	 * @brief Sets the snr value of the LoRaMeasurementMessage
	 * @param snr snr value to be stored
	 */
	void setSnr(int16_t snr);

	/**
	 * @brief Gets the stored snr value of the LoRaMeasurementMessage
	 * @return
	 */
	int16_t getSnr();

	/**
	 * @brief Sets the spreadingFactor of the LoRaMeasurementMessage
	 * @param spreadingFactor spreading Factor to be stored
	 */
	void setSpreadingFactor(uint8_t spreadingFactor);

	/**
	 * @brief Gets the stored spreading Factor of the LoRaMeasurementMessage
	 * @return
	 */
	uint8_t getSpreadingFactor();

	/**
	 * @brief Sets the tx Power value in dBm of the LoRaMeasurementMessage
	 * @param txPowerdBm tx Power in dBm to be stored
	 */
	void setTxPowerdBm(uint8_t txPowerdBm);

	/**
	 * @breif Gets the stored tx Power in dBm of the LoRaMeasurementMessage
	 * @return
	 */
	uint8_t getTxPowerdBm();

	/**
	 * Gets a small LoRaMessage Type Formated String from the LoRaMeasurmentMessage.
	 * This String can later be used for transportation via LoRa
	 * @return
	 */
	virtual char* getLoRaMessageString();

private:
	std::string loraMessage;
	std::vector<std::string> loraMessageId;

	int16_t rssi;
	int16_t snr;
	uint8_t spreadingFactor;
	uint8_t txPowerdBm;


};

#endif /* APP_LORAMEASUERMENTMESSAGE_H_ */