-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
I tweaked/hacked the sample/demo in the tests
demo to help with cross platform testing:
# https://github.com/glibersat/python-x10
from x10.controllers.cm17a import CM17a
serial_port_name = '/dev/ttyUSB'
serial_port_name = 'com11'
unit = 'A1'
unit = 'C6'
dev = CM17a(serial_port_name)
dev.open()
livinglamp = dev.actuator(unit)
livinglamp.on()
dev.close()
It fails with the following traceback:
abstract - 2016-07-09 12:37:29,289 DEBUG Writing 0xd5aa
Traceback (most recent call last):
File "test_serial.py", line 19, in <module>
livinglamp.on()
File "C:\Users\clach04\py\x10\python-x10\x10\devices\actuators.py", line 22, in on
self.x10ctrl.do(functions.ON, self.x10addr)
File "C:\Users\clach04\py\x10\python-x10\x10\controllers\cm17a.py", line 114, in do
self.write(self.DATA_HDR) # Send data header
File "C:\Users\clach04\py\x10\python-x10\x10\controllers\abstract.py", line 111, in write
self._handle.write(chr(aSequence))
ValueError: chr() arg not in range(256)
which is correct, chr()
expects a single character, maybe this should be an aSequence.encode('latin1')
?
This was with Windows and Python 2.7 but I don't think the platform/version have an impact.
As an FYI I've had success with the following firecracker (specific) modules under Linux and Windows:
- http://www.averdevelopment.com/python/x10.html -- I prefer this one, supports all operations, and with minimal changes works with Python 2 and 3 with the same code
- https://bitbucket.org/cdelker/python-x10-firecracker-interface/ - under source code control, but missing some operations
Metadata
Metadata
Assignees
Labels
No labels