Class for NooLite USB stick


Keywords
noolite, USB, smarthome, PC118, PC116, PC1132
License
GPL-3.0
Install
pip install noolite==1.4.0

Documentation

This project is a python module to worik with NooLite USB stick (PC118, PC1116, PC1132).
Can be easy used to make a light control for smarthomes.
About NooLite: http://www.noo.com.by/

Look at wiki for more info.

Author: Anton Balashov
E-mail: sicness(_at_)darklogic.ru
License: GPL v3
Site: https://github.com/Sicness/pyNooLite

Install

sudo apt-get install pip
sudo pip install noolite

Ubuntu/debian

https://launchpad.net/~ctolbhuk/+archive/noolite

Or download this repo and go into.

sudo python setup.py install

Or simple copy noolite.py from this repo to your project

Example:

import noolite

n = noolite.NooLite()
n.on(0)       # Turn power on on first channel
n.off(0)      # Turn power off on first channel
n.set(1, 115) # Set 115 level on second channel
n.bind(7)     # send "bind" signal on channel 8

See noolite file for a extra example

Dependences:

  • python module pyusb
    For Ubuntu do:
    sudo apt-get install python-pip
    sudo pip install pyusb

  • To have access on device from common user add the next rule to udev. For example to /etc/udev/rules.d/50-noolite.rules next line:
    ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="05df", SUBSYSTEMS=="usb", ACTION=="add", MODE="0666", GROUP="dialout"
    And add your user to dialout group:
    sudo usermod <user> -a -G dialout