How Does It Work?
Rinho is not a simple GPS tracker. It is an intelligent system capable of making decisions autonomously.
The key concept: Trigger - Action
All of Rinho’s functionality is based on simple logic:
IF something happens THEN do something
TRIGGER
→
ACTION
Example: If the vehicle exceeds 120 km/h -> send alert to server + activate buzzer
What can it detect? (Triggers)
The device can react to multiple situations:
Vehicle
- Engine On / Off (ignition)
- Speed (greater or less than X)
- Course change
- Movement / Rest
Location
- Enter geofence
- Exit geofence
- Valid / invalid GPS
Inputs/Outputs
- Digital input change
- Analog threshold (fuel)
- Temperature (1-Wire)
- iButton (identification)
Time
- Every X seconds
- Every X meters
- Scheduled time
- Event timeout
What can it do? (Actions)
When a condition is met, the device can:
| Action | Description |
|---|---|
| Send report | Transmit position and status to server (GPRS/SMS) |
| Generate event | Send alert with specific code |
| Activate output | Turn on relay (engine cut-off, siren, etc.) |
| Deactivate output | Turn off relay |
| Modify flag | Change internal variable for complex logic |
| Increment counter | For statistics (trips, stops, etc.) |
Logic rules: The real power
Rules allow combining conditions to create complex logic:
IF (Speed > 80) AND (Geofence = "School Zone") -> Send alertIF (Ignition = OFF) AND (Movement = YES) -> Towing alertIF (Door = Open) AND (Engine = Running) -> Activate buzzerRules can be enabled/disabled at any time, allowing behavior adaptation according to needs.
How is it programmed?
Everything is configured through text commands sent via:
- Serial port (USB) - Initial configuration
- SMS - Remote configuration
- GPRS - From your tracking platform
Rule example:
>SRL01E;TRG=IN00-;ACC={GCQ99H;TXT=PANICO}{SSSXP0111}<“When input 0 is activated (panic button), send high priority alert and activate output 1 (siren)”
Visual summary
Trigger+Condition=Action
The device constantly evaluates and executes rules autonomously
Last updated