2024-02-17 03:30:56 +00:00
|
|
|
from flask import Flask, request, jsonify
|
2024-02-08 18:24:47 +00:00
|
|
|
import json
|
2024-02-17 03:30:56 +00:00
|
|
|
from MySQLdb import connect
|
2024-02-12 20:55:08 +00:00
|
|
|
import paho.mqtt.client as mqtt
|
2024-02-13 12:49:40 +00:00
|
|
|
import python_artnet as Artnet
|
2024-02-12 21:46:38 +00:00
|
|
|
import os
|
2024-02-12 21:50:54 +00:00
|
|
|
from getmac import get_mac_address
|
2024-02-14 21:15:47 +00:00
|
|
|
import time
|
2024-02-15 10:40:55 +00:00
|
|
|
import sys
|
2024-02-18 12:43:56 +00:00
|
|
|
from multiprocessing import Process, Pipe
|
2024-02-18 14:58:13 +00:00
|
|
|
from ast import literal_eval
|
2024-02-08 17:49:47 +00:00
|
|
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
2024-02-12 23:12:33 +00:00
|
|
|
wlan_mac_address = str(get_mac_address(interface="wlan0"))
|
2024-02-12 21:46:05 +00:00
|
|
|
|
2024-02-08 18:24:47 +00:00
|
|
|
# Read configuration from config.json
|
|
|
|
try:
|
|
|
|
with open('config.json', 'r') as config_file:
|
|
|
|
config = json.load(config_file)
|
|
|
|
except FileNotFoundError:
|
|
|
|
# Create config.json with default values if it doesn't exist
|
|
|
|
config = {
|
|
|
|
"mysql": {
|
|
|
|
"host": "localhost",
|
2024-02-12 16:42:27 +00:00
|
|
|
"user": "pxm",
|
|
|
|
"password": "pixel",
|
2024-02-08 18:24:47 +00:00
|
|
|
"database": "pixeltube_db"
|
2024-02-12 21:24:16 +00:00
|
|
|
},
|
2024-02-08 18:24:47 +00:00
|
|
|
}
|
|
|
|
with open('config.json', 'w') as config_file:
|
|
|
|
json.dump(config, config_file, indent=4)
|
|
|
|
|
2024-02-08 20:58:44 +00:00
|
|
|
database = config['mysql']['database']
|
2024-02-08 17:49:47 +00:00
|
|
|
|
2024-02-17 03:30:56 +00:00
|
|
|
db = connect(
|
2024-02-08 20:58:44 +00:00
|
|
|
host=config['mysql']['host'],
|
|
|
|
user=config['mysql']['user'],
|
|
|
|
password=config['mysql']['password'],
|
|
|
|
database=config['mysql']['database'],
|
|
|
|
)
|
2024-02-08 17:49:47 +00:00
|
|
|
|
2024-02-17 00:22:31 +00:00
|
|
|
db.autocommit(True)
|
|
|
|
|
2024-02-12 21:46:05 +00:00
|
|
|
mqtt_client_id = "PiXelTubeMaster-"+wlan_mac_address
|
2024-02-12 00:27:24 +00:00
|
|
|
|
2024-02-08 17:49:47 +00:00
|
|
|
# Function to register a tube in the database
|
|
|
|
def register_tube(mac_address):
|
2024-02-17 16:08:25 +00:00
|
|
|
cur1 = db.cursor()
|
2024-02-08 17:49:47 +00:00
|
|
|
# Check if the tube already exists in the database
|
2024-02-17 16:08:25 +00:00
|
|
|
cur1.execute("SELECT * FROM tubes WHERE mac_address = %s", (mac_address,))
|
|
|
|
existing_tube = cur1.fetchone()
|
2024-02-08 17:49:47 +00:00
|
|
|
|
2024-02-17 00:02:05 +00:00
|
|
|
# Check if the tube exsist. If it doesn't create a new db row
|
2024-02-17 00:07:11 +00:00
|
|
|
if not existing_tube:
|
2024-02-17 16:08:25 +00:00
|
|
|
cur1.execute("INSERT INTO tubes (mac_address, universe, dmx_address) VALUES (%s, %s, %s)",
|
2024-02-17 00:02:05 +00:00
|
|
|
(mac_address, 0, 1))
|
|
|
|
else:
|
|
|
|
pass
|
2024-02-17 16:08:25 +00:00
|
|
|
cur1.close()
|
2024-02-08 17:49:47 +00:00
|
|
|
|
|
|
|
# Registration system route
|
|
|
|
@app.route('/register_tube', methods=['POST'])
|
|
|
|
def register_tube_route():
|
|
|
|
mac_address = request.form.get('mac_address')
|
2024-02-16 23:52:44 +00:00
|
|
|
register_tube(str(mac_address))
|
2024-02-08 17:49:47 +00:00
|
|
|
return jsonify({'success': True, 'message': 'Tube registered successfully.'})
|
|
|
|
|
2024-02-09 16:35:06 +00:00
|
|
|
|
2024-02-12 00:27:24 +00:00
|
|
|
@app.route('/get_assigned_params/<tube_unique_id>', methods=['GET'])
|
|
|
|
def get_assigned_params(tube_unique_id):
|
2024-02-08 18:19:24 +00:00
|
|
|
try:
|
2024-02-08 20:58:44 +00:00
|
|
|
cur = db.cursor()
|
2024-02-12 00:27:24 +00:00
|
|
|
cur.execute("SELECT universe, dmx_address FROM tubes WHERE mac_address = %s", (tube_unique_id,))
|
2024-02-08 18:19:24 +00:00
|
|
|
result = cur.fetchone()
|
|
|
|
cur.close()
|
|
|
|
|
|
|
|
if result:
|
|
|
|
universe, dmx_address = result
|
|
|
|
return jsonify({'success': True, 'universe': universe, 'dmx_address': dmx_address})
|
|
|
|
else:
|
|
|
|
return jsonify({'success': False, 'message': 'Tube not found in the database'})
|
|
|
|
except Exception as e:
|
|
|
|
return jsonify({'success': False, 'message': f'Error: {e}'})
|
|
|
|
|
2024-02-12 20:55:08 +00:00
|
|
|
def flask_api():
|
2024-02-15 23:02:51 +00:00
|
|
|
app.run(host='192.168.0.1', port=5000)
|
2024-02-08 17:49:47 +00:00
|
|
|
|
2024-02-12 22:14:39 +00:00
|
|
|
def get_eth0_ip():
|
|
|
|
try:
|
|
|
|
# Get the IP address of the eth0 interface
|
2024-02-13 21:46:26 +00:00
|
|
|
eth0_ip = str(os.system("ip -4 -o addr show eth0 | awk '{print $4}' | cut -d '/' -f 1 "))
|
|
|
|
return eth0_ip
|
2024-02-12 22:14:39 +00:00
|
|
|
except (KeyError, IndexError, OSError) as e:
|
|
|
|
print(f"Error getting eth0 IP: {e}")
|
2024-02-13 21:46:26 +00:00
|
|
|
exit
|
2024-02-12 23:22:20 +00:00
|
|
|
|
2024-02-12 23:26:26 +00:00
|
|
|
def on_connect(client, userdata, flags, reason_code, properties):
|
|
|
|
if reason_code == 0:
|
2024-02-12 21:46:05 +00:00
|
|
|
print("Connected to MQTT Broker!")
|
|
|
|
else:
|
2024-02-12 23:26:26 +00:00
|
|
|
print("Failed to connect, return code %d\n", str(reason_code))
|
2024-02-12 23:22:20 +00:00
|
|
|
|
|
|
|
def connect_mqtt():
|
2024-02-12 23:11:47 +00:00
|
|
|
# Set Connecting Client ID
|
2024-02-12 23:29:27 +00:00
|
|
|
client = mqtt.Client(mqtt.CallbackAPIVersion.VERSION2)
|
2024-02-12 23:11:47 +00:00
|
|
|
# client.username_pw_set(username, password)
|
2024-02-12 23:00:51 +00:00
|
|
|
client.on_connect = on_connect
|
|
|
|
client.connect("localhost", 1883)
|
2024-02-12 21:46:05 +00:00
|
|
|
return client
|
|
|
|
|
2024-02-18 15:39:55 +00:00
|
|
|
def mqtt_publisher():
|
2024-02-14 01:52:28 +00:00
|
|
|
# Create and start a thread for each universe
|
2024-02-17 23:08:39 +00:00
|
|
|
mqtt_client = connect_mqtt()
|
2024-02-14 01:18:30 +00:00
|
|
|
artnetBindIp = get_eth0_ip()
|
2024-02-14 21:22:46 +00:00
|
|
|
artNet = Artnet.Artnet(BINDIP = artnetBindIp, DEBUG = True, SHORTNAME = "PiXelTubeMaster", LONGNAME = "PiXelTubeMaster", PORT = 6454)
|
2024-02-16 23:28:22 +00:00
|
|
|
while True:
|
2024-02-18 15:39:55 +00:00
|
|
|
cur = db.cursor()
|
|
|
|
cur.execute("SELECT mac_address, universe, dmx_address FROM tubes")
|
|
|
|
tube_index = cur.fetchall()
|
|
|
|
cur.close()
|
2024-02-18 14:45:22 +00:00
|
|
|
try:
|
|
|
|
# Gets whatever the last Art-Net packet we received is
|
|
|
|
artNetPacket = artNet.readPacket()
|
|
|
|
# Make sure we actually *have* a packet
|
2024-02-18 15:39:55 +00:00
|
|
|
if artNetPacket is not None:
|
|
|
|
#Checks to see if the current packet is for the specified DMX Universe
|
|
|
|
dmxPacket = artNetPacket.data
|
|
|
|
# Create MQTT topic based on the universe and channel
|
|
|
|
if tube_index is not None:
|
|
|
|
for index_row in tube_index:
|
|
|
|
if artNetPacket.universe == int(index_row[1]):
|
|
|
|
dmx_address = int(index_row[2])
|
|
|
|
#Define RGB values per pixel
|
|
|
|
p1_g, p1_b, p1_r, p2_g, p2_b, p2_r, p3_g, p3_b, p3_r, p4_g, p4_b, p4_r, p5_g, p5_b, p5_r, p6_g, p6_b, p6_r = dmxPacket[dmx_address], dmxPacket[dmx_address+1], dmxPacket[dmx_address+2], dmxPacket[dmx_address+3], dmxPacket[dmx_address+4], dmxPacket[dmx_address+5], dmxPacket[dmx_address+6], dmxPacket[dmx_address+7], dmxPacket[dmx_address+8], dmxPacket[dmx_address+9], dmxPacket[dmx_address+10], dmxPacket[dmx_address+11], dmxPacket[dmx_address+12], dmxPacket[dmx_address+13], dmxPacket[dmx_address+14], dmxPacket[dmx_address+15], dmxPacket[dmx_address+16], dmxPacket[dmx_address+17]
|
|
|
|
|
|
|
|
# Pixel topics
|
|
|
|
p1_topic = "tube-"+str(index_row[0])+"/pixel_colors"
|
|
|
|
|
|
|
|
# Publish pixel topic
|
|
|
|
mqtt_client.publish(p1_topic, str([str([p1_r, p1_g, p1_b]), str([p2_r, p2_g, p2_b]), str([p3_r, p3_g, p3_b]), str([p4_r, p4_g, p4_b]), str([p5_r, p5_g, p5_b]), str([p6_r, p6_g, p6_b])]))
|
2024-02-18 14:45:22 +00:00
|
|
|
except KeyboardInterrupt:
|
|
|
|
artNet.close()
|
|
|
|
sys.exit()
|
2024-02-18 12:43:56 +00:00
|
|
|
|
2024-02-17 23:41:47 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2024-02-18 15:39:55 +00:00
|
|
|
publisher_thread = Process(target=mqtt_publisher)
|
2024-02-17 23:41:47 +00:00
|
|
|
publisher_thread.start()
|
|
|
|
flask_thread = Process(target=flask_api)
|
2024-02-18 15:33:09 +00:00
|
|
|
flask_thread.start()
|