![]() |
Selecting Autonomous with TI LaunchPad?
Hi,
We are going to make a nice control box with random buttons and potentiometers using the TI MSP430 LaunchPad. We want to be able to select an autonomous mode with a dial using one of the potentiometers through the LaunchPad. The problem is, how do I send what the choice is to the robot if the LaunchPad is seen as a gamepad? Should I write a pygame script and use pynetworktables to send the choice from it? Or is there a much simpler way that I am overlooking? How do other teams do it? Any help would greatly be appreciated! |
Re: Selecting Autonomous with TI LaunchPad?
Quote:
|
Re: Selecting Autonomous with TI LaunchPad?
Why not simply use a multiposition button? They look like potentiometers but have different settings you can snap to rather than an analog output.
Apart from that, reading it as a joystick or just running some kind of direct voltage reading would work. |
Re: Selecting Autonomous with TI LaunchPad?
Quote:
NetworkTables would work just fine for sending the choice. Alternately your code could read the joystick axis in a periodic function, or in disabled, and then use the value from there in autonomous. |
Re: Selecting Autonomous with TI LaunchPad?
At the beginning of autonomous, the FPGA latches the most recent joystick values received. So you can read joystick values in autonomous as long as you have set them properly before autonomous.
|
Re: Selecting Autonomous with TI LaunchPad?
Quote:
(our biggest problem has been with the physical construction of our wiring to the buttons coming undone - we should redo it) |
Re: Selecting Autonomous with TI LaunchPad?
Quote:
|
Re: Selecting Autonomous with TI LaunchPad?
In the "old days" when the joystick values were all returned during autonomous as neutral with no buttons pressed, the typical tactic was for the user program to read and save the values while the robot was disabled before the match began, then use the saved values during autonomous. That is now done for you by the system.
|
Re: Selecting Autonomous with TI LaunchPad?
Quote:
|
Re: Selecting Autonomous with TI LaunchPad?
My team was considering doing this. Would the TI LaunchPad Evaluation kit work? Also, how would you make it work? Would you wire it to the RoboRio or to a different module?
|
Re: Selecting Autonomous with TI LaunchPad?
Quote:
|
Re: Selecting Autonomous with TI LaunchPad?
If you're open to an alternative method... We set our options this year by creating custom buttons/drop boxes on the dashboard. Our drive team would configure auto as required at the setup and network tables would sent the info to the robot. This can make things a tad simpler at times (we had at least three options to set this year).
|
Re: Selecting Autonomous with TI LaunchPad?
Quote:
|
Re: Selecting Autonomous with TI LaunchPad?
We put a multiposition selector switch right on the robot. It's a 12-position dial (with a nice solid click-click-click action) and a built in LED that lights up which position is selected. Internally it is a resistor ladder so you read it as an analog input on the RoboRio. Worked very well for us. The drive team literally dials in which autonomous they want to run before each match.
|
Re: Selecting Autonomous with TI LaunchPad?
Quote:
|
Re: Selecting Autonomous with TI LaunchPad?
Quote:
In one of the Launchpad example control panels I wired up an 8 position one. You can see it here to get an idea of how to do it: http://processors.wiki.ti.com/index....nalog_Wire.JPG The red and black wire on either end of the resistor chain are +3.3V and gnd, and the one in the middle is the signal out. |
Re: Selecting Autonomous with TI LaunchPad?
In response to using a TI LaunchPad-
It would be much simpler, at least in my opinion, to use a Raspberry Pi Zero, as it is so inexpensive and abundant. It can pretty easily pretend to be a joystick with as many buttons as you want, and will have a LOT more support from outside sources and forums due to its much larger user base than the TI LaunchPads. Interesting and somewhat related side note- if I remember right from my tinkering with the Pi, the Driver Station pitches a fit if you have a joystick with more than 32 buttons/ axes/ pov's combined, so keep that in mind when constructing your interface regardless of controller. You might have to double up on microcontrollers if you want anything incredibly complex. |
Re: Selecting Autonomous with TI LaunchPad?
Quote:
|
Re: Selecting Autonomous with TI LaunchPad?
Quote:
However, it won't be on the robot and uses only micro-b type connectors, which are latching (not locking, however), so it can withstand some abuse, but if you think it'll be roughed around too much, then definitely pick the LaunchPad. |
Re: Selecting Autonomous with TI LaunchPad?
Quote:
Here's the unit we used. http://www.robotshop.com/ca/en/rotar...module-v1.html We really like it. You plug it right into an analog input on the RoboRio and just read the input voltage. The resistor network (similar to ILAMtitan's second photo) is internal, and there's a nice blue LED for visual feedback too. Plus, it's cheap! |
Re: Selecting Autonomous with TI LaunchPad?
Quote:
|
Re: Selecting Autonomous with TI LaunchPad?
Quote:
|
| All times are GMT -5. The time now is 20:28. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi