![]() |
Control a vex with a laptop?
Have any of you ever tried controlling a vex with a laptop? I'm digging through the default vex code right now, but is it possible to receive commands from the computer's serial interface as well as send messages to it? I wonder if it's as simple as a scanf function, but unfortunately I don't have a vex on me to try it at the moment.
I ask this because I realized that my laptop, an Asus EeePC, is the perfect size for the job. That brings up another question... is it possible to use the serial interface under Linux? My laptop is running Kubuntu. I've interfaced with Cisco routers under Linux, which use the rollover cables and serial adapter, so I don't think it'll be any different... Anyway, if I get this working, my laptop has wifi and a webcam, not to mention a screen, speakers, and USB interfaces. This might be fun. :P Now I just gotta steal my brother's vex kit while he's not around... ;) |
Re: Control a vex with a laptop?
Hmmm... a bit more searching through the forums and I think I've answered my question.
Quote:
|
Re: Control a vex with a laptop?
Well, I happen to think you're on to a great idea here... mainly because I've got something pretty similar running on my VEX bot right now. It carries the laptop around, has a webcam mounted to a servo on the arm, and connects over wifi using Skype.
I have lots of fun driving the robot from another room using the live video feed and have been waiting to fix up a few little things before posting the video link here. Then I was going to ask a question similar to yours, but a bit different... Does anyone have any suggestions on how to interface the laptop on the robot to the rest of the internet, so that I can control the data feed down the serial port TO the robot using any computer on the planet? Skype will take care of the video feedback for the operator... I just need to get data... preferably from a joystick but I'll settle fo the keyboard or mouse for now... across a few firewalls and down a serial port. And that is something I could do with a few suggestions on how to implement! Jason |
Re: Control a vex with a laptop?
Quote:
There's a port of Open SSH server to Windows, but I don't know if there are any CLI based terminal emulators for Windows. It might be a pain to set up so it might be worth dual booting Linux, I don't know... Oh, and btw, after an all nighter of coding I've gotten the basic command interface working. It doesn't do anything right now... I still need to actually parse the commands. I'm a total parsing noob (in perl, I often just split() the strings and simply assume which pieces are which), so this should be a good learning experience for me. :D Anyway, I guess we're in this thing together. Good luck! :P |
Re: Control a vex with a laptop?
Okay, I've almost got this working, but I've reached a stumbling block. I'm using Kevin's latest FRC code with this Vex because it comes with serial port functions. However, once I got to the part where I set the PWMs, I found that setting the PWM values doesn't do anything! Has anyone else tried to run Kevin's code on the Vex? Or, has anyone gotten serial input to work on the default vex code? I hate getting stuck on silly problems like this... I just want to see the robot move. :(
|
Re: Control a vex with a laptop?
A bit more experimenting, and I think this particular Vex controller is dead. The serial interface works well enough, but the PWMs don't work even with the default Vex code. It forgets the code loaded on it the instant I turn it off. That's disappointing. I might be able to get my hands on another controller later, but it looks like I'm grounded for now. :(
Let me know how that remote controlling goes. Interfacing with the robot through the serial port is really easy with Kevin's serial_ports.c/h code. *yawn* it's 10:32 and I've yet to get any sleep... enough messing with this thing... |
Re: Control a vex with a laptop?
Before chunking it, try reloading the master code (the .bin file). Our annual summer camp was this week and there was a robot that would not connect to the OI at all, and after downloading the master code and the user code, it worked fine. I'm not sure why it went bad, but it did. Also some controllers would forget their code as well.
You sound pretty smart with programming and computers, so you have probably already done this, but I thought I would give a shot at helping you. |
Re: Control a vex with a laptop?
Quote:
|
Re: Control a vex with a laptop?
Thanks. I loaded the latest firmware and the controller is working now, at least with the default code. Unfortunately, I wasn't able to control the PWMs using Kevin's code. I've read on the forum somewhere that components of Kevin's FRC code can be dropped into the regular Vex code easily enough, so I'll try that next.
Unrelated, I'm having trouble using mplab 8.10 with the 2.40 compiler... I guess I'll start another thread to fix that issue. Looks like another long night of delicious code. :P |
Re: Control a vex with a laptop?
I tried using Kevin's serial_ports.c/h with the default Vex code and I got it to compile and run, but whenever I call Read_Serial_Port_One(), the bot stops working, the "PGRM STATUS" LED flashes red, and the serial port doesn't work at all.
So right now it looks like I get to choose between either being able to move the bot by using the default Vex code, or being able to communicate with it by using Kevin's FRC code. I haven't gotten moving and communication working at the same time yet. Oh, and btw, when running Kevin's FRC code, the program LED is always flashing red, but at least the serial port works. Maybe that will help to diagnose the problem. |
Re: Control a vex with a laptop?
Quote:
Now as for adding his serial port drivers, yes it is possible. In fact, I highly recommend it. I currently have his: Interrupt, ADC, Gyro, IR receiver and serial port code added into the default 2007 FVC code. It is not that difficult to do and it really adds some great functionality. For one, I can now get real-time telemetry from the Vex via Serial port 2 and my BlueSMiRF from Sparkfun. I also have an adapter that allows the same from Serial port 1, but it is not as convenient to use. I do not believe Kevin's PWM code will work with Vex without some major modifications. Vex only has 8 PWMs while FRC has 16. Kevin's code is written to work with PWM's 13-16 and use the CCP hardware to generate the PWM signals, bypassing the need to use interrupts. |
Re: Control a vex with a laptop?
Okay, I was working on my idea of controlling the robot over SSH with kermit and I hacked up a Perl script that can control the PWMs with my joystick. Disclaimer: this code is a dirty hack. First of all, I wrote it. Secondly, using Expect to control a robot through a makeshift Perl script is probably not the most ideal solution.
Code:
#!/usr/bin/perlBtw, this thing actually works. Here's a screenshot of my desktop (which the joystick is connected to) sending messages to my laptop (which the vex is connected to). My laptop is connected to the network with wifi, so this is all wireless. ![]() |
Re: Control a vex with a laptop?
I've been trying for a few hours to get the serial drivers working with the 04-23-08 Vex code, but I always wind up with the blinkey red light of death. Can anyone give me any insight into what this red light implies? And are there any tricks to getting the serial drivers working with this code? I've just been commenting out blocks of code trying to see what breaks it. This embedded stuff is confusing; I'm really in the dark here... :o
|
Re: Control a vex with a laptop?
Haha! I just discovered something totally by accident that I should have checked before. When using Kevin's FRC code with the Vex, motor ports 1 through 4 are controlled by pwms 13 through 16. That solves my problem. I still don't know how to control ports 5 through 8, but four motors is enough for now.
Oh, and it works perfectly. I'm controlling the Vex with the PSX controller attached to my desktop, over wifi. Now I just need to mount my laptop to the robot... Only I'm not that good with the mechanical aspect of robotics. Ah well... I'll have pictures and a video up soon. :cool: |
Re: Control a vex with a laptop?
Quote:
1) A serial IO component to provide an interface between the onboard laptop and the vex controller. The easiest protocol would be a 4-byte packet with the camera PWM, left motor PWM, right motor PWM, and 0xFF delimiter. The PWM values should be in the range 0-254. The Vex controller will need to listen and parse data from the serial port. The Vex controller will also want to stop the motors if no data is coming in, in case the link to the laptop is broken. 2) A Windows service to manage the connection to the Vex controller. The service will keep the current PWM command in memory and resend then on a fixed schedule. The service will expose a method to update the motor values. The service itself would be implemented as a WCF web service. 3) An ASP.NET application running on the laptop to collect inputs and call into the service to update the motor values. You can configure your WAP to route traffic on a non-standard port (ex. 8085) to the laptop. You would access the web application at your router's public IP address and the port you configured in the WAP settings. You can get the public IP by hitting http://ipchicken.com from behind the router, or through the router settings. |
| All times are GMT -5. The time now is 11:04. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi