-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathamur.cfg.in
78 lines (62 loc) · 1.42 KB
/
amur.cfg.in
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
73
74
75
76
77
78
# AmurClient configuration file
version = "0.88";
Amur:
{
gstreamer:
{
size = { width = 640; height = 480; };
fps = 15;
src = "raspivid -o - -t 0 -hf -w 320 -h 240 -fps 15 | gst-launch-1.0 -v fdsrc"
coding = " ! h264parse ! rtph264pay pt=96 config-interval=5 ! "
sink = "udpsinkk host=10.10.10.11 port=1488";
};
misc:
{
pi = 3.141592654;
bigint = 9223372036854775807L;
columns = [ "Last Name", "First Name", "MI" ];
bitmask = 0x1FC3;
};
Logic:
{
};
Network:
{
// address = "127.0.0.1:7777";
};
Peripheral:
{
Encoder:
{
encoderSectorsCount = 100;
maxMotorSpeed = 100;
sampleMultiplier = 3; //default - 3;
};
PWMPins:
{
wheelRightPin = 12;
wheelLeftPin = 13;
handRightPin = 20;
handLeftPin = 21;
};
Registers:
{
usPulseDelay = 1;
HC595Pins:
{
dataPin = 23;
latchClkPin = 25;
clkPin = 24;
nResetPin = 18;
nEnablePin = 16;
};
HC165Pins:
{
dataPin = 4;
clkPin = 17;
clkInhibitePin = 22;
loadPin = 27;
};
};
};
};