From 11e1ea114472e9ff602e0ef1335ee298882ad9fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Tue, 13 Feb 2024 00:12:53 +0100 Subject: [PATCH] fixed mac address on client MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- client/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/main.py b/client/main.py index a7e4bb1..8a4199f 100644 --- a/client/main.py +++ b/client/main.py @@ -14,7 +14,7 @@ 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 = get_mac_address(interface="wlan0") +wlan_mac_address = str(get_mac_address(interface="wlan0")) # Replace with the GPIO pin connected to the data input of the WS2812B LED strip LED_STRIP_PIN = 18