MQTT gateway for [robocar simulator](https://github.com/tawnkramer/gym-donkeycar)
Go to file
2022-06-09 18:09:49 +02:00
.github/workflows [CI/CD] Run tests 2021-01-23 15:44:54 +01:00
cmd/rc-simulator refacto(log): configure log level 2022-01-03 19:44:05 +01:00
pkg chore: update dependencies 2022-01-03 19:49:33 +01:00
vendor chore: upgrade dependencies 2022-06-09 18:09:49 +02:00
.Dockerignore Build docker images 2021-01-23 15:44:49 +01:00
.gitignore build: exclude binary from git history 2022-01-03 19:46:09 +01:00
build-docker.sh build: exclude binary from git history 2022-01-03 19:46:09 +01:00
Dockerfile build: upgrade to go 1.17 and dependencies 2021-09-01 22:13:52 +02:00
go.mod chore: upgrade dependencies 2022-06-09 18:09:49 +02:00
go.sum chore: upgrade dependencies 2022-06-09 18:09:49 +02:00
LICENSE Configure repository 2021-01-23 15:42:21 +01:00
README.md Fix README 2021-02-01 17:03:12 +01:00

robocar-simulator

MQTT gateway for robocar simulator

Usage

Usage of ./rc-simulator:
  -debug
        Debug logs
  -events-topic-frame string
        Mqtt topic to events gateway frames, use MQTT_TOPIC_CAMERA if args not set
  -events-topic-steering string
        Mqtt topic to events gateway steering, use MQTT_TOPIC_STEERING if args not set
  -events-topic-throttle string
        Mqtt topic to events gateway throttle, use MQTT_TOPIC_THROTTLE if args not set
  -mqtt-broker string
        Broker Uri, use MQTT_BROKER env if arg not set (default "tcp://diabolo.local:1883")
  -mqtt-client-id string
        Mqtt client id, use MQTT_CLIENT_ID env if args not set (default "robocar-simulator")
  -mqtt-password string
        Broker Password, MQTT_PASSWORD env if args not set (default "satanas")
  -mqtt-qos int
        Qos to pusblish message, use MQTT_QOS env if arg not set
  -mqtt-retain
        Retain mqtt message, if not set, true if MQTT_RETAIN env variable is set
  -mqtt-username string
        Broker Username, use MQTT_USERNAME env if arg not set (default "satanas")
  -simulator-address string
        Simulator address (default "127.0.0.1:9091")
  -topic-steering-ctrl string
        Mqtt topic to send steering instructions, use MQTT_TOPIC_STEERING_CTRL if args not set
  -topic-throttle-ctrl string
        Mqtt topic to send throttle instructions, use MQTT_TOPIC_THROTTLE_CTRL if args not set

Docker

To build images, run:

docker buildx build . --platform linux/arm/7,linux/arm64,linux/amd64 -t cyrilix/robocar-simulator