שיתוף | ping עם סאונד
-
ולמי שרוצה משהו בקוד פתוח - הנה גרסה בפייתון
from pythonping import ping import winsound frequency = 1000 # frequency in Hertz duration = 100 # length in ms while True: result = ping("8.8.8.8", verbose=True, count=1, interval=1, size=4) if result.rtt_avg_ms is not None: winsound.Beep(frequency, duration)
או, בלי ספריות חיצוניות
import os import winsound frequency = 1000 # frequency in Hertz duration = 100 # length in ms while True: hostname = "8.8.8.8" response = os.system("ping -n 1 " + hostname) if response != 0: winsound.Beep(frequency, duration)