Skip to main content

Speed Violation Monitoring

Monitor and report speed limit violations using the GS command.

Setup

1. Define Speed Limit

>SGS0010800< <- S00 activates when speed > 80 mph

2. Create Events

>SED10NA0;S00+< <- Report when speed exceeded
>SED11NA0;S00-< <- Report when speed drops back to normal

3. Track Over-Speed Time

The built-in CS counter accumulates total time spent over any speed limit:

>QXACSV<
>RXACSV000000300< <- 5 minutes over speed limit

Include in reports:

>SXAEFA;CS<

4. Prevent Report Spam (Optional)

Add a delay if speed fluctuates around the threshold:

>SXASP01S00010010< <- 10-second delay before S00 changes state

Multiple Speed Zones

>SGS00800< <- S00: city speed (80 km/h)
>SGS01000< <- S01: highway speed (100 km/h)
>SGS01200< <- S02: absolute maximum (120 km/h)

>SED10NA0;S00+< <- Over city speed
>SED11NA0;S01+< <- Over highway speed
>SED12NA0;S02+< <- Over absolute max