Skip to main content

Multipurpose sensorhandler, read the value from source & do somethings (send, save, trigger, ...) with it, as configed.

Project description

sensorhandler

Multipurpose sensorhandler, read the value from source & do somethings (send, save, trigger, ...) with it, as configed.

install

pip install sensorhandler

input

config.toml file on the current working directory. The contents of File is as follows:

[[sources]]
  name   = "dht22"
  errorhandler = "errorhandler"
  [[sources.values]]
    name = "temp"
    handlers = [
      "send"#import os, "save"
    ]
  [[sources.values]]
    name = "humidity"
    handlers = [
      "send"#, "save"
    ]
  [[sources.values]]
    name = "humiditydeficit"
    handlers = [
      "send"#, "save"
    ]


[[sources]]
  name   = "mh-z19"
  [[sources.values]]
    name = "co2"
    handlers = [
      "send", "save"
  ]

The array of table sources is the array of data source sensor definition, consist of followings:

  • name: Sensor handler's name. The same name python file (with ".py" extention) will be dinamically imported and function read() on the imported module will be called. The return value of read() is expecte as a dictionally as key of value name and value like: {'humiditydeficit': '15.9', 'temp': 26.8, 'humidity': 37.6}

  • values: handler difitition for each value, corresponding to the key of the dictionally of the return value of read() function.

    • name: value name

    • handlers: Value handler's name. The same name python file (with ".py" extention) will be dinamically imported and function handle(data_source_name, data_name, value): will be called with the Sensor handler's name, value name, and sensor value.

  • errorhandler: Error handler's name. The same name python file (with ".py" extention) will be dinamically imported for error handling of Sensor value reading. Currently, just stab.

How to use

as python program.

python -m sensorhandler [config_file_path]

as python library.

import sensorhandler

print (sensorhandler.read(config_file_path))

history

  • 0.1.1 2018.09.28 first version confirmed Raspberry Pi model B2+
  • 0.1.2 2018.09.29 add config_file_path

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

sensorhandler-0.1.2.tar.gz (2.8 kB view hashes)

Uploaded Source

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