-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathchickenfoot.json
46 lines (46 loc) · 978 Bytes
/
chickenfoot.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
{
"arduino" : {
"nanpy_dev" : "/dev/tty.usbmodem1411"
},
"communication" : {
"type" : "tcp",
"parameters" : {
"ip" : "0.0.0.0",
"port": 5005
}
},
"modules" : [
{
"name":"M1",
"type":"FrontMotor",
"parameters" : {
"cp1": 4,
"cp2": 5,
"ep" : 10
}
},
{
"name":"M2",
"type":"BackMotor",
"parameters" : {
"cp1": 2,
"cp2": 3,
"ep" : 9
}
}
],
"services" : {
"TemperatureSensor" : {
"communication" : {
"type" : "tcp",
"parameters" : {
"ip" : "0.0.0.0",
"port": 5006
}
},
"parameters" : {
"tp1": 7
}
}
}
}