1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2026-03-28 18:06:37 +01:00

Integrate many changes from master

This commit is contained in:
2026-03-18 13:29:57 +01:00
parent b2e67880d3
commit caf833e6ac
107 changed files with 8565 additions and 2688 deletions

19
tools/sendDelay.py Executable file
View File

@@ -0,0 +1,19 @@
#! /usr/bin/env python3
import sys
import os
import time
def usage():
print(f"usage: {sys.argv[0]} file delay")
sys.exit(1)
if len(sys.argv) < 3:
usage()
delay=float(sys.argv[2])
fn=sys.argv[1]
with open (fn,"r") as fh:
for line in fh:
print(line,end="",flush=True)
time.sleep(delay)