Skip to content

Latest commit

 

History

History
93 lines (67 loc) · 1.81 KB

driver_xbos_temperature_sensor.md

File metadata and controls

93 lines (67 loc) · 1.81 KB

XBOS Temperature Sensor

Interface: i.xbos.temperature_sensor

Description: XBOS temperature sensor

PONUM: 2.1.2.0

Properties

Name Type Description Units Required
temperature double Current temperature reading Fahrenheit true
time integer nanoseconds since the Unix epoch ns false

Signals

  • info:
    • temperature
    • time

Slots

Interfacing in Go

package main

import (
	"fmt"
	bw2 "gopkg.in/immesys/bw2bind.v5"
)

func main() {
	client := bw2.ConnectOrExit("")
	client.OverrideAutoChainTo(true)
	client.SetEntityFromEnvironOrExit()

	base_uri := "Temperature Sensor uri goes here ending in i.xbos.temperature_sensor"

	// subscribe
	type signal struct {
		Temperature float64 `msgpack:"temperature"`
		Time        int64   `msgpack:"time"`
	}
	c, err := client.Subscribe(&bw2.SubscribeParams{
		URI: base_uri + "/signal/info",
	})
	if err != nil {
		panic(err)
	}

	for msg := range c {
		var current_state signal
		po := msg.GetOnePODF("2.1.2.0/32")
		err := po.(bw2.MsgPackPayloadObject).ValueInto(&current_state)
		if err != nil {
			fmt.Println(err)
		} else {
			fmt.Println(current_state)
		}
	}
}

Interfacing in Python

import time
import msgpack

from bw2python.bwtypes import PayloadObject
from bw2python.client import Client

bw_client = Client()
bw_client.setEntityFromEnviron()
bw_client.overrideAutoChainTo(True)

def onMessage(bw_message):
  for po in bw_message.payload_objects:
    if po.type_dotted == (2,1,2,0):
      print msgpack.unpackb(po.content)

bw_client.subscribe("Temperature Sensor uri ending in i.xbos.temperature_sensor/signal/info", onMessage)

print "Subscribing. Ctrl-C to quit."
while True:
  time.sleep(10000)