313 lines
8.5 KiB
Go
313 lines
8.5 KiB
Go
package arduino
|
|
|
|
import (
|
|
"bufio"
|
|
"github.com/cyrilix/robocar-protobuf/go/events"
|
|
mqtt "github.com/eclipse/paho.mqtt.golang"
|
|
"github.com/tarm/serial"
|
|
"go.uber.org/zap"
|
|
"google.golang.org/protobuf/proto"
|
|
"io"
|
|
"regexp"
|
|
"strconv"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
MinPwmThrottle = 972.0
|
|
MaxPwmThrottle = 1954.0
|
|
)
|
|
|
|
var (
|
|
serialLineRegex = regexp.MustCompile(`(?P<timestamp>\d+),(?P<channel_1>\d+),(?P<channel_2>\d+),(?P<channel_3>\d+),(?P<channel_4>\d+),(?P<channel_5>\d+),(?P<channel_6>\d+),(?P<channel_7>\d+),(?P<channel_8>\d+),(?P<frequency>\d+)`)
|
|
)
|
|
|
|
type Part struct {
|
|
client mqtt.Client
|
|
throttleTopic, steeringTopic, driveModeTopic, switchRecordTopic string
|
|
pubFrequency float64
|
|
serial io.Reader
|
|
mutex sync.Mutex
|
|
steering float32
|
|
throttle float32
|
|
ctrlRecord bool
|
|
driveMode events.DriveMode
|
|
cancel chan interface{}
|
|
|
|
pwmSteeringConfig PWMSteeringConfig
|
|
pwmThrottleConfig PWMThrottleConfig
|
|
}
|
|
|
|
type PWMThrottleConfig struct {
|
|
Min int
|
|
Max int
|
|
Zero int
|
|
}
|
|
|
|
type PWMSteeringConfig struct {
|
|
Left int
|
|
Right int
|
|
Center int
|
|
}
|
|
|
|
func NewPWMSteeringConfig(min, max int) PWMSteeringConfig {
|
|
return PWMSteeringConfig{
|
|
Left: min,
|
|
Right: max,
|
|
Center: min + (max-min)/2,
|
|
}
|
|
}
|
|
|
|
func NewAsymetricPWMSteeringConfig(min, max, middle int) PWMSteeringConfig {
|
|
c := NewPWMSteeringConfig(min, max)
|
|
c.Center = middle
|
|
return c
|
|
}
|
|
|
|
func NewPart(client mqtt.Client, name string, baud int, throttleTopic, steeringTopic, driveModeTopic,
|
|
switchRecordTopic string, pubFrequency float64, steeringConfig PWMSteeringConfig, throttleConfig PWMThrottleConfig) *Part {
|
|
c := &serial.Config{Name: name, Baud: baud}
|
|
s, err := serial.OpenPort(c)
|
|
if err != nil {
|
|
zap.S().Panicw("unable to open serial port: %v", err)
|
|
}
|
|
return &Part{
|
|
client: client,
|
|
serial: s,
|
|
throttleTopic: throttleTopic,
|
|
steeringTopic: steeringTopic,
|
|
driveModeTopic: driveModeTopic,
|
|
switchRecordTopic: switchRecordTopic,
|
|
pubFrequency: pubFrequency,
|
|
driveMode: events.DriveMode_INVALID,
|
|
cancel: make(chan interface{}),
|
|
|
|
pwmSteeringConfig: steeringConfig,
|
|
pwmThrottleConfig: throttleConfig,
|
|
}
|
|
}
|
|
|
|
func (a *Part) Start() error {
|
|
zap.S().Info("start arduino part")
|
|
go a.publishLoop()
|
|
for {
|
|
buff := bufio.NewReader(a.serial)
|
|
line, err := buff.ReadString('\n')
|
|
if err == io.EOF || line == "" {
|
|
zap.S().Error("remote connection closed")
|
|
break
|
|
}
|
|
|
|
zap.L().Debug("raw line: %s", zap.String("raw", line))
|
|
if !serialLineRegex.MatchString(line) {
|
|
zap.S().Errorf("invalid line: '%v'", line)
|
|
continue
|
|
}
|
|
values := strings.Split(strings.TrimSuffix(strings.TrimSuffix(line, "\n"), "\r"), ",")
|
|
|
|
a.updateValues(values)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (a *Part) updateValues(values []string) {
|
|
a.mutex.Lock()
|
|
defer a.mutex.Unlock()
|
|
a.processChannel1(values[1])
|
|
a.processChannel2(values[2])
|
|
a.processChannel3(values[3])
|
|
a.processChannel4(values[4])
|
|
a.processChannel5(values[5])
|
|
a.processChannel6(values[6])
|
|
}
|
|
|
|
func (a *Part) Stop() {
|
|
zap.S().Info("stop ArduinoPart")
|
|
close(a.cancel)
|
|
switch s := a.serial.(type) {
|
|
case io.ReadCloser:
|
|
if err := s.Close(); err != nil {
|
|
zap.S().Fatalf("unable to close serial port: %v", err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (a *Part) processChannel1(v string) {
|
|
zap.L().Debug("process new value for steering on channel1", zap.String("value", v))
|
|
value, err := strconv.Atoi(v)
|
|
if err != nil {
|
|
zap.S().Errorf("invalid steering value for channel1, should be an int: %v", err)
|
|
}
|
|
a.steering = convertPwmSteeringToPercent(value, a.pwmSteeringConfig.Left, a.pwmSteeringConfig.Right, a.pwmSteeringConfig.Center)
|
|
}
|
|
|
|
func convertPwmSteeringToPercent(value int, minPwm int, maxPwm int, middlePwm int) float32 {
|
|
if value < minPwm {
|
|
value = minPwm
|
|
} else if value > maxPwm {
|
|
value = maxPwm
|
|
}
|
|
if value == middlePwm {
|
|
return 0.
|
|
}
|
|
if value < middlePwm {
|
|
return (float32(value) - float32(middlePwm)) / float32(middlePwm-minPwm)
|
|
}
|
|
// middle < value < max
|
|
return (float32(value) - float32(middlePwm)) / float32(maxPwm-middlePwm)
|
|
}
|
|
|
|
func (a *Part) processChannel2(v string) {
|
|
zap.L().Debug("process new throttle value on channel2", zap.String("value", v))
|
|
value, err := strconv.Atoi(v)
|
|
if err != nil {
|
|
zap.S().Errorf("invalid throttle value for channel2, should be an int: %v", err)
|
|
}
|
|
if value < a.pwmThrottleConfig.Min {
|
|
value = a.pwmThrottleConfig.Min
|
|
} else if value > a.pwmThrottleConfig.Max {
|
|
value = a.pwmThrottleConfig.Max
|
|
}
|
|
|
|
throttle := 0.
|
|
if value > a.pwmThrottleConfig.Zero {
|
|
throttle = (float64(value) - float64(a.pwmThrottleConfig.Zero)) / float64(a.pwmThrottleConfig.Max-a.pwmThrottleConfig.Zero)
|
|
}
|
|
if value < a.pwmThrottleConfig.Zero {
|
|
throttle = -1. * (float64(a.pwmThrottleConfig.Zero) - float64(value)) / (float64(a.pwmThrottleConfig.Zero - a.pwmThrottleConfig.Min))
|
|
}
|
|
|
|
a.throttle = float32(throttle)
|
|
}
|
|
|
|
func (a *Part) processChannel3(v string) {
|
|
zap.L().Debug("process new value for channel3", zap.String("value", v))
|
|
}
|
|
|
|
func (a *Part) processChannel4(v string) {
|
|
zap.L().Debug("process new value for channel4", zap.String("value", v))
|
|
}
|
|
|
|
func (a *Part) processChannel5(v string) {
|
|
zap.L().Debug("process new value for channel5", zap.String("value", v))
|
|
|
|
value, err := strconv.Atoi(v)
|
|
if err != nil {
|
|
zap.S().Errorf("invalid value for channel5 'record', should be an int: %v", err)
|
|
}
|
|
|
|
if value < 1800 {
|
|
if !a.ctrlRecord {
|
|
zap.S().Infof("Update channel 5 with value %v, record: %v", true, false)
|
|
a.ctrlRecord = true
|
|
}
|
|
} else {
|
|
if a.ctrlRecord {
|
|
zap.S().Infof("Update channel 5 with value %v, record: %v", false, true)
|
|
a.ctrlRecord = false
|
|
}
|
|
}
|
|
}
|
|
|
|
func (a *Part) processChannel6(v string) {
|
|
zap.L().Debug("process new value for channel6", zap.String("value", v))
|
|
value, err := strconv.Atoi(v)
|
|
if err != nil {
|
|
zap.S().Errorf("invalid value for channel6 'drive-mode', should be an int: %v", err)
|
|
return
|
|
}
|
|
if value > 1800 {
|
|
if a.driveMode != events.DriveMode_PILOT {
|
|
zap.S().Infof("Update channel 6 'drive-mode' with value %v, new user_mode: %v", value, events.DriveMode_PILOT)
|
|
a.driveMode = events.DriveMode_PILOT
|
|
}
|
|
} else {
|
|
if a.driveMode != events.DriveMode_USER {
|
|
zap.S().Infof("Update channel 6 'drive-mode' with value %v, new user_mode: %v", value, events.DriveMode_USER)
|
|
}
|
|
a.driveMode = events.DriveMode_USER
|
|
}
|
|
}
|
|
|
|
func (a *Part) publishLoop() {
|
|
ticker := time.NewTicker(time.Second / time.Duration(int(a.pubFrequency)))
|
|
|
|
for {
|
|
select {
|
|
case <-ticker.C:
|
|
a.publishValues()
|
|
case <-a.cancel:
|
|
ticker.Stop()
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
func (a *Part) publishValues() {
|
|
a.mutex.Lock()
|
|
defer a.mutex.Unlock()
|
|
|
|
a.publishThrottle()
|
|
a.publishSteering()
|
|
a.publishDriveMode()
|
|
a.publishSwitchRecord()
|
|
}
|
|
|
|
func (a *Part) publishThrottle() {
|
|
throttle := events.ThrottleMessage{
|
|
Throttle: a.throttle,
|
|
Confidence: 1.0,
|
|
}
|
|
throttleMessage, err := proto.Marshal(&throttle)
|
|
if err != nil {
|
|
zap.S().Errorf("unable to marshal protobuf throttle message: %v", err)
|
|
return
|
|
}
|
|
zap.L().Debug("throttle channel", zap.Float32("throttle", a.throttle))
|
|
publish(a.client, a.throttleTopic, throttleMessage)
|
|
}
|
|
|
|
func (a *Part) publishSteering() {
|
|
steering := events.SteeringMessage{
|
|
Steering: a.steering,
|
|
Confidence: 1.0,
|
|
}
|
|
steeringMessage, err := proto.Marshal(&steering)
|
|
if err != nil {
|
|
zap.S().Errorf("unable to marshal protobuf steering message: %v", err)
|
|
return
|
|
}
|
|
zap.L().Debug("steering channel", zap.Float32("steering", a.steering))
|
|
publish(a.client, a.steeringTopic, steeringMessage)
|
|
}
|
|
|
|
func (a *Part) publishDriveMode() {
|
|
dm := events.DriveModeMessage{
|
|
DriveMode: a.driveMode,
|
|
}
|
|
driveModeMessage, err := proto.Marshal(&dm)
|
|
if err != nil {
|
|
zap.S().Errorf("unable to marshal protobuf driveMode message: %v", err)
|
|
return
|
|
}
|
|
publish(a.client, a.driveModeTopic, driveModeMessage)
|
|
}
|
|
|
|
func (a *Part) publishSwitchRecord() {
|
|
sr := events.SwitchRecordMessage{
|
|
Enabled: !a.ctrlRecord,
|
|
}
|
|
switchRecordMessage, err := proto.Marshal(&sr)
|
|
if err != nil {
|
|
zap.S().Errorf("unable to marshal protobuf SwitchRecord message: %v", err)
|
|
return
|
|
}
|
|
publish(a.client, a.switchRecordTopic, switchRecordMessage)
|
|
}
|
|
|
|
var publish = func(client mqtt.Client, topic string, payload []byte) {
|
|
client.Publish(topic, 0, false, payload)
|
|
}
|