Skip to content

Commit

Permalink
[1.7.3] Parsing new Status format and Panic Packag
Browse files Browse the repository at this point in the history
  • Loading branch information
blubbfish committed Mar 3, 2019
1 parent ed144ee commit 164ea70
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
3 changes: 1 addition & 2 deletions Lora-Bot/Moduls/Mqtt.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
using System;
using BlubbFish.Utils;
using BlubbFish.Utils.IoT.Bots;
using BlubbFish.Utils.IoT.Bots.Events;
using BlubbFish.Utils.IoT.Bots.Moduls;
using BlubbFish.Utils.IoT.Connector;
using BlubbFish.Utils.IoT.Interfaces;
using Fraunhofer.Fit.Iot.Lora;
using Fraunhofer.Fit.Iot.Lora.Events;

namespace Fraunhofer.Fit.IoT.Bots.LoraBot.Moduls {
class Mqtt : Mqtt<LoraController> {
Expand All @@ -33,6 +31,7 @@ class Mqtt : Mqtt<LoraController> {

public override void EventLibSetter() {
this.library.DataUpdate += this.HandleLibUpdate;
this.library.PanicUpdate += this.HandleLibUpdate;
this.library.StatusUpdate += this.HandleLibUpdate;
}

Expand Down
7 changes: 4 additions & 3 deletions Lora-Bot/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("LoraDisplay")]
[assembly: AssemblyCopyright("Copyright © 2018 - 17.02.2019")]
[assembly: AssemblyCopyright("Copyright © 2018 - 03.03.2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,8 +32,8 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.7.2")]
[assembly: AssemblyFileVersion("1.7.2")]
[assembly: AssemblyVersion("1.7.3")]
[assembly: AssemblyFileVersion("1.7.3")]
/*
* 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
Expand All @@ -48,4 +48,5 @@
* 1.7.0 Adding IC800A Lora-Reciever
* 1.7.1 Fixing binary data transmission & fixing Scral Plugin
* 1.7.2 Update to local librarys
* 1.7.3 Parsing new Status format and Panic Package
*/

0 comments on commit 164ea70

Please sign in to comment.