Skip to main content

Driver collection for embedded systems or wireless sensor nodes.

Project description

About philander

Philander is a collection of drivers for the components of an embedded system or wireless sensor node. This includes but is not limited to:

  • sensors
  • battery chargers
  • battery fuel gauges
  • actors, such as motors
  • GUI elements, like LEDs and buttons
  • service modules, e.g. integer mathematics

The code is completely written in Python and relies on low-level communication modules such as smbus, smbus2 or periphery and pymitter. It aims at making application development easier by providing a unified interface for electronic parts that are expected to do similar things.

The intended hardware platform is all kind of single-board computers such as Raspberry Pi, Arduino and Google Coral. This software is specifically designed for making the features of their shields, daughter- and add-on boards available to the application.

Installation

Released builds of this collection can be installed from the python package index at https://pypi.org by just using pip as in: pip3 install philander

Application development

The main guide line is: Keep your application code as generic as possible. References to philander objects should only be as specific as necessary!

The API reference may be generated from the source code, through, e.g. sphinx. It can be found at https://philander.readthedocs.io

The most relevant philander objects are derived from module. The life cycle of such an object is as follows.

  • Instantiation: usually a default constructor without any parameter.
  • Params_init(): A class method to pre-populate a configuration dictionary with default entries.
  • open(): Configures an object and prepares it for use.
  • ...operation...: depends on the actual type and may be specified by other interfaces, such as sensor, charger or gasgauge.
  • close(): Shut down the instance and possibly release any hardware resources.

Note that the configuration is done through Python dictionaries, passed in as the first parameter to the open() method. The dictionary can be pre-initialized by Params_init() or set by the application. Alternatively, parts of it could be read from config files, for example.

Example code

from philander.accelerometer import Accelerometer
from philander.bma456 import BMA456 as sensorDriver
from philander.systypes import ErrorCode

configSensor = {
    "SerialBus.designator": "/dev/i2c-1",
    "SerialBusDevice.address": 0x18,
    "Sensor.dataRange"    : 4000,
    "Sensor.dataRate"     : 100,
}
sensor = sensorDriver()
sensorDriver.Params_init( configSensor )

err = sensor.open( configSensor )
if (err == ErrorCode.errOk):
    print("Success!")
else:
    print("Error: ", err)

mdata, err = sensor.getNextData()
if (err == ErrorCode.errOk):
    print(now, mdata)

sensor.close()

Library development

Python developers are welcome to add own classes and driver implementations to this collection. Stick to the rules and conventions of object-oriented Python programming!

The mandatory coding convention for Python code is the Python Enhancement Proposal #8 (PEP 8). It also gives advice on the naming convention.

Documentation must follow PEP 257. The Docstring format should be reStructuredText as defined by the reStructuredText Markup Specification. To generate the HTML documentation output from the source files, tools like Sphinx may be used. Preferrably, the same tool should also be able to generate PDF output.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

philander-0.3.tar.gz (1.8 MB view details)

Uploaded Source

Built Distribution

philander-0.3-py3-none-any.whl (174.5 kB view details)

Uploaded Python 3

File details

Details for the file philander-0.3.tar.gz.

File metadata

  • Download URL: philander-0.3.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.5

File hashes

Hashes for philander-0.3.tar.gz
Algorithm Hash digest
SHA256 138b31bbf40b322af3bb44d872e5dfa8316b9039d6ff3d60b0b07c84f8fcdb56
MD5 c6062354c5e53128703b40bbceca81ef
BLAKE2b-256 f0cda9c050fd53fc2fd7f53039941c770ae23d31235756cb7fc74a6f7d44896b

See more details on using hashes here.

File details

Details for the file philander-0.3-py3-none-any.whl.

File metadata

  • Download URL: philander-0.3-py3-none-any.whl
  • Upload date:
  • Size: 174.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.5

File hashes

Hashes for philander-0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 3e7bd42421d74e4af23cc77f266f11c4a9e23c5ff21a15c44a3af38c46f05eb5
MD5 1ba89de69506b0b326337301702cb78c
BLAKE2b-256 2cb794f0c035c91159f9a45fcdca160bb55bf55aed1611dd2ca0fd7e623e49b0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page