|
|
|
![]() |
|
|||||||
|
||||||||
|
|
Thread Tools | Rate Thread | Display Modes |
|
#9
|
|||
|
|||
|
Re: How to hook up Nason pressure switch
I can't seem to get the compressor to turn on with the relay. I put in the code (C++)
#include "WPILib.h" #include "vxWorks.h" #include "Vision/AxisCamera2010.h" #include "PCVideoServer.h" #include "Compressor.h" #include "Utility.h" #include "DriverStationLCD.h" class RobotDemo : public SimpleRobot { RobotDrive myRobot; // robot drive system Joystick stick; public: RobotDemo(void): myRobot(1, 2), // these must be initialized in the same order stick(1) // as they are declared above. { GetWatchdog().SetExpiration(1.0); GetWatchdog().SetEnabled(false); AxisCamera &camera = AxisCamera::getInstance(); camera.writeResolution(k640x480); camera.writeBrightness(10); camera.writeCompression(25); Compressor *airc = new Compressor (1,1); airc->Start(); } void Autonomous(void) { GetWatchdog().SetEnabled(false); myRobot.Drive(0.5, 0.0); // drive forwards half speed Wait(2.0); // for 2 seconds myRobot.Drive(0.0, 0.0); // stop robot } void OperatorControl(void) { GetWatchdog().SetEnabled(true); while (IsOperatorControl()) { GetWatchdog().Feed(); myRobot.ArcadeDrive(stick); Wait(0.005); // wait for a motor update time } } }; START_ROBOT_CLASS(RobotDemo); |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| nason pressure switch wire | holty531 | Pneumatics | 3 | 31-01-2008 22:18 |
| Nason Pressure Switch? | DPPT1717 | Pneumatics | 10 | 09-01-2007 22:31 |
| No value in digital ins using NASON pressure switch. | Ari Allyn-Feuer | Programming | 1 | 18-02-2006 01:18 |
| Urgent need for Nason pressure switch!! PLEASE HELP! | haverfordfords | Pneumatics | 12 | 18-02-2005 02:04 |
| Nason pressure switches | JP_1163 | Pneumatics | 11 | 03-03-2003 23:03 |