Skip to content

Simple Python module that read data from SIM7600 devices 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.sim7600

Repository files navigation

FW SIM 7600

Simple Python module that read data from SIM7600 and share them on the local DBus.
This repository is part of the Smart Van Project.

FW Name: FW SIM7600
FW Group: com.robypomper.smartvan.fw.sim7600
FW Version: 1.0.0

README | CHANGELOG | TODOs | LICENCE

Once ran, this script reads data from the serial specified port then notify the DBus with updated values. The DBus service and his properties depends on the model get from the device (using the AT+CGMM command). More info 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.waveshare.sim7600
  • DBus Obj Path: DEV_TYPE_* as device code (eg: SIM7600 become /sim7600, see Supported devices for the full list of DEV_TYPE_* values)
  • DBus Interface: DEV_IFACE_* (eg: com.waveshare.sim7600, see Supported devices for the full list of DEV_IFACE_* values)

Script's arguments

The run.py script accept following arguments:

  • -h, --help: show this help message and exit
  • -v, --version: show version and exit
  • --port PORT: Serial port name (default: /dev/ttyAMA0)
  • --speed SPEED: Serial port speed (default: 115200)
  • --simulate: Simulate a UPS Pack V3 Device (default: False)
  • --dbus-name DBUS_NAME: DBus name to connect to (Default: com.waveshare.sim7600)
  • --dbus-obj-path DBUS_OBJ_PATH: DBus object path to use for object publication (Default: the device_type_code string)
  • --dbus-iface DBUS_IFACE: DBus object's interface (Default: current device's dbus_iface)
  • --dev: enable development mode, increase log messages
  • --debug: Set log level to debug
  • --quiet: Set log level to error and

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 data from SIM7600 devices and share them on the local DBus.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages