Skip to content

Simple Python module that read/write data to IO Expansion board and share them on the local DBus.

License

Notifications You must be signed in to change notification settings

Smart-Van-2-0/com.robypomper.smartvan.fw.ioexp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FW IO Expansion

Simple Python module that read/write GPIO status from IO Expansion board and share them on the local DBus.
This repository is part of the Smart Van Project.

FW Name: FW IO Exp
FW Group: com.robypomper.smartvan.fw.ioexp
FW Version: 1.0.0

README | CHANGELOG | TODOs | LICENCE

Once ran, this script reads data from the IO Exp via I2C then notify the DBus with updated values. On the other side, when it executes a DBus method, it sends the new value to the IO Exp. Then the value is updated back, next time the values are read. The DBus service and his properties are defined into _dbus_descs.py file. More info on on Supported devices and value mapping.

Run

This is a Python script, so python is required to run it.

$ python --version
# if not installed, then run
$ sudo apt-get install python3 python3-pip

In addition, some other package must be installed in order to configure python's dependencies like PyGObject or pydbus. If you are using a debian/ubuntu based distribution, then you can run:

$ sudo apt-get install libcairo2-dev libgirepository1.0-dev dbus-x11 

Once Python was installed on your machine, you can install the script's requirements globally or create a dedicated venv.

# Init venv (Optional)
$ python -m venv venev
$ source venv/bin/activate

# Install script's requirements
$ pip install -r requirements.txt

Now, you are ready to run the script with the command:

$ python run.py

or alternative options
$ python run.py --quiet
$ python run.py --debug --simulate
$ python run.py  --dbus-name com.custom.bus --dbus-obj-path /custom/path --dbus-iface com.custom.IFace

For script's remote usage please see the dedicated page.

Defaults DBus params are:

  • DBus Name: com.ioexp
  • DBus Obj Path: DEV_TYPE_* (eg: /io_expansion_board)
  • DBus Interface: DEV_IFACE_* (eg: com.ioexp)

Script's arguments

The run.py script accept following arguments:

  • -h, --help: show this help message and exit
  • -v, --version: show version and exit
  • --simulate: Simulate a version V3.2P
  • --dbus-name DBUS_NAME: DBus name
  • --dbus-obj-path DBUS_OBJ_PATH: DBus object path (if None, the device type will be used, if empty nothing will be used)
  • --dbus-iface DBUS_IFACE: DBus interface (if None, the device interface will be used, if empty nothing will be used)
  • --dev: enable development mode, increase logged messages info
  • --debug: Set log level to debug
  • --quiet: Set log level to error

Develop

The main goal for this script is to link the Device's protocol to the DBus. So, in addition to the main script, all other files are related to the Device or to the DBus protocols.

Module's files can be grouped in 2 categories:

Definitions:

Operations:

About

Simple Python module that read/write data to IO Expansion board and share them on the local DBus.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages