2024-02-08 18:19:24 +00:00
|
|
|
import os
|
|
|
|
import wifi
|
2024-02-12 17:28:48 +00:00
|
|
|
from sacn import sACNlistener
|
2024-02-08 18:19:24 +00:00
|
|
|
from neopixel import *
|
|
|
|
import requests
|
|
|
|
import json
|
2024-02-12 00:27:24 +00:00
|
|
|
import time
|
|
|
|
from threading import Thread
|
2024-02-08 18:19:24 +00:00
|
|
|
|
|
|
|
# Replace with your server's IP address and port
|
|
|
|
SERVER_IP = '192.168.0.1' # Change to the actual IP of the PiXelTube Master
|
|
|
|
SERVER_PORT = 5000 # Change to the port your Flask app is running on
|
|
|
|
|
|
|
|
# Dynamically obtain the MAC address of the WLAN interface
|
|
|
|
wlan_mac_address = ':'.join(['{:02x}'.format((int(os.popen(f'cat /sys/class/net/wlan0/address').read().split(':'))[i]),) for i in range(6)])
|
|
|
|
|
|
|
|
# Replace with the GPIO pin connected to the data input of the WS2812B LED strip
|
|
|
|
LED_STRIP_PIN = 18
|
2024-02-12 00:27:24 +00:00
|
|
|
global LED_COUNT
|
|
|
|
LED_COUNT = 30
|
|
|
|
global LEDS_PER_PIXEL
|
|
|
|
LEDS_PER_PIXEL = 5
|
2024-02-08 18:19:24 +00:00
|
|
|
|
|
|
|
# Global variables for LED strip control
|
2024-02-12 00:27:24 +00:00
|
|
|
global strip
|
2024-02-08 18:19:24 +00:00
|
|
|
strip = Adafruit_NeoPixel(LED_COUNT, LED_STRIP_PIN, 800000, 10, False)
|
|
|
|
strip.begin()
|
|
|
|
|
|
|
|
def register_tube():
|
|
|
|
# Register or reauthenticate the tube with the server
|
|
|
|
try:
|
|
|
|
response = requests.post(f'http://{SERVER_IP}:{SERVER_PORT}/register_tube', data={'mac_address': wlan_mac_address})
|
|
|
|
data = response.json()
|
|
|
|
if data.get('success'):
|
|
|
|
print('Tube registered successfully.')
|
|
|
|
else:
|
|
|
|
print(f'Registration failed: {data.get("message")}')
|
|
|
|
except requests.RequestException as e:
|
|
|
|
print(f'Registration failed: {e}')
|
|
|
|
|
2024-02-12 00:27:24 +00:00
|
|
|
def get_assigned_params():
|
|
|
|
try:
|
|
|
|
response = requests.get(f'http://{SERVER_IP}:{SERVER_PORT}/get_assigned_params/{wlan_mac_address}')
|
|
|
|
data = response.json()
|
|
|
|
if data.get('success'):
|
|
|
|
return data.get('universe'), data.get('dmx_address')
|
|
|
|
else:
|
|
|
|
print(f'Failed to fetch assigned parameters: {data.get("message")}')
|
|
|
|
return None, None
|
|
|
|
except requests.RequestException as e:
|
|
|
|
print(f'Failed to fetch assigned parameters: {e}')
|
|
|
|
return None, None
|
|
|
|
|
2024-02-08 18:19:24 +00:00
|
|
|
def is_connected_to_wifi():
|
|
|
|
try:
|
|
|
|
ssid = wifi.current()
|
|
|
|
return ssid is not None
|
|
|
|
except wifi.exceptions.InterfaceError:
|
|
|
|
return False
|
2024-02-12 00:27:24 +00:00
|
|
|
|
|
|
|
def update_led_strip(dmx_values, dmx_address, strip, LED_PER_PIXEL):
|
|
|
|
for i in range(LED_COUNT):
|
|
|
|
pixel_index = i // LEDS_PER_PIXEL
|
|
|
|
dmx_index = dmx_address + (pixel_index * 3)
|
2024-02-08 18:19:24 +00:00
|
|
|
|
2024-02-12 00:27:24 +00:00
|
|
|
r = dmx_values[dmx_index]
|
|
|
|
g = dmx_values[dmx_index + 1]
|
|
|
|
b = dmx_values[dmx_index + 2]
|
|
|
|
|
|
|
|
strip.setPixelColor(i, Color(r, g, b))
|
|
|
|
|
|
|
|
# Update the LED strip
|
|
|
|
strip.show()
|
|
|
|
|
2024-02-12 17:28:48 +00:00
|
|
|
def listen_to_sacn(universe, dmx_address, strip, LEDS_PER_PIXEL):
|
2024-02-09 16:28:51 +00:00
|
|
|
try:
|
2024-02-12 17:28:48 +00:00
|
|
|
# Create a new sACN listener
|
|
|
|
listener = sACNlistener()
|
|
|
|
|
|
|
|
# Configure the listener to listen to the specified universe
|
|
|
|
listener.register_listener(universe)
|
|
|
|
|
|
|
|
# Start the listener
|
|
|
|
listener.start()
|
2024-02-12 00:27:24 +00:00
|
|
|
|
2024-02-09 16:28:51 +00:00
|
|
|
while True:
|
2024-02-12 17:28:48 +00:00
|
|
|
# Get the latest data from the specified universe
|
|
|
|
packet = listener[universe].listen()
|
2024-02-12 00:27:24 +00:00
|
|
|
|
2024-02-12 17:28:48 +00:00
|
|
|
if packet is not None:
|
|
|
|
# Extract DMX values from the sACN packet
|
|
|
|
dmx_values = packet.dmx_frame
|
2024-02-08 18:19:24 +00:00
|
|
|
|
2024-02-12 17:28:48 +00:00
|
|
|
# Update the LED strip based on the received DMX values
|
|
|
|
update_led_strip(dmx_values, dmx_address, strip, LEDS_PER_PIXEL)
|
2024-02-09 16:28:51 +00:00
|
|
|
except Exception as e:
|
|
|
|
print(f"Error: {e}")
|
2024-02-08 18:19:24 +00:00
|
|
|
|
2024-02-12 00:27:24 +00:00
|
|
|
def loopCheckSettingUpdates():
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
global universe
|
|
|
|
global dmx_address
|
|
|
|
universe, dmx_address = get_assigned_params()
|
|
|
|
except Exception as e:
|
|
|
|
print(f"Error: {e}")
|
2024-02-12 00:27:55 +00:00
|
|
|
time.sleep(2)
|
2024-02-12 00:27:24 +00:00
|
|
|
|
|
|
|
def loopUpdatePixels():
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
listen_to_artnet(universe, dmx_address, strip, LEDS_PER_PIXEL)
|
|
|
|
except Exception as e:
|
|
|
|
print(f"Error: {e}")
|
|
|
|
|
2024-02-08 18:19:24 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
# Connect to Wi-Fi
|
|
|
|
if is_connected_to_wifi():
|
|
|
|
# Register/reauthenticate the tube
|
|
|
|
register_tube()
|
2024-02-12 00:27:24 +00:00
|
|
|
time.sleep(1)
|
|
|
|
global universe
|
|
|
|
global dmx_address
|
|
|
|
universe, dmx_address = get_assigned_params()
|
|
|
|
listen_to_artnet(universe, dmx_address, strip, LEDS_PER_PIXEL)
|
2024-02-08 18:19:24 +00:00
|
|
|
|
2024-02-12 00:27:24 +00:00
|
|
|
settingsUpdateThread = Thread(target=loopCheckSettingUpdates, args=())
|
|
|
|
pixelUpdateThread = Thread(target=loopUpdatePixels, args=())
|
2024-02-08 18:19:24 +00:00
|
|
|
|
2024-02-12 00:27:24 +00:00
|
|
|
settingsUpdateThread.start()
|
|
|
|
pixelUpdateThread.start()
|