-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.ini
41 lines (38 loc) · 1010 Bytes
/
settings.ini
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
32
33
34
35
36
37
38
39
40
41
; ____ ____ _ _ ____ ___ _ _ ___ __ _ _
; / ___| / ___| \ | |/ ___| |_ _| \ | |_ _| / _(_) | ___
; | | _____| | | \| | | | || \| || | | |_| | |/ _ \
; | |__|_____| |___| |\ | |___ | || |\ || | | _| | | __/
; \____| \____|_| \_|\____| |___|_| \_|___| |_| |_|_|\___|
;
; Comment lines start with ";"
; Comments ARE NOT ALLOWED at the end of line
[test]
number = 5
; a value can be recycled with the $() operator
name = INI file test program (${number})
value = ${number}
[MQTT]
broker_addr = repos.dii.unitn.it
broker_port = 1883
pub_topic = c-cnc/setpoint
;catches either c-cnc/status/positon or c-cnc/status/error
sub_topic = c-cnc/status/#
; for mqtt_test example
topic = ccnc/#
;milliseconds
delay = 1000
[C-CNC]
; max acceleration in mm/s^2
A = 150
; max positioning error
max_error = 0.005
; sampling time
tq = 0.005
; machine origin
origin_x = 0.0
origin_y = 0.0
origin_z = 0.0
; workpiece offset
offset_x = 0.0
offset_y = 0.0
offset_z = 0.0