Skip to content

Commit bf293cb

Browse files
committed
added apriltag layout and example code of apriltag align
1 parent a9d2ed7 commit bf293cb

14 files changed

Lines changed: 1017 additions & 236 deletions

File tree

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,5 +183,10 @@ ctre_sim/
183183
/.cache
184184
compile_commands.json
185185

186+
# Build constants
187+
188+
src/main/java/frc/robot/BuildConstants.java
189+
186190
# Eclipse generated file for annotation processors
187191
.factorypath
192+

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,6 @@
6161
"edu.wpi.first.math.**.struct.*",
6262
null
6363
],
64-
"java.dependency.enableDependencyCheckup": false
64+
"java.dependency.enableDependencyCheckup": false,
65+
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -Xlog:disable"
6566
}

simgui-ds.json

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
{
2+
"FMS": {
3+
"window": {
4+
"visible": false
5+
}
6+
},
7+
"Keyboard 0 Settings": {
8+
"window": {
9+
"visible": true
10+
}
11+
},
12+
"keyboardJoysticks": [
13+
{
14+
"axisConfig": [
15+
{
16+
"decKey": 65,
17+
"incKey": 68
18+
},
19+
{
20+
"decKey": 87,
21+
"incKey": 83
22+
},
23+
{
24+
"decKey": 69,
25+
"decayRate": 0.0,
26+
"incKey": 82,
27+
"keyRate": 0.009999999776482582
28+
}
29+
],
30+
"axisCount": 3,
31+
"buttonCount": 5,
32+
"buttonKeys": [
33+
90,
34+
88,
35+
67,
36+
86,
37+
71
38+
],
39+
"povConfig": [
40+
{
41+
"key0": 328,
42+
"key135": 323,
43+
"key180": 322,
44+
"key225": 321,
45+
"key270": 324,
46+
"key315": 327,
47+
"key45": 329,
48+
"key90": 326
49+
}
50+
],
51+
"povCount": 1
52+
},
53+
{
54+
"axisConfig": [
55+
{
56+
"decKey": 74,
57+
"incKey": 76
58+
},
59+
{
60+
"decKey": 73,
61+
"incKey": 75
62+
}
63+
],
64+
"axisCount": 2,
65+
"buttonCount": 4,
66+
"buttonKeys": [
67+
77,
68+
44,
69+
46,
70+
47
71+
],
72+
"povCount": 0
73+
},
74+
{
75+
"axisConfig": [
76+
{
77+
"decKey": 263,
78+
"incKey": 262
79+
},
80+
{
81+
"decKey": 265,
82+
"incKey": 264
83+
}
84+
],
85+
"axisCount": 2,
86+
"buttonCount": 6,
87+
"buttonKeys": [
88+
260,
89+
268,
90+
266,
91+
261,
92+
269,
93+
267
94+
],
95+
"povCount": 0
96+
},
97+
{
98+
"axisCount": 0,
99+
"buttonCount": 0,
100+
"povCount": 0
101+
}
102+
],
103+
"robotJoysticks": [
104+
{
105+
"guid": "Keyboard0"
106+
}
107+
]
108+
}

0 commit comments

Comments
 (0)