Signed-off-by: Ebbe Baß <ebbe.bass>
main
Ebbe Baß 2024-02-15 21:14:25 +01:00
parent aea9d23eef
commit b9b8a10db1
1 changed files with 3 additions and 1 deletions

View File

@ -12,7 +12,9 @@ def get_eth0_ip():
print(f"Error getting eth0 IP: {e}")
exit
artnet = Artnet.Artnet(BINDIP=get_eth0_ip)
artNetBindIP = str(get_eth0_ip)
artnet = Artnet.Artnet(BINDIP=artNetBindIP)
while True:
try: