removed kicad-libs and teenstep after moving to github
[svn42.git] / go / r3events / basicevents.go
index 73776cb..35f6385 100644 (file)
@@ -25,8 +25,13 @@ type DoorCommandEvent struct {
     Ts int64
 }
 
+type DoorManualMovementEvent struct {
+    Ts int64
+}
+
 type DoorProblemEvent struct {
     Severity int
+    Problem string
     Ts int64
 }
 
@@ -46,6 +51,40 @@ 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 GasLeakAlert struct {
+    Ts int64
+}
+
 type TimeTick struct {
     Ts int64
 }