10 lines
209 B
Python
10 lines
209 B
Python
#!/usr/bin/python3
|
|
|
|
from Muell import Muell
|
|
|
|
if __name__ == '__main__':
|
|
muell = Muell()
|
|
tonnen, wird = muell.get_data()
|
|
muell.ausgabe_telegram(tonnen, wird)
|
|
muell.ausgabe_signal(tonnen, wird)
|