X-Git-Url: https://git.realraum.at/?a=blobdiff_plain;f=go%2Fr3events%2Fbasicevents.go;h=f2fa55936ab5caa71b8904d9286079cd37c454b6;hb=33e2baf66c6d13f6a0cec953e875e736b2d368d8;hp=73776cb2227a8fc37afa9dacdc1766cefdbe8b1e;hpb=0ae7860ca033f98cfb98721ebb0d4b2b42700d40;p=svn42.git diff --git a/go/r3events/basicevents.go b/go/r3events/basicevents.go index 73776cb..f2fa559 100644 --- a/go/r3events/basicevents.go +++ b/go/r3events/basicevents.go @@ -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 }