mirror of
https://github.com/pommi/python-itho-wpu.git
synced 2024-11-14 12:42:15 +01:00
5e94f480b2
--master-only allows to only run the I2C master functionality. --slave-only allows to only run the I2C slave functionality. The I2C slave functionality via the "set_callback" mechanism (--type callback) just executes the pigpio "event_callback()" function and waits for 2 seconds for a response. The amount of seconds can now be configured via --slave-timeout.
142 lines
4.4 KiB
Python
Executable File
142 lines
4.4 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import argparse
|
|
import i2c_raw
|
|
import logging
|
|
import pigpio
|
|
import queue
|
|
import sys
|
|
import threading
|
|
import time
|
|
|
|
consolelogformatter = logging.Formatter("%(asctime)-15s %(levelname)s: %(message)s")
|
|
logger = logging.getLogger('stdout')
|
|
logger.setLevel(logging.INFO)
|
|
stdout_log_handler = logging.StreamHandler(sys.stdout)
|
|
stdout_log_handler.setFormatter(consolelogformatter)
|
|
logger.addHandler(stdout_log_handler)
|
|
|
|
|
|
def parse_args():
|
|
parser = argparse.ArgumentParser(description='Itho WPU i2c master')
|
|
|
|
actions = [
|
|
"getregelaar",
|
|
"getserial",
|
|
"getdatatype",
|
|
"getdatalog",
|
|
]
|
|
parser.add_argument('--action', nargs='?', required=True,
|
|
choices=actions, help="Execute an action")
|
|
parser.add_argument('--type', nargs='?', required=True,
|
|
choices=["callback", "wait"],
|
|
help="Pigpio slave type")
|
|
parser.add_argument('--loglevel', nargs='?',
|
|
choices=["debug", "info", "warning", "error", "critical"],
|
|
help="Loglevel")
|
|
parser.add_argument('--master-only', action='store_true', help="Only run I2C master")
|
|
parser.add_argument('--slave-only', action='store_true', help="Only run I2C slave")
|
|
parser.add_argument('--slave-timeout', nargs='?', type=int, default=2,
|
|
help="Slave timeout in seconds.")
|
|
|
|
args = parser.parse_args()
|
|
return args
|
|
|
|
|
|
class I2CSlave():
|
|
def __init__(self, address):
|
|
self.address = address
|
|
self.pi = pigpio.pi()
|
|
if not self.pi.connected:
|
|
logger.error("not pi.connected")
|
|
return
|
|
|
|
def set_callback(self, q, timeout):
|
|
logger.debug("set_callback()")
|
|
e = self.pi.event_callback(pigpio.EVENT_BSC, self.callback)
|
|
self.pi.bsc_i2c(self.address)
|
|
logger.debug(f"Waiting {timeout}s for activity")
|
|
time.sleep(timeout)
|
|
e.cancel()
|
|
self.pi.bsc_i2c(0) # Disable BSC peripheral
|
|
self.pi.stop()
|
|
|
|
def callback(self, id, tick):
|
|
logger.debug(f"callback({id}, {tick})")
|
|
s, b, d = self.pi.bsc_i2c(self.address)
|
|
result = None
|
|
if b:
|
|
logger.debug(f"Received {b} bytes! Status {s}")
|
|
result = [hex(c) for c in d]
|
|
logger.info(f"Response: {result}")
|
|
else:
|
|
logger.error(f"Received number of bytes was {b}")
|
|
|
|
def wait(self, q):
|
|
try:
|
|
self.pi.bsc_i2c(self.address)
|
|
if self.pi.wait_for_event(pigpio.EVENT_BSC, 5):
|
|
s, b, d = self.pi.bsc_i2c(self.address)
|
|
result = None
|
|
if b:
|
|
logger.debug(f"Received {b} bytes! Status {s}")
|
|
result = [hex(c) for c in d]
|
|
q.put(result)
|
|
else:
|
|
logger.error(f"Received number of bytes was {b}")
|
|
else:
|
|
logger.error("pi.wait_for_event timed out")
|
|
except(KeyboardInterrupt):
|
|
self.close()
|
|
else:
|
|
self.close()
|
|
|
|
def close(self):
|
|
self.pi.bsc_i2c(0)
|
|
self.pi.stop()
|
|
|
|
|
|
class I2CMaster:
|
|
def __init__(self, address, bus):
|
|
self.i = i2c_raw.I2CRaw(address=address, bus=bus)
|
|
|
|
def execute_action(self, action):
|
|
actions = {
|
|
"getregelaar": [0x80, 0x90, 0xE0, 0x04, 0x00, 0x8A],
|
|
"getserial": [0x80, 0x90, 0xE1, 0x04, 0x00, 0x89],
|
|
"getdatatype": [0x80, 0xA4, 0x00, 0x04, 0x00, 0x56],
|
|
"getdatalog": [0x80, 0xA4, 0x01, 0x04, 0x00, 0x55],
|
|
}
|
|
logger.info(f"Executing action: {action}")
|
|
self.i.write_i2c_block_data(actions[action])
|
|
|
|
def close(self):
|
|
self.i.close()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
args = parse_args()
|
|
|
|
if args.loglevel:
|
|
logger.setLevel(args.loglevel.upper())
|
|
|
|
q = queue.Queue()
|
|
|
|
if not args.master_only:
|
|
slave = I2CSlave(address=0x40)
|
|
if args.type == 'callback':
|
|
slave_thread = threading.Thread(target=slave.set_callback, args=[q, args.slave_timeout])
|
|
elif args.type == 'wait':
|
|
slave_thread = threading.Thread(target=slave.wait, args=[q])
|
|
slave_thread.start()
|
|
|
|
if not args.slave_only:
|
|
master = I2CMaster(address=0x41, bus=1)
|
|
if args.action:
|
|
master.execute_action(args.action)
|
|
master.close()
|
|
|
|
if args.type == 'wait' and not args.master_only:
|
|
result = q.get()
|
|
logger.info(f"Response: {result}")
|