Go to Post I hope that kids will stop asking us if we build Battlebots and start asking us if we build Transformers. To that, I will answer with a resounding yes. - Madison [more]
Home
Go Back   Chief Delphi > Technical > Programming
CD-Media   CD-Spy  
portal register members calendar search Today's Posts Mark Forums Read FAQ rules

 
 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Spotlight this post!  
Unread 20-02-2006, 03:06
Idaman323 Idaman323 is offline
In Theory, Our Robot Would Own.
FRC #1706
Team Role: Driver
 
Join Date: Feb 2005
Rookie Year: 2005
Location: Wentzville, MO
Posts: 116
Idaman323 is an unknown quantity at this point
Switches? Programming? Help? :)

Hey I programmed joystick triggers to make a motor go back and forth using:

Code:
if (p1_sw_trig == 1)
{
pwm06 = 0;
}
if(p2_sw_trig == 1)
{
pwm06 = 254;
}
if((p1_sw_trig == 0) && (p2_sw_trig == 0))
{
pwm06 = 127;
}
Now it worked flawlessly.... but then we soldered our three point switches in. On our port 3 serial, we have pins 9 as forward position, 15 as backward postition, and the middle position is grounded on pin 12. On our port 4 switch, we have forward as pin 5, backward as pin 8, and middle grounded with pin 12... or 4.... they are both grounds.. not sure which one though. Anyway....

pins 9 and 15 are names p3_sw_aux1 and p3_sw_aux2 correct? And pins 5 and 8 are called p4_sw_trig and p4_sw_top, correct?

So we replaced the code with this:

Code:
if (p3_sw_aux1 == 1)
{
pwm06 = 0;
}
if(p3_sw_aux2 == 1)
{
pwm06 = 254;
}
if((p3_sw_aux1 == 0) && (p3_sw_aux2 == 0))
{
pwm06 = 127;
}
and ...

Code:
if (p4_sw_trig == 1)
{
pwm07 = 0;
}
if(p4_sw_top == 1)
{
pwm07 = 254;
}
if((p4_sw_trig == 0) && (p4_sw_top == 0))
{
pwm07 = 127;
}

The problem is.... it does not move at all when we start it up. I've been messing around with this code for a while now and can't get the motors spinning. I know for sure the Victor is wired correctly because I put in the code:

pwm07 = 0;

and it spun fine. Is the code correct still? Or did we wire it wrong? Is the ground not wired correctly? Any suggestions are helpful. This is pretty much our last day to work on this soooo anything would help.

Thanks in Advance,
Idaman323
__________________
TEAM 1706
2007 Judges Award, St. Louis (For our amazing ability to have bad luck)
2005 Rookie Inspiration Award, St. Louis
 


Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Programming Vex w/ MPLab dababyjebus FIRST Tech Challenge 27 25-04-2008 09:11
Programming - Getting Started Mark McLeod Programming 80 16-04-2008 23:37
Programming Forum Warning Brandon Martus Announcements 10 29-12-2005 13:32
Alternative to limit switches? RbtGal1351 Electrical 27 10-12-2005 15:30
Robot Programming Education phrontist Programming 11 03-05-2004 07:32


All times are GMT -5. The time now is 09:59.

The Chief Delphi Forums are sponsored by Innovation First International, Inc.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi