Signed-off-by: Ebbe Baß <ebbe.bass>
main
Ebbe Baß 2024-02-13 16:51:50 +01:00
parent bf077cd919
commit 025a973311
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ def get_eth0_ip():
try: try:
# Get the IP address of the eth0 interface # Get the IP address of the eth0 interface
eth0_ip = netifaces.ifaddresses('eth0')[netifaces.AF_INET][0]['addr'] eth0_ip = netifaces.ifaddresses('eth0')[netifaces.AF_INET][0]['addr']
return str(eth0_ip) return eth0_ip
except (KeyError, IndexError, OSError) as e: except (KeyError, IndexError, OSError) as e:
print(f"Error getting eth0 IP: {e}") print(f"Error getting eth0 IP: {e}")
return None return None
@ -18,7 +18,7 @@ debug = True
dmxChannels = [1,2,3,4,5,6] dmxChannels = [1,2,3,4,5,6]
### ArtNet Config ### ### ArtNet Config ###
print(get_eth0_ip()) print(str(get_eth0_ip()))
artnetBindIp = get_eth0_ip() artnetBindIp = get_eth0_ip()
artnetUniverse = 0 artnetUniverse = 0