|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools |
Rating:
|
Display Modes |
|
|
|
#1
|
||||
|
||||
|
What was the hardest to program this year in Java?
I was going around, and I know that people make classes/interfaces for doing the bizzare things that are used frequently on their robots.
For me is was getting DigitalInputs working, to do that, I made this class: Code:
package com.shadowh511.mayor.inputs;
import edu.wpi.first.wpilibj.DigitalInput;
public class Switch {
private DigitalInput source;
public Switch(int channel) {
this.source = new DigitalInput(4,channel);
}
public Switch(int slot, int channel) {
this.source = new DigitalInput(slot,channel);
}
public boolean oldGet() {
return this.source.get();
}
public boolean get() {
if(!this.source.get()) {
return true;
} else {
return false;
}
}
}
Code:
Switch ballSwitch = new Switch(4); Code:
Switch ballSwitch = new Switch(4,4); |
|
#2
|
|||
|
|||
|
Re: What was the hardest to program this year in Java?
For us it'd have been making our own Gyro code. We used three gyros on the robot and so had to make our own. It ended up being just as accurate as the WPI code and now we are adding some filtering to it to solve for irregularities.
|
|
#3
|
||||
|
||||
|
Re: What was the hardest to program this year in Java?
I gave up on the gyro after 3 hours
|
|
#4
|
|||
|
|||
|
Re: What was the hardest to program this year in Java?
I think the hardest part for us was working with the Cypress I/O board. I can't count the number of times I got the "Enhanced IO Missing" exception while trying to read inputs from that thing. It turns out you can't read them in robotInit() - you have to wait about a second for the board to be ready before attempting to read it.
|
|
#5
|
||||
|
||||
|
Re: What was the hardest to program this year in Java?
I hated that too.
I used a seperate class for the cypress i/o module (com.shadowh511.mayor.inputs.DomBoard) that did all the work by itself. |
|
#6
|
||||
|
||||
|
Re: What was the hardest to program this year in Java?
Some issues we had included:
1. Getting the cRIO not to throw random exceptions when using known working code (gotta love that cRIO imaging tool...) 2. Getting our drivetrain working (and not curving). We ended up scrapping RobotDrive and implementing our own Drivetrain class. 3. Making sure we didn't lose communication. |
|
#7
|
|||
|
|||
|
Re: What was the hardest to program this year in Java?
Oh, and I forgot to mention: finding and fixing bugs in WPI's code.
![]() So far we're overriding three of WPI's classes with our own versions: PWM, because someone forgot to cast two integers to doubles before dividing them; Encoder, because someone divided by 0.25 when they should have divided by four; and DriverStation, because the scaling on the joystick axes is wrong (it goes from -1.0 to 0.9 rather than -1.0 to 1.0 due to the use of two's complement). Not that I'm complaining; when volunteers write 20,000 lines of code there are bound to be a few errors. In fact, I'm glad WPILib isn't perfect, because then my programming team would have nothing to do after week one. ![]() Last edited by FRC4ME : 05-04-2010 at 09:24. |
|
#8
|
||||
|
||||
|
Re: What was the hardest to program this year in Java?
It was actually student voulenteers
|
|
#9
|
|||
|
|||
|
Re: What was the hardest to program this year in Java?
The hardest and most frustrating is debugging... But a lot of times, it ended up being electrical that was messed up... e.g. IR Sensor not lined up, Pressure sensor not wired up correctly, and ect
|
|
#10
|
||||
|
||||
|
Re: What was the hardest to program this year in Java?
Was anyone else having a problem getting the debugger to work?
|
|
#11
|
|||
|
|||
|
Re: What was the hardest to program this year in Java?
The hardest part of programming is always convincing everyone that it's not a code problem! Fine, it was twice, when someone accidentally would comment out `break;' on one-line cases in switches.
Things we did abstract farther: Our side kicker was incredibly complex. So, I created a the `hardware.SideKicker' class that made it work work like ``sideKicker.set(SideKicker.Mode.kLoad);''. It had 4 states: kick, load, close, and wait (which are normally run in that order). Beside that, I further broke the kicker down into the `hardware.sideKicker.Loader' and `hardware.sideKicker.Latch', both of which `hardware.SideKicker' used. Even after that, all the timing logic and such is still fairly complex, but I did manage to make it pretty zen. Same thing with the front kicker, although it is a lot more straight forward (kick and load), no timer issues other than the 2 second rules of the competition. We also further abstracted the driverstation ``LCD''.
|
|
#12
|
|||
|
|||
|
Re: What was the hardest to program this year in Java?
Quote:
Visit http://firstforge.wpi.edu/sf/tracker...wpilib/tracker to report bugs! Thanks, -Joe |
|
#13
|
|||
|
|||
|
Re: What was the hardest to program this year in Java?
Quote:
I will gladly fix them myself if that is possible. Can you explain further what the process of submitting a patch is? Thanks. EDIT - I went ahead and submitted the other bugs to the tracker anyway. Last edited by FRC4ME : 24-04-2010 at 13:35. |
|
#14
|
|||
|
|||
|
Re: What was the hardest to program this year in Java?
Quote:
I'm not sure why the Java guys aren't on the list. I can address the issues as well, if you don't find one. If you fix them yourself, you can attach patchs to the artifacts and we'll apply them. -Joe |
|
#15
|
||||
|
||||
|
Re: What was the hardest to program this year in Java?
I joined Mak211 last year, three weeks before the ship date. The night before we had crashed our kicker as members had removed parts to modify without telling me. Kick, (too far), bend the forward bracket and eliminated the encoder so the return to reload the kick went back (too far) and destroyed the sensor telling it to stop. The morning of shipping we rebuilt the kicker.
But the most difficult part was that our position sensors on our four wheel steering kept coming loose. Plus we had no means of adjusting the wheels to a known starting position. After shipping we used a spare Crio to figure out how to make a Can Jaguar go from position control to speed control so we could rotate the wheels while reading the pots and displaying their position on the Dashboard. (Last year we were using C++ and to reconfigure the Cans we needed to destruct them then initialize them in either diagnostic speed mode or run position mode). I don't know if I can destruct them in Java and haven't seen a Java example that enables position mode. Did I mention that I've never coded for C++ objects before? I have been using C since 1980, and I've only read about C++ before and I don't code for a living. Its amazing that we're teaching students Java for next year. Objects rule. Its going to be a while before I'm confident enough to write my own though. Maybe if I had the source I could modify that, but I haven't found the Java wpilibj source. |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Java this year? | Mo_Shen | General Forum | 6 | 06-01-2010 10:52 |
| What is the hardest (yet possible) task in this year's game? | Wayne C. | General Forum | 88 | 16-01-2008 18:30 |
| What year was the hanging bar from? | Jeremy | General Forum | 3 | 11-01-2004 23:00 |
| What was your best memory from this year/ever? | miketwalker | General Forum | 30 | 01-05-2003 13:24 |
| What was the most innovative feature this year? | archiver | 2001 | 15 | 24-06-2002 04:17 |