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