Delete Toggle_fan.py

This commit is contained in:
tpollina 2019-12-16 19:05:05 -08:00 committed by GitHub
parent 121a690198
commit 513c172e1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,16 +0,0 @@
#!/usr/bin/python
import smbus
from time import sleep
bus = smbus.SMBus(1)
DEVICE_ADDRESS = 0x0d
def fan_toggle():
bus.write_byte_data(DEVICE_ADDRESS, 0x08, 0x01)
fan_toggle()