[1.7.3] Parsing new Status format and Panic Packag
This commit is contained in:
parent
ed144ee2a0
commit
164ea70c7b
@ -1,12 +1,10 @@
|
|||||||
using System;
|
using System;
|
||||||
using BlubbFish.Utils;
|
using BlubbFish.Utils;
|
||||||
using BlubbFish.Utils.IoT.Bots;
|
|
||||||
using BlubbFish.Utils.IoT.Bots.Events;
|
using BlubbFish.Utils.IoT.Bots.Events;
|
||||||
using BlubbFish.Utils.IoT.Bots.Moduls;
|
using BlubbFish.Utils.IoT.Bots.Moduls;
|
||||||
using BlubbFish.Utils.IoT.Connector;
|
using BlubbFish.Utils.IoT.Connector;
|
||||||
using BlubbFish.Utils.IoT.Interfaces;
|
using BlubbFish.Utils.IoT.Interfaces;
|
||||||
using Fraunhofer.Fit.Iot.Lora;
|
using Fraunhofer.Fit.Iot.Lora;
|
||||||
using Fraunhofer.Fit.Iot.Lora.Events;
|
|
||||||
|
|
||||||
namespace Fraunhofer.Fit.IoT.Bots.LoraBot.Moduls {
|
namespace Fraunhofer.Fit.IoT.Bots.LoraBot.Moduls {
|
||||||
class Mqtt : Mqtt<LoraController> {
|
class Mqtt : Mqtt<LoraController> {
|
||||||
@ -33,6 +31,7 @@ namespace Fraunhofer.Fit.IoT.Bots.LoraBot.Moduls {
|
|||||||
|
|
||||||
public override void EventLibSetter() {
|
public override void EventLibSetter() {
|
||||||
this.library.DataUpdate += this.HandleLibUpdate;
|
this.library.DataUpdate += this.HandleLibUpdate;
|
||||||
|
this.library.PanicUpdate += this.HandleLibUpdate;
|
||||||
this.library.StatusUpdate += this.HandleLibUpdate;
|
this.library.StatusUpdate += this.HandleLibUpdate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
|
|||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("")]
|
[assembly: AssemblyCompany("")]
|
||||||
[assembly: AssemblyProduct("LoraDisplay")]
|
[assembly: AssemblyProduct("LoraDisplay")]
|
||||||
[assembly: AssemblyCopyright("Copyright © 2018 - 17.02.2019")]
|
[assembly: AssemblyCopyright("Copyright © 2018 - 03.03.2019")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
@ -32,8 +32,8 @@ using System.Runtime.InteropServices;
|
|||||||
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
|
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
|
||||||
// übernehmen, indem Sie "*" eingeben:
|
// übernehmen, indem Sie "*" eingeben:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.7.2")]
|
[assembly: AssemblyVersion("1.7.3")]
|
||||||
[assembly: AssemblyFileVersion("1.7.2")]
|
[assembly: AssemblyFileVersion("1.7.3")]
|
||||||
/*
|
/*
|
||||||
* 1.1.0 Update Scral addresses
|
* 1.1.0 Update Scral addresses
|
||||||
* 1.2.0 Run Module Events in threads so that one Module can not block others, TXTOut now appends to the logfile
|
* 1.2.0 Run Module Events in threads so that one Module can not block others, TXTOut now appends to the logfile
|
||||||
@ -48,4 +48,5 @@ using System.Runtime.InteropServices;
|
|||||||
* 1.7.0 Adding IC800A Lora-Reciever
|
* 1.7.0 Adding IC800A Lora-Reciever
|
||||||
* 1.7.1 Fixing binary data transmission & fixing Scral Plugin
|
* 1.7.1 Fixing binary data transmission & fixing Scral Plugin
|
||||||
* 1.7.2 Update to local librarys
|
* 1.7.2 Update to local librarys
|
||||||
|
* 1.7.3 Parsing new Status format and Panic Package
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user