2024-02-08 18:19:24 +00:00
|
|
|
import os
|
2024-02-16 18:23:24 +00:00
|
|
|
import subprocess
|
2024-02-16 18:12:16 +00:00
|
|
|
import neopixel
|
2024-02-08 18:19:24 +00:00
|
|
|
import requests
|
|
|
|
import json
|
2024-02-12 00:27:24 +00:00
|
|
|
import time
|
|
|
|
from threading import Thread
|
2024-02-12 20:55:08 +00:00
|
|
|
import paho.mqtt.client as mqtt
|
2024-02-12 21:50:54 +00:00
|
|
|
from getmac import get_mac_address
|
2024-02-16 18:13:57 +00:00
|
|
|
import board
|
2024-02-08 18:19:24 +00:00
|
|
|
|
2024-02-16 23:43:50 +00:00
|
|
|
SERVER_IP = '192.168.0.1'
|
|
|
|
SERVER_PORT = 5000
|
2024-02-08 18:19:24 +00:00
|
|
|
|
|
|
|
# Dynamically obtain the MAC address of the WLAN interface
|
2024-02-12 23:12:53 +00:00
|
|
|
wlan_mac_address = str(get_mac_address(interface="wlan0"))
|
2024-02-08 18:19:24 +00:00
|
|
|
|
|
|
|
# Replace with the GPIO pin connected to the data input of the WS2812B LED strip
|
2024-02-16 18:13:57 +00:00
|
|
|
LED_STRIP_PIN = board.D18
|
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-16 18:20:03 +00:00
|
|
|
strip = neopixel.NeoPixel(pin = LED_STRIP_PIN, n = LED_COUNT, auto_write = True, pixel_order = neopixel.RGB)
|
2024-02-08 18:19:24 +00:00
|
|
|
|
|
|
|
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})
|
2024-02-16 23:49:04 +00:00
|
|
|
print(response)
|
2024-02-08 18:19:24 +00:00
|
|
|
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():
|
2024-02-16 23:48:09 +00:00
|
|
|
output = subprocess.check_output(['iwgetid']).decode()
|
2024-02-16 23:45:28 +00:00
|
|
|
return output.split('"')[1]
|
2024-02-12 00:27:24 +00:00
|
|
|
|
2024-02-16 23:43:50 +00:00
|
|
|
# def update_led_strip(rgb_values, pixel, strip):
|
|
|
|
# for i in range(LEDS_PER_PIXEL):
|
|
|
|
# strip[int(pixel)] = Color(rgb_values[i])
|
2024-02-12 00:27:24 +00:00
|
|
|
|
2024-02-16 23:43:50 +00:00
|
|
|
# def mqtt_listner(msg, universe, dmx_address, strip, LEDS_PER_PIXEL):
|
|
|
|
# try:
|
|
|
|
# # Parse the topic to get universe and channel
|
|
|
|
# _, dmx_universe, channel_number = msg.topic.split("/")
|
|
|
|
# channel_number = int(channel_number)
|
|
|
|
|
|
|
|
# # Calculate the pixel index and channel within the pixel
|
|
|
|
# pixel_index = (channel_number - dmx_address) // LEDS_PER_PIXEL
|
|
|
|
# channel_in_pixel = (channel_number - dmx_address) % LEDS_PER_PIXEL
|
2024-02-16 23:23:19 +00:00
|
|
|
|
2024-02-16 23:43:50 +00:00
|
|
|
# # Initialize a new pixel entry if not present
|
|
|
|
# if pixel_index not in pixel_data:
|
|
|
|
# pixel_data[pixel_index] = [0] * LEDS_PER_PIXEL
|
2024-02-16 23:23:19 +00:00
|
|
|
|
2024-02-16 23:43:50 +00:00
|
|
|
# # Update the RGB value for the corresponding channel in the pixel
|
|
|
|
# pixel_data[pixel_index][channel_in_pixel] = int(msg.payload)
|
2024-02-16 23:23:19 +00:00
|
|
|
|
2024-02-16 23:43:50 +00:00
|
|
|
# # Check if all three channels for the pixel are received
|
|
|
|
# if len(pixel_data[pixel_index]) == LEDS_PER_PIXEL:
|
|
|
|
# # Set the RGB values for the pixel in the LED strip
|
|
|
|
# update_led_strip(pixel_index, pixel_data[pixel_index], strip)
|
2024-02-16 23:23:19 +00:00
|
|
|
|
2024-02-16 23:43:50 +00:00
|
|
|
# # Remove the pixel entry from the temporary storage
|
|
|
|
# del pixel_data[pixel_index]
|
2024-02-16 23:23:19 +00:00
|
|
|
|
2024-02-16 23:43:50 +00:00
|
|
|
# except Exception as e:
|
|
|
|
# print(f"Error: {e}")
|
2024-02-16 23:23:19 +00:00
|
|
|
|
2024-02-16 23:43:50 +00:00
|
|
|
|
|
|
|
# def on_message(mqttc, obj, msg):
|
|
|
|
# mqtt_listner(msg)
|
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()
|
2024-02-16 23:58:45 +00:00
|
|
|
print(universe, dmx_address)
|
2024-02-12 00:27:24 +00:00
|
|
|
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
|
|
|
|
2024-02-08 18:19:24 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
# Connect to Wi-Fi
|
2024-02-16 18:24:17 +00:00
|
|
|
if is_connected_to_wifi() is not None:
|
2024-02-08 18:19:24 +00:00
|
|
|
# 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()
|
2024-02-08 18:19:24 +00:00
|
|
|
|
2024-02-16 23:43:50 +00:00
|
|
|
# mqttc = mqtt.Client(mqtt.CallbackAPIVersion.VERSION2)
|
|
|
|
# mqttc.connect("192.168.0.1", 1883, 60)
|
|
|
|
# mqttc.on_message = on_message
|
|
|
|
# mqttc.subscribe("PiXelTubes/"+str(universe), 0)
|
2024-02-16 18:42:33 +00:00
|
|
|
|
2024-02-12 00:27:24 +00:00
|
|
|
settingsUpdateThread = Thread(target=loopCheckSettingUpdates, args=())
|
2024-02-16 23:43:50 +00:00
|
|
|
# pixelUpdateThread = Thread(target=mqtt_listner, args=(universe, dmx_address, strip, LEDS_PER_PIXEL))
|
2024-02-08 18:19:24 +00:00
|
|
|
|
2024-02-12 00:27:24 +00:00
|
|
|
settingsUpdateThread.start()
|
2024-02-16 23:43:50 +00:00
|
|
|
# pixelUpdateThread.start()
|