Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   Programming (http://www.chiefdelphi.com/forums/forumdisplay.php?f=51)
-   -   Saving values on cRIO (http://www.chiefdelphi.com/forums/showthread.php?t=126618)

xf!r3 16-02-2014 23:33

Saving values on cRIO
 
My team's robot has an arm with a potentiometer on it and I am trying to write a method that will save the current value of the pot and save it into the code so we can still have it when we restart the robot and not have to edit our code. Since I'm not exactly sure how to go about it I would like to know what is the most efficient way to do this. The language we are using is Java.

otherguy 17-02-2014 01:04

Re: Saving values on cRIO
 
You may find team 254s implementation of a constants.txt file useful:
https://github.com/Team254/FRC-2013/...tantsBase.java
https://github.com/Team254/FRC-2013/...Constants.java

It doesn't write out to a file. It looks for a text file on the crio at startup and allows you to override default values of variables in your program.

I'm assuming you want the ability to calibrate your arm angle without having to recompile code. This could be achieved by uploading new versions of a constants.txt file over FTP to your robot using the above implementation.

You could alternatively extend this implementation to allow the constants.txt file to be written to by the robot. Take a look at java.io.DataOutputStream

Joe Ross 17-02-2014 01:42

Re: Saving values on cRIO
 
We use the Preferences class built into WPILib.

CooneyTech 17-02-2014 07:06

Re: Saving values on cRIO
 
Potentiometer or encoder? A potentiometer will always keep its position even without power whereas an encoder loses its position after power is lost. If it is a potentiometer you shouldn't need to save the value.

otherguy 17-02-2014 10:14

Re: Saving values on cRIO
 
Quote:

Originally Posted by CooneyTech (Post 1344356)
If it is a potentiometer you shouldn't need to save the value.

Except for when you need to do maintenance on your mechanism, or replace a broken potentiometer. Any time you decouple the pot from the mechanism you'll likely need to recalibrate your zero.


All times are GMT -5. The time now is 02:34.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi