7 lines
104 B
Python
7 lines
104 B
Python
|
|
import time
|
||
|
|
|
||
|
|
def ping_loop():
|
||
|
|
while True:
|
||
|
|
# hier später echte Arbeit
|
||
|
|
time.sleep(5)
|