From 1cc70b1f8f48dcf74b42343048bace7e1d7e5bbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Ple=C3=9F?= Date: Mon, 11 Aug 2025 19:23:58 +0200 Subject: [PATCH] Added Readme info and added Repo URL to Printer --- README.md | 11 ++++++++++- printer/main.go | 4 ++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 243fbaf..5872c60 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,13 @@ # Blitzer +This is the firmware for the speed camera of the Chaostreff Dortmund (www.ctdo.de). + +We use an old Traffic Speed Camera obtained on www.vebeg.de from Police of Trier in Rhineland-Palatinate. +Most of the old electronic has been replaced by a raspberry pi with a 24GHz Radar sensor. + +https://www.alibaba.com/product-detail/High-Sensitive-24GHz-Speed-Capture-Radar_1601215047787.html + + ## Radar Pinout | Radar | Ethernet | RS485 | @@ -7,4 +15,5 @@ | +12V | Orange | | | GND | Blau | | | RS485 A Braun | GrĂ¼n | T/R+ | -| RS485 B Schwarz | Blau | T/R- | \ No newline at end of file +| RS485 B Schwarz | Blau | T/R- | + diff --git a/printer/main.go b/printer/main.go index 36e883f..d5a4687 100644 --- a/printer/main.go +++ b/printer/main.go @@ -70,6 +70,10 @@ func PrintTicket(ticket db.SpeedingTicket) { printer.WriteWEU("find your ticket including proof online.") printer.LineFeed() printer.LineFeed() + printer.WriteWEU("A project of Chaostreff Dortmund e.V.") + printer.LineFeed() + printer.WriteWEU("https://git.ctdo.de/henne/blitzer-v2") + printer.LineFeed() printer.LineFeed() printer.PrintAndCut() }