2021-11-08 20:36:55 +00:00
|
|
|
import time
|
|
|
|
import requests
|
|
|
|
from rpi_ws281x import *
|
2021-11-09 16:06:13 +00:00
|
|
|
import RPi.GPIO as GPIO
|
2021-11-08 20:36:55 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
# LED strip configuration:
|
|
|
|
LED_COUNT = 60 # Number of LED pixels.
|
|
|
|
LED_PIN = 18 # GPIO pin connected to the pixels (18 uses PWM!).
|
|
|
|
#LED_PIN = 10 # GPIO pin connected to the pixels (10 uses SPI /dev/spidev0.0).
|
|
|
|
LED_FREQ_HZ = 800000 # LED signal frequency in hertz (usually 800khz)
|
|
|
|
LED_DMA = 10 # DMA channel to use for generating signal (try 10)
|
|
|
|
LED_BRIGHTNESS = 255 # Set to 0 for darkest and 255 for brightest
|
|
|
|
LED_INVERT = False # True to invert the signal (when using NPN transistor level shift)
|
|
|
|
LED_CHANNEL = 0 # set to '1' for GPIOs 13, 19, 41, 45 or 53
|
|
|
|
|
2021-11-09 16:10:00 +00:00
|
|
|
led_power = True
|
|
|
|
|
|
|
|
try:
|
|
|
|
with open('./idle.txt', 'r') as f:
|
|
|
|
idle_mode = f.readline()
|
|
|
|
except:
|
|
|
|
with open('./idle.txt', 'w') as f:
|
|
|
|
f.write('1')
|
2021-11-09 16:25:34 +00:00
|
|
|
idle_mode = 1
|
2021-11-09 16:10:00 +00:00
|
|
|
|
2021-11-08 20:36:55 +00:00
|
|
|
def check_internet(url='http://www.google.com/', timeout=5):
|
|
|
|
try:
|
|
|
|
_ = requests.head(url, timeout=timeout)
|
|
|
|
return True
|
|
|
|
except requests.ConnectionError:
|
|
|
|
return False
|
|
|
|
|
|
|
|
def wheel(pos):
|
|
|
|
"""Generate rainbow colors across 0-255 positions."""
|
|
|
|
if pos < 85:
|
|
|
|
return Color(pos * 3, 255 - pos * 3, 0)
|
|
|
|
elif pos < 170:
|
|
|
|
pos -= 85
|
|
|
|
return Color(255 - pos * 3, 0, pos * 3)
|
|
|
|
else:
|
|
|
|
pos -= 170
|
|
|
|
return Color(0, pos * 3, 255 - pos * 3)
|
|
|
|
|
|
|
|
def rainbowCycle(strip, wait_ms=10, iterations=10):
|
|
|
|
"""Draw rainbow that uniformly distributes itself across all pixels."""
|
|
|
|
for j in range(256*iterations):
|
|
|
|
for i in range(strip.numPixels()):
|
|
|
|
strip.setPixelColor(i, wheel((int(i * 256 / strip.numPixels()) + j) & 255))
|
|
|
|
strip.show()
|
|
|
|
time.sleep(wait_ms/1000.0)
|
|
|
|
|
|
|
|
def setColor(strip, color, iterations=10, wait_ms=10):
|
|
|
|
for i in range(strip.numPixels()):
|
|
|
|
strip.setPixelColor(i, color)
|
|
|
|
strip.show()
|
|
|
|
time.sleep(wait_ms/1000.0)
|
|
|
|
|
|
|
|
def blink(strip, color1, color2, iterations=10, wait_ms=10):
|
|
|
|
for i in range(strip.numPixels()):
|
|
|
|
strip.setPixelColor(i, color1)
|
|
|
|
strip.show()
|
|
|
|
time.sleep(1)
|
|
|
|
for i in range(strip.numPixels()):
|
|
|
|
strip.setPixelColor(i, color2)
|
|
|
|
strip.show()
|
|
|
|
time.sleep(1)
|
|
|
|
|
2021-11-09 17:23:29 +00:00
|
|
|
def led_power_toggle(channel):
|
2021-11-09 17:11:22 +00:00
|
|
|
global led_power
|
2021-11-09 16:06:13 +00:00
|
|
|
if led_power == True:
|
|
|
|
led_power = False
|
|
|
|
else:
|
|
|
|
led_power = True
|
2021-11-09 17:57:14 +00:00
|
|
|
print('Led toggled: '+str(led_power))
|
2021-11-09 17:58:49 +00:00
|
|
|
return led_power
|
2021-11-09 16:06:13 +00:00
|
|
|
|
|
|
|
def read_idle():
|
|
|
|
with open('./idle.txt', 'r') as f:
|
|
|
|
idle_mode = f.readline()
|
|
|
|
|
2021-11-09 17:23:29 +00:00
|
|
|
def change_idle_mode(channel):
|
2021-11-09 17:22:17 +00:00
|
|
|
global idle_mode
|
2021-11-09 18:07:14 +00:00
|
|
|
with open('./idle.txt', 'r') as f:
|
|
|
|
idle_mode = f.readline()
|
|
|
|
if int(idle_mode) > 7:
|
|
|
|
idle_mode = 0
|
2021-11-09 16:06:13 +00:00
|
|
|
with open('./idle.txt', 'w') as f:
|
|
|
|
f.write(int(idle_mode) + 1)
|
2021-11-09 17:22:17 +00:00
|
|
|
with open('./idle.txt', 'r') as f:
|
|
|
|
idle_mode = f.readline()
|
|
|
|
print('Change Idle-Mode: '+idle_mode)
|
2021-11-08 20:36:55 +00:00
|
|
|
|
2021-11-09 17:28:28 +00:00
|
|
|
def test():
|
|
|
|
print('test')
|
2021-11-09 17:26:35 +00:00
|
|
|
|
2021-11-08 20:36:55 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
strip = Adafruit_NeoPixel(LED_COUNT, LED_PIN, LED_FREQ_HZ, LED_DMA, LED_INVERT, LED_BRIGHTNESS, LED_CHANNEL)
|
|
|
|
strip.begin()
|
2021-11-09 17:52:20 +00:00
|
|
|
GPIO.setmode(GPIO.BOARD)
|
2021-11-09 17:41:13 +00:00
|
|
|
GPIO.setup(13, GPIO.IN, pull_up_down=GPIO.PUD_UP)
|
2021-11-09 16:06:13 +00:00
|
|
|
GPIO.setup(19, GPIO.IN, pull_up_down=GPIO.PUD_UP)
|
2021-11-09 17:54:45 +00:00
|
|
|
GPIO.add_event_detect(13, GPIO.RISING, callback=led_power_toggle, bouncetime=300)
|
|
|
|
GPIO.add_event_detect(19, GPIO.RISING, callback=change_idle_mode, bouncetime=300)
|
2021-11-08 20:36:55 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
while True:
|
2021-11-09 16:06:13 +00:00
|
|
|
try:
|
|
|
|
with open('./idle.txt', 'r') as f:
|
|
|
|
idle_mode = f.readline()
|
|
|
|
except:
|
|
|
|
with open('./idle.txt', 'w') as f:
|
|
|
|
f.write('1')
|
|
|
|
with open('./idle.txt', 'r') as f:
|
|
|
|
idle_mode = f.readline()
|
|
|
|
|
2021-11-09 18:09:54 +00:00
|
|
|
print(led_power_toggle)
|
2021-11-09 18:09:03 +00:00
|
|
|
|
2021-11-09 17:58:49 +00:00
|
|
|
if led_power_toggle == False:
|
2021-11-08 20:36:55 +00:00
|
|
|
setColor(strip, Color(0,0,0))
|
|
|
|
else:
|
2021-11-09 16:10:00 +00:00
|
|
|
if check_internet() == False:
|
|
|
|
blink(strip, Color(255,0,0), Color(255,255,255))
|
2021-11-09 16:06:13 +00:00
|
|
|
else:
|
2021-11-09 18:01:18 +00:00
|
|
|
print(idle_mode)
|
2021-11-09 18:05:02 +00:00
|
|
|
if idle_mode == '1':
|
2021-11-09 16:10:00 +00:00
|
|
|
rainbowCycle(strip)
|
2021-11-09 18:05:02 +00:00
|
|
|
elif idle_mode == '2':
|
2021-11-09 16:10:00 +00:00
|
|
|
setColor(strip, Color(255,0,0))
|
2021-11-09 18:05:02 +00:00
|
|
|
elif idle_mode == '3':
|
2021-11-09 16:10:00 +00:00
|
|
|
setColor(strip, Color(0,255,0))
|
2021-11-09 18:05:02 +00:00
|
|
|
elif idle_mode == '4':
|
2021-11-09 16:10:00 +00:00
|
|
|
setColor(strip, Color(0,0,255))
|
2021-11-09 18:05:02 +00:00
|
|
|
elif idle_mode == '5':
|
2021-11-09 16:10:00 +00:00
|
|
|
setColor(strip, Color(125,245,255))
|
|
|
|
else:
|
|
|
|
blink(strip, Color(255,0,0), Color(0,0,0))
|
2021-11-09 16:06:13 +00:00
|
|
|
|
2021-11-08 20:36:55 +00:00
|
|
|
except KeyboardInterrupt:
|
2021-11-09 17:29:50 +00:00
|
|
|
setColor(strip, Color(0,0,0))
|
|
|
|
GPIO.cleanup()
|