Skip to main content

Control Solight DY08 sockets

Project description

Python Solight DY08 library for Raspberry Pi

This library allows you to control Solight DY08 sockets from Raspberry Pi.

How to use it

Connect cheap 433 MHz transmitter to any GPIO pin (e.g. 17)

sudo apt-get install pigpio-python
sudo pigpiod
import time
import pigpio
from dy08 import DY08

pi = pigpio.pi()
dy08 = DY08(pi, 17)

while True:
	dy08.send(42, 1)
	time.sleep(1)
	dy08.send(42, 0)
	time.sleep(1)

...

Profit! :D

License

MITNFA

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

solight-dy08-1.0.0.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distribution

solight_dy08-1.0.0-py3-none-any.whl (3.5 kB view hashes)

Uploaded Python 3

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