View Single Post
  #1   Spotlight this post!  
Unread 25-01-2014, 11:35
ShakespeareIJP ShakespeareIJP is offline
Registered User
AKA: Jack Hemphill
FRC #2234 (Karmic Boomerang)
Team Role: Programmer
 
Join Date: Jan 2014
Rookie Year: 2012
Location: Newtown Square
Posts: 1
ShakespeareIJP is an unknown quantity at this point
Help with programming Solenoids

I am terrible at programming anything pneumatic related, and solenoids are unfortunately no exception. Netbeans keeps getting an illegal start of expression.
Here is my code:


package edu.wpi.first.wpilibj.templates;

import edu.wpi.first.wpilibj.Solenoid;

public class Solenoids {


private Solenoid uno;
private Solenoid dos;

private boolean solenoidBoo = false;



public MySolenoid(1 , 2){
solenoidBoo = true;
uno = new Solenoid(8, 1);
dos = new Solenoid(8, 2);
System.out.println("We have liftoff" + 1 + " and " + 2);
}




public void extend() {
uno.set(true);

if(solenoidBoo) {
dos.set(false);
}
}


public void retract() {
uno.set(false);

if(solenoidBoo) {
dos.set(true);
}
}


public boolean get() {
return this.uno.get();
}

public boolean getDos() {
boolean otherBoo = dos.get();
return otherBoo;
}
}
Reply With Quote