NTP-Timeturner/test_ltc_serial.py
Chris Frankland-Wright fb233880d1
Update test_ltc_serial.py
handles dropframe
2025-07-07 19:58:42 +01:00

37 lines
1.3 KiB
Python

import serial
import re
# Adjust as needed
SERIAL_PORT = "/dev/ttyACM0"
BAUD_RATE = 115200
# Updated pattern to match drop-frame (;) and non-drop (:) timecode
ltc_pattern = re.compile(
r"\[(LOCK|FREE)\]\s+(\d{2}:\d{2}:\d{2}[:;]\d{2})\s+\|\s+([\d.]+fps)", re.IGNORECASE
)
def main():
print(f"🔌 Connecting to serial port: {SERIAL_PORT} @ {BAUD_RATE} baud")
try:
with serial.Serial(SERIAL_PORT, BAUD_RATE, timeout=1) as ser:
print("📡 Listening for LTC messages...\n")
while True:
line = ser.readline().decode(errors='ignore').strip()
match = ltc_pattern.match(line)
if match:
status, timecode, framerate = match.groups()
framerate = framerate.upper()
if status == "LOCK":
print(f"🔒 {status:<4} | ⏱ {timecode} | 🎞 {framerate}")
else:
print(f"🟡 {status:<4} | ⏱ {timecode} | 🎞 {framerate}")
else:
if line:
print(f"⚠️ Unrecognised line: {line}")
except serial.SerialException as e:
print(f"❌ Serial error: {e}")
except KeyboardInterrupt:
print("\n🛑 Stopped by user.")
if __name__ == "__main__":
main()