ManualMovementEvent
[svn42.git] / go / r3events / basicevents.go
index 73776cb..f2fa559 100644 (file)
@@ -25,6 +25,10 @@ type DoorCommandEvent struct {
     Ts int64
 }
 
+type DoorManualMovementEvent struct {
+    Ts int64
+}
+
 type DoorProblemEvent struct {
     Severity int
     Ts int64
@@ -46,6 +50,36 @@ type IlluminationSensorUpdate struct {
     Ts int64
 }
 
+type DustSensorUpdate struct {
+    Sensorindex int
+    Value int64
+    Ts int64
+}
+
+type RelativeHumiditySensorUpdate struct {
+    Sensorindex int
+    Percent int
+    Ts int64
+}
+
+type NetDHCPACK struct {
+    Mac string
+    IP string
+    Name string
+    Ts int64
+}
+
+type NetGWStatUpdate struct {
+    WifiRX int32
+    WifiTX int32
+    EthernetRX int32
+    EthernetTX int32
+    InternetRX int32
+    InternetTX int32
+    NumNeigh int32
+    Ts int64
+}
+
 type TimeTick struct {
     Ts int64
 }