Microservice part to swith steering between manual and auto-pilot
Go to file
2023-11-02 16:04:12 +01:00
cmd/rc-steering feat(on-objects): Steering corrector implementation 2022-10-07 12:28:10 +02:00
pkg/steering feat: implement copilot drive mode 2023-10-15 11:56:58 +02:00
vendor Revert "chore: bump gocv to v0.35.0" 2023-11-02 16:04:12 +01:00
.gitignore chore: update gitignore 2022-10-07 12:18:07 +02:00
build-docker.sh feat: implement copilot drive mode 2023-10-15 11:56:58 +02:00
Dockerfile feat: implement copilot drive mode 2023-10-15 11:56:58 +02:00
go.mod Revert "chore: bump gocv to v0.35.0" 2023-11-02 16:04:12 +01:00
go.sum Revert "chore: bump gocv to v0.35.0" 2023-11-02 16:04:12 +01:00
LICENSE First implementation 2020-02-08 22:39:18 +01:00
Makefile First implementation 2020-02-08 22:39:18 +01:00
README.md First implementation 2020-02-08 22:39:18 +01:00

robocar-steering

Microservice part to manage steering

Usage

rc-steering <OPTIONS>
  -mqtt-broker string
        Broker Uri, use MQTT_BROKER env if arg not set (default "tcp://127.0.0.1:1883")
  -mqtt-client-id string
        Mqtt client id, use MQTT_CLIENT_ID env if args not set (default "robocar-steering")
  -mqtt-password string
        Broker Password, MQTT_PASSWORD env if args not set
  -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-topic-drive-mode string
        Mqtt topic that contains DriveMode value, use MQTT_TOPIC_DRIVE_MODE if args not set
  -mqtt-topic-rc-steering string
        Mqtt topic that contains RC steering value, use MQTT_TOPIC_RC_STEERING if args not set
  -mqtt-topic-steering string
        Mqtt topic to publish steering result, use MQTT_TOPIC_STEERING if args not set
  -mqtt-topic-tf-steering string
        Mqtt topic that contains tenorflow steering value, use MQTT_TOPIC_TF_STEERING if args not set
  -mqtt-username string
        Broker Username, use MQTT_USERNAME env if arg not set

Docker build

export DOCKER_CLI_EXPERIMENTAL=enabled
docker buildx build . --platform linux/amd64,linux/arm/7,linux/arm64 -t cyrilix/robocar-steering