![]() |
Python: button no attribute to wpilib ?
Hi! We are trying to use a joystick button with wpilib.buttons.JoystickButton but we keep getting a "buttons has no attribute to wpilib". We really need help on this because we would love to use pneumatics. We are using python and robotpy. Any help would be greatly appreciated!
|
Re: Python: button no attribute to wpilib ?
You don't actually need to use the JoystickButton object, you can just use joystick.getRawButton() or joystick.getTrigger(), etc.
Otherwise, make sure you import wpilib.buttons, not just import wpilib. |
Re: Python: button no attribute to wpilib ?
Quote:
|
Re: Python: button no attribute to wpilib ?
Quote:
if xyz: blah blah blah And it might be helpful to put your code in pastebin and share a link so we can take a look at it. |
Re: Python: button no attribute to wpilib ?
Quote:
|
Re: Python: button no attribute to wpilib ?
Quote:
Code:
Robot Drive... Output not updated often enough. |
Re: Python: button no attribute to wpilib ?
So I ran your code and noticed that the error was wpilib.motorsafety... to fix this, under
Code:
self.robot_drive=wpilib.RobotDrive(self.motor1,self.motor2)Code:
self.robot_drive.setSafetyEnabled(False)Code:
self.teleopPeriodic()Code:
wpilib.Timer.delay(.01) |
Re: Python: button no attribute to wpilib ?
Quote:
|
Re: Python: button no attribute to wpilib ?
Quote:
|
Re: Python: button no attribute to wpilib ?
Quote:
|
Re: Python: button no attribute to wpilib ?
Quote:
|
Re: Python: button no attribute to wpilib ?
Quote:
Looking at the code which was pasted the robot drive motor call is commented out, so it's not feeding it at all -- which means the error message is correct. Once you uncomment it out, the error message goes away. Additionally, since the OP is using IterativeRobot, no Timer.delay call is required. I modified your code slightly, and http://pastebin.com/CLDhyuc5 works for me without any problems in the simulator. You'll note that I changed 'aracadeDrive' to 'arcadeDrive', which could be what caused your robot to crash. I don't have access to a robot to run it on. Also, you don't need the from __future__ import division at the top, that is only needed for python 2. |
Re: Python: button no attribute to wpilib ?
Also, looking further, your controller adjustment code is wrong. The values returned from the joystick are in the range [-1, 1], so you don't need to divide by 255.
Additionally, you shouldn't have the 'else: pass' at the end of your statement. If you ever hit that condition, then x1 won't be set, and your code will die with an exception. It should be 'else: x1=??', where ?? is the default value (probably 0?). Looking around CD, you'll see that most people adjust the joystick curve by squaring the inputs instead of a sequence of if statements as you have there. |
Re: Python: button no attribute to wpilib ?
Quote:
Code:
TypeError: unorderable types: complex() > float() |
Re: Python: button no attribute to wpilib ?
Quote:
|
| All times are GMT -5. The time now is 02:37. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi