Microservice part to manage leds
Go to file
2020-03-01 18:48:48 +01:00
cmd/rc-led Refactor exit handle 2019-12-18 00:28:15 +01:00
led Upgrade dependencies 2020-03-01 18:48:48 +01:00
part Upgrade dependencies 2020-03-01 18:48:48 +01:00
vendor Upgrade dependencies 2020-03-01 18:48:48 +01:00
.gitignore First implementation 2019-12-14 11:57:51 +01:00
.sonarcloud.properties [sonarqube] Exclude vendor directory 2019-12-18 18:49:36 +01:00
Dockerfile First implementation 2019-12-14 11:57:51 +01:00
go.mod Upgrade dependencies 2020-03-01 18:48:48 +01:00
go.sum Upgrade dependencies 2020-03-01 18:48:48 +01:00
LICENSE First implementation 2019-12-14 11:57:51 +01:00
Makefile Add makefile 2020-01-28 23:31:54 +01:00
README.md First implementation 2019-12-14 11:57:51 +01:00

robocar-led

Microservice part to manage leds

Usage

rc-led <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-led") -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-record string Mqtt topic that contains video recording state, use MQTT_TOPIC_RECORD 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-led