Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 1.57 KB

readme.md

File metadata and controls

57 lines (37 loc) · 1.57 KB

Toyota-data-feeder

This is a demo application which playbacks included .csv file indefinitely, and sends it as mqtt message to mqtt broker. Included csv contains raw data dump with mapped signals and units of Toyota RAV4 Hybrid car.

Do note that for the first 5 minutes there is not much happening. This is because the driver of the car was doing something else than driving. Log file takes 13 minutes to playback.

git clone https://github.com/smaddis/toyota-data-feeder.git

Dev environment

Python 3.9

If you want to test application locally, it is recommended to setup Python virtualenv first.

python3 -m venv .venv
source .venv/bin/Activate
pip install -r requirements.txt

Set env variables

export MQTT_URL=localhost MQTT_PORT=8883 CLIENT_ID=foo

MQTT Broker

This application requires an MQTT broker which is set up in a CSC Rahti cloud with correct certificates.

Application uses included ca.crt for establishing encrypted connection but doesn't check for server hostname.

Environment variables

Application takes three env variables

  • MQTT_URL Takes Mqtt broker url
  • MQTT_PORT Mqtt broker port
  • CLIENT_ID Client id

Mqtt topic

Topic format is {CLIENT_ID}/toyota/SIGNAL_NAME

Eg. topic: student069/toyota/SPEED value 34

Other

Thanks for mitchdetailed for providing tool to convert SocketCAN log with DBC file to csv file.

Link to Log-CANverter repo

You can find original log files from /assets folder in this repo