-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME.txt
More file actions
38 lines (27 loc) · 1.19 KB
/
Copy pathREADME.txt
File metadata and controls
38 lines (27 loc) · 1.19 KB
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
InsightLT_Java
==============
Java implementation of the InsightLT API
Welcome and thank you for your interest in the InsightLT robot diagnostic
display.
This is the initial release of code and documentation and will probably be
updated frequently. Please check the repository for the latest code updates and
bug fixes.
To report a bug, please log an issue on git hub to have it resolved in a timely
manner. Make sure to include you email address so any details may be collected
to fix the issue.
How To Add the Code to your Java Project
----------------------------------------
The InsightLT project is built as a Java package.
The easiest way to currently add Insight to your project is as follows.
1)Create a new package in your project and make sure to name the package
"InsightLT"
2)Copy all of the .java files into this package
Alternatively you could just add the source files to your project in the
current wpi package.
To use the InsightLT objects you will need to import them like so...
import InsightLT.InsightLT;
import InsightLT.StringData;
import InsightLT.IntegerData;
import InsightLT.DecimalData;
An explanation of using the Zones and configurations is in the file
"DisplayConfigurations.txt"