Skip to content

Commit f19c5fe

Browse files
Initial Commit of the Logomotion Robot Code.
0 parents  commit f19c5fe

File tree

362 files changed

+6807
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

362 files changed

+6807
-0
lines changed

BSD_License_for_WPILib_code.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
* Copyright (c) 2009 FIRST
2+
* All rights reserved.
3+
*
4+
* Redistribution and use in source and binary forms, with or without
5+
* modification, are permitted provided that the following conditions are met:
6+
* * Redistributions of source code must retain the above copyright
7+
* notice, this list of conditions and the following disclaimer.
8+
* * Redistributions in binary form must reproduce the above copyright
9+
* notice, this list of conditions and the following disclaimer in the
10+
* documentation and/or other materials provided with the distribution.
11+
* * Neither the name of the FIRST nor the
12+
* names of its contributors may be used to endorse or promote products
13+
* derived from this software without specific prior written permission.
14+
*
15+
* THIS SOFTWARE IS PROVIDED BY FIRST AND CONTRIBUTORS``AS IS'' AND ANY
16+
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17+
* WARRANTIES OF MERCHANTABILITY NONINFRINGEMENT AND FITNESS FOR A PARTICULAR
18+
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL FIRST OR CONTRIBUTORS BE LIABLE FOR
19+
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

build.properties

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Properties file for a Sun Spot Application
2+
#
3+
# build.properties
4+
#
5+
# This file is the default location for user properties that over-ride the
6+
# defaults in ${sunspot.home}/default.properties. See that file for a full
7+
# listing of the properties that may be set. This file is minimal and contains
8+
# only those properties that a user would generally need to set right away.
9+
#
10+
user.classpath=${wpilibj.home}/src

build.xml

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><project basedir="." default="help" name="Logomotion_v5">
2+
3+
<!-- You may freely edit this file. See commented blocks below for -->
4+
<!-- some examples of how to customize the build. -->
5+
6+
<!--
7+
8+
The master build file lives at: ${sunspot.home}/build.xml.
9+
10+
If you do not have a Sun SPOT properties file for some reason,
11+
then you can set the sunspot.home property manually.
12+
13+
<property name="sunspot.home" value="/opt/sunspot"/>
14+
15+
The behavior of the build is also controled through properties.
16+
For example, to use a different source directory, you can set
17+
the property 'src.dir'.
18+
19+
<property name="src.dir" value="mysrc"/>
20+
21+
For a complete listing of properties that are used, and their
22+
explanations, see the file ${sunspot.home}/default.properties.
23+
24+
-->
25+
26+
<property name="user.properties.file" value="build.properties"/>
27+
<property file="${user.home}/.sunspotfrc.properties"/>
28+
<import file="${sunspot.home}/build.xml"/>
29+
30+
<!--
31+
32+
This file imports the master build file for compiling and deploying sunspot
33+
applications. This file provides hooks for the user build file, so that
34+
you can accomplish almost anything without having to rewrite any of the
35+
build procedures. However, if need be, you can just look at the imported
36+
build file to determine how exactly any step is accomplished.
37+
38+
Of course, another useful way to find out exactly what is happening is to
39+
run the targets listed below with ant's 'verbose' flag (ant -v). This will
40+
display exactly what is happening at each step.
41+
42+
Some important targets that are defined within the master build file are:
43+
(Do "ant help" to see the full list.)
44+
45+
init: initialize and check all properties
46+
help: display useful a help message
47+
environment displays information about setting up your environment
48+
sdk-info displays information about the current SDK installation
49+
find-spots locate USB ports where SPOTs are connected
50+
info displays information about the configuration of a SPOT
51+
slots displays a list of the applications deployed on the SPOT
52+
53+
clean: delete all compiled/generated files
54+
compile: compiles java source files to classes
55+
jar-app Create a jar for this application
56+
deploy deploy the application to a SPOT as an IMlet
57+
jar-deploy deploy an IMlet jar
58+
run connect to a device and watch the application
59+
debug-run configure the SPOT ro run the debug agent and then start the debug proxy
60+
debug-proxy-run start the proxy for the high-level debugger
61+
62+
Some useful command line properties:
63+
64+
-Dbasestation.addr=1234 set the address of the basestation
65+
-DremoteId=1234 set the target for remote run/deploy/debug-proxy-run
66+
-Dsquawk.startup.class=com.example.MyStartUp
67+
set an alternative startup class name
68+
-Dspotport=COM2 set the port name for communicating with the SPOT
69+
-Djar.file=example.jar set the jar file for jar-app, jar-deploy and make-host-jar
70+
-Dmidlet=2 select a midlet to run for selectapplication
71+
or deploy targets (defaults to 1)
72+
-Dutility.jars=utils.jar a classpath separator delimited list of jars to be
73+
included with the application
74+
75+
There exist several targets which are by default empty and which can be
76+
used for execution of your tasks. These targets are usually executed
77+
before and after some main targets. They are defined as follows:
78+
79+
For each target above (except help),
80+
81+
-pre-<target>: called before the target
82+
-post-<target>: called after the target
83+
84+
For example, inserting an echo statement after compilation could look like this:
85+
86+
<target name="-post-compile">
87+
<echo>Compile finished!</echo>
88+
</target>
89+
90+
For more information on using ant, see http://ant.apache.org.
91+
92+
-->
93+
</project>

build/com/ni/rio/NiRioConstants.class

3.94 KB
Binary file not shown.

build/com/ni/rio/NiRioSrv.class

5.95 KB
Binary file not shown.
Binary file not shown.

build/com/ni/rio/NiRioStatus.class

5.05 KB
Binary file not shown.

build/edu/adk/core/Autonomous.class

1.57 KB
Binary file not shown.
781 Bytes
Binary file not shown.
677 Bytes
Binary file not shown.

build/edu/adk/core/Target.class

3.23 KB
Binary file not shown.

build/edu/adk/core/Tracker.class

2.1 KB
Binary file not shown.
2.32 KB
Binary file not shown.

build/edu/adk/maneuver/Cap.class

1.25 KB
Binary file not shown.
910 Bytes
Binary file not shown.
1.28 KB
Binary file not shown.

build/edu/adk/maneuver/Maneuver.class

1.67 KB
Binary file not shown.

build/edu/adk/maneuver/Spitt.class

1.02 KB
Binary file not shown.

build/edu/adk/mechanism/Arm.class

2.03 KB
Binary file not shown.

build/edu/adk/mechanism/Claw.class

2.78 KB
Binary file not shown.

build/edu/adk/mechanism/Drive.class

3.76 KB
Binary file not shown.
159 Bytes
Binary file not shown.

build/edu/adk/mechanism/MiniBot.class

1.49 KB
Binary file not shown.

build/edu/team2648/MyRobot.class

8.26 KB
Binary file not shown.

build/edu/team2648/PositionEnum.class

2.16 KB
Binary file not shown.

build/edu/team2648/position.class

1.75 KB
Binary file not shown.

build/edu/team2648/tolerence.class

533 Bytes
Binary file not shown.
356 Bytes
Binary file not shown.
5.14 KB
Binary file not shown.
4.38 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
900 Bytes
Binary file not shown.
Binary file not shown.
699 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
16 KB
Binary file not shown.
861 Bytes
Binary file not shown.
8.3 KB
Binary file not shown.
Binary file not shown.
402 Bytes
Binary file not shown.
Binary file not shown.
5.43 KB
Binary file not shown.
3.11 KB
Binary file not shown.
7.33 KB
Binary file not shown.
447 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
8.31 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
9.4 KB
Binary file not shown.
667 Bytes
Binary file not shown.
1.17 KB
Binary file not shown.

build/edu/wpi/first/wpilibj/I2C.class

3.33 KB
Binary file not shown.
202 Bytes
Binary file not shown.
Binary file not shown.
1.45 KB
Binary file not shown.
963 Bytes
Binary file not shown.
Binary file not shown.
4.03 KB
Binary file not shown.
570 Bytes
Binary file not shown.
369 Bytes
Binary file not shown.
Binary file not shown.
147 Bytes
Binary file not shown.
144 Bytes
Binary file not shown.
Binary file not shown.

build/edu/wpi/first/wpilibj/PWM.class

4.65 KB
Binary file not shown.
1.68 KB
Binary file not shown.
3.13 KB
Binary file not shown.
Binary file not shown.
9.67 KB
Binary file not shown.
1.57 KB
Binary file not shown.
3.48 KB
Binary file not shown.
1.48 KB
Binary file not shown.
1.59 KB
Binary file not shown.
253 Bytes
Binary file not shown.
1.39 KB
Binary file not shown.
1.18 KB
Binary file not shown.
1.45 KB
Binary file not shown.
1.8 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6.02 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
14.4 KB
Binary file not shown.
17.1 KB
Binary file not shown.
Binary file not shown.
1.25 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
2.72 KB
Binary file not shown.
2.58 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1.11 KB
Binary file not shown.
1.57 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
11.5 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
125 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
170 Bytes
Binary file not shown.
172 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3.94 KB
Binary file not shown.

j2meclasses/com/ni/rio/NiRioSrv.class

6.01 KB
Binary file not shown.
Binary file not shown.
5.19 KB
Binary file not shown.
1.61 KB
Binary file not shown.
781 Bytes
Binary file not shown.
677 Bytes
Binary file not shown.

j2meclasses/edu/adk/core/Target.class

3.37 KB
Binary file not shown.
2.25 KB
Binary file not shown.
2.52 KB
Binary file not shown.
1.25 KB
Binary file not shown.
910 Bytes
Binary file not shown.
1.28 KB
Binary file not shown.
1.7 KB
Binary file not shown.
1.02 KB
Binary file not shown.
2.1 KB
Binary file not shown.
2.87 KB
Binary file not shown.
3.8 KB
Binary file not shown.
159 Bytes
Binary file not shown.
1.58 KB
Binary file not shown.
9.18 KB
Binary file not shown.
2.3 KB
Binary file not shown.
2.01 KB
Binary file not shown.
533 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
8.67 KB
Binary file not shown.
Binary file not shown.
402 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3.82 KB
Binary file not shown.
202 Bytes
Binary file not shown.
Binary file not shown.
1.45 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
4.19 KB
Binary file not shown.
570 Bytes
Binary file not shown.
369 Bytes
Binary file not shown.
Binary file not shown.
147 Bytes
Binary file not shown.
144 Bytes
Binary file not shown.
Binary file not shown.
4.96 KB
Binary file not shown.
1.84 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1.57 KB
Binary file not shown.
Binary file not shown.
1.52 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
1.45 KB
Binary file not shown.
1.24 KB
Binary file not shown.
1.45 KB
Binary file not shown.
1.88 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6.21 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)