-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig-auto.json
72 lines (72 loc) · 1.65 KB
/
config-auto.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"rps_ms": 100,
"__rps_ms": "Generate request every x milliseconds for State Websocket",
"timeframe": 0.1,
"port": 8000,
"car_speed": 30,
"sensor_settings": {
"ultrasonic_c": {
"echo": 27,
"trigger": 22
},
"ultrasonic_l": {
"echo": 16,
"trigger": 26
},
"ultrasonic_r": {
"echo": 6,
"trigger": 5
}
},
"tyre_settings": {
"front_right": {
"forwardPin": 24,
"backwardPin": 25,
"pwmPin": 19
},
"front_left": {
"forwardPin": 11,
"backwardPin": 9,
"pwmPin": 13
},
"back_left": {
"forwardPin": 15,
"backwardPin": 14,
"pwmPin": 12
},
"back_right": {
"forwardPin": 23,
"backwardPin": 17,
"pwmPin": 18
}
},
"camera_settings": {
"camera_c": {
"camera_type": 1,
"__comment_camera_type": "0 mean PICAMERA, 1 mean USB (CAMERA)",
"camera_num": 0,
"__comment_camera_num": "It is specific to USB (CAMERA), 0 mean default, 1 mean second camera and so on...",
"resolution": [160, 120],
"framerate": 10,
"rotation": 0
},
"camera_l": {
"camera_type": 1,
"__comment_camera_type": "0 mean PICAMERA, 1 mean USB (CAMERA)",
"camera_num": 2,
"__comment_camera_num": "It is specific to USB (CAMERA), 0 mean default, 1 mean second camera and so on...",
"resolution": [160, 120],
"framerate": 15,
"rotation": 0
},
"camera_r": {
"camera_type": 1,
"__comment_camera_type": "0 mean PICAMERA, 1 mean USB (CAMERA)",
"camera_num": 1,
"__comment_camera_num": "It is specific to USB (CAMERA), 0 mean default, 1 mean second camera and so on...",
"resolution": [160, 120],
"framerate": 15,
"rotation": 0
}
}
}