Skip to content

Instantly share code, notes, and snippets.

View MoffKalast's full-sized avatar

MoffKalast

  • Slovenia
View GitHub Profile
@MoffKalast
MoffKalast / pain.md
Last active April 29, 2025 11:11 — forked from peci1/pain.md
ROS 2 migration pain points

Launch

@MoffKalast
MoffKalast / tracker.py
Created January 27, 2025 13:57
Cerulean Tracker-650 Python
import socket
from datetime import datetime
def parse_dvkfc(message):
# Split the message into fields, but remove the checksum part first
message = message.split('*')[0] # Remove checksum
fields = message.split(',')
if len(fields) < 25 or not fields[0] == '$DVKFC':
return None