|
|
|
![]() |
|
||||||||||||||
|
|||||||||||||||
![]() |
| Thread Tools | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
While one of my team mates was running a try out on G.T.S he thought there is somthing wrong with the way it worked :
He hooked it up and while it worked he didn't receive output from the sensor to the "IFI Loader" ( the only thing he got was the number " 0 " ) **Even when the sensor was not connected it got " 0 " or "256". So, my question is if some one can please tell me if it's ok that i didn't receive any outpot from the Sensor. P.S > It was connected my a digital IN/OUT on the RC . Thx. Hamosad team # 1657 |
|
#2
|
|||||
|
|||||
|
Re: G.T.S ..... (problem)
I assume you're referring to the Gear Tooth Sensor. It sounds like you're having two conceptual difficulties with printing its value.
First, its output is a very short high-going pulse whenever a gear tooth passes the sensor. It's on the order of 40-80 microseconds long. Unless you get extremely lucky, your code is not very likely to read anything other than a 0. Second, it sounds like you might be trying to use printf with a char. For a couple of technical reasons, that doesn't work exactly the way you want it to. You'll need to cast the value to an int like this: Code:
char value = 1; ... printf ( "value = %d\r", (int)value ); |
|
#3
|
|||
|
|||
|
Re: G.T.S ..... (problem)
Thx, but we think we know the problem.
we think that the sensor got short" . |
|
#4
|
|||
|
|||
|
Re: G.T.S ..... (problem)
Quote:
Good Luck. |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Need a realistic Statics Problem | sanddrag | Technical Discussion | 10 | 12-05-2005 02:07 PM |
| Problem w/Mesh | Kevin342 | 3D Animation and Competition | 4 | 02-17-2005 10:04 PM |
| Programming Problem: Extremely Frustrating | chantilly_team | Programming | 19 | 02-12-2005 10:00 PM |
| The problem with scouting... | archiver | 2001 | 10 | 06-23-2002 10:49 PM |
| Major problem with chipphua motors | aka Scott White | Motors | 18 | 03-19-2002 06:44 PM |