iconsole/SpeedTx.py

122 lines
4.1 KiB
Python
Raw Normal View History

2017-04-20 21:33:42 +02:00
from ant.core import message
from ant.core.constants import *
from ant.core.exceptions import ChannelError
2017-04-21 16:12:57 +02:00
from iConst import *
2017-04-20 21:33:42 +02:00
import thread
from binascii import hexlify
import struct
import time
SPEED_DEBUG = False
CHANNEL_PERIOD = 8182
# Transmitter for Bicycle Speed ANT+ sensor
class SpeedTx(object):
data_lock = thread.allocate_lock()
class SpeedData:
def __init__(self):
self.revCounts = 0
self.ucMessageCount = 0
self.ulRunTime = 0
self.ucPageChange = 0
2017-04-25 15:31:37 +02:00
self.ucExtMesgType = 1
2017-04-20 21:33:42 +02:00
def __init__(self, antnode, sensor_id, wheel = 0.100):
self.antnode = antnode
self.speed = 0
self.lastTime = 0
self.wheel = wheel
self.remWay = 0
2017-04-25 15:31:37 +02:00
self.sensor_id = sensor_id
2017-04-20 21:33:42 +02:00
# Get the channel
self.channel = antnode.getFreeChannel()
try:
self.channel.name = 'C:SPEED'
self.channel.assign('N:ANT+', CHANNEL_TYPE_TWOWAY_TRANSMIT)
2017-04-25 15:31:37 +02:00
self.channel.setID(SPEED_DEVICE_TYPE, sensor_id & 0xFFFF, 1)
2017-04-20 21:33:42 +02:00
self.channel.setPeriod(8118)
self.channel.setFrequency(57)
except ChannelError as e:
print "Channel config error: "+e.message
self.data = SpeedTx.SpeedData()
self.channel.registerCallback(self)
def open(self):
self.channel.open()
def close(self):
self.channel.close()
def unassign(self):
self.channel.unassign()
def update(self, speed):
self.data_lock.acquire()
self.speed = speed
if self.lastTime == 0:
self.lastTime = time.time()
self.data_lock.release()
def process(self, msg):
if isinstance(msg, message.ChannelEventMessage) and \
msg.getMessageID() == 1 and \
msg.getMessageCode() == EVENT_TX:
self.broadcast()
def broadcast(self):
self.data_lock.acquire()
2017-04-25 15:31:37 +02:00
now = time.time()
2017-04-20 21:33:42 +02:00
if self.lastTime != 0:
way = self.speed * (now - self.lastTime) / 3.6 + self.remWay
rev = int( way / self.wheel + 0.5 )
2017-04-20 21:33:42 +02:00
self.remWay = way - rev * self.wheel
self.data.revCounts += rev
self.lastTime = now
self.data_lock.release()
self.data.ucPageChange += 0x20;
self.data.ucPageChange &= 0xF0;
self.data.ucMessageCount += 1
2017-04-25 15:31:37 +02:00
2017-04-20 21:33:42 +02:00
if self.data.ucMessageCount >= 65:
if self.data.ucExtMesgType >= 4:
self.data.ucExtMesgType = 1
if self.data.ucExtMesgType == 1:
2017-04-25 15:31:37 +02:00
ulElapsedTime2 = int(now/2.0)
payload = chr(0x01 | (self.data.ucPageChange & 0x80))
payload += chr((ulElapsedTime2) & 0xFF)
2017-04-20 21:33:42 +02:00
payload += chr((ulElapsedTime2 >> 8) & 0xFF)
payload += chr((ulElapsedTime2 >> 16) & 0xFF)
elif self.data.ucExtMesgType == 2:
2017-04-25 15:31:37 +02:00
payload = chr(0x02 | (self.data.ucPageChange & 0x80))
payload += chr(0xFF) # MID
payload += chr((self.sensor_id >> 16)& 0xFF) # Serial 17-24
payload += chr((self.sensor_id >> 24) & 0xFF) # Serial 25-32
2017-04-20 21:33:42 +02:00
elif self.data.ucExtMesgType == 3:
2017-04-25 15:31:37 +02:00
payload = chr(0x03 | (self.data.ucPageChange & 0x80))
payload += chr(0x01) # HW
payload += chr(0x01) # SW
payload += chr(0x01) # Model
if self.data.ucMessageCount >= 68:
self.data.ucMessageCount = 0
self.data.ucExtMesgType += 1
2017-04-20 21:33:42 +02:00
else:
payload = chr(self.data.ucPageChange & 0x80)
payload += chr(0xFF)
payload += chr(0xFF)
payload += chr(0xFF)
usTime1024 = int(now * 1024)
payload += chr(usTime1024 & 0xff)
payload += chr((usTime1024 >> 8) & 0xff)
payload += chr(self.data.revCounts & 0xff)
payload += chr((self.data.revCounts >> 8) & 0xff)
#print "Broadcast: %s" % hexlify(payload)
ant_msg = message.ChannelBroadcastDataMessage(self.channel.number, data=payload)
self.antnode.driver.write(ant_msg.encode())