-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.yaml
More file actions
32 lines (26 loc) · 1.16 KB
/
config.yaml
File metadata and controls
32 lines (26 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
broker:
host: c804wg0wsso8kokgwss0w0ks.116.203.177.174.sslip.io
port: 55555
# token: "optional-jwt"
tls:
enabled: false
# root_ca: "/path/to/ca.pem"
# server_name: "localhost"
signals:
# Listen on UDP → publish CURRENT to Databroker
- path: Vehicle.Cabin.Door.Row1.PassengerSide.Window.Position
dtype: uint8 # expects 0..255, will emit 1 byte; use "bool" for 0/1
udp_listen: "0.0.0.0:50000"
# Subscribe TARGET from Databroker → send to UDP, and provide actuation
- path: Vehicle.Cabin.Door.Row1.PassengerSide.Window.Position
dtype: uint8 # expects 0..255, will emit 1 byte; use "bool" for 0/1
udp_send: "127.0.0.1:50001"
provide_actuation: true
- path: Vehicle.Cabin.Door.Row1.DriverSide.Window.Position
dtype: uint8 # expects 0..255, will emit 1 byte; use "bool" for 0/1
udp_listen: "0.0.0.0:50002"
# Subscribe TARGET from Databroker → send to UDP, and provide actuation
- path: Vehicle.Cabin.Door.Row1.DriverSide.Window.Position
dtype: uint8 # expects 0..255, will emit 1 byte; use "bool" for 0/1
udp_send: "127.0.0.1:50003"
provide_actuation: true