help with programing banner senor.

how do i create a working print statement to see if my banner senors are working? i really have no idea.
(email me if you want to see the code: [email protected])

First, check that it is working from the indicator lights on the sensor.

After you have done that, and have it wired to a digital input, you have to write code that remembers the prior value and runs the printf() call when it sees the value change. Replace Process_Data_From_Master_uP with the one below, and the two variable declarations:

int old_rc_dig_in10, new_rc_dig_in10;

void Process_Data_From_Master_uP(void) {
Getdata(&rxdata);
if((new_rc_dig_in10 = ((int)rc_dig_in10)) != old_rc_dig_in10) {
printf("rc_dig_in10 = %d", new_rc_dig_in10);
old_rc_dig_in10 = new_rc_dig_in10;
}
Putdata(&txdata);
}

In the case above, the sensor is wired to digital input 10.
You can generalize this to all of the digital input, RC and OI,
and produce a debugging program for your switches. A
similar thing can be done with analog sensors, but you will
want to add a “sensitivity window” to keep “noise changes”
from causing printf()s galore.

If you want to print the sensor value directly, you must cast
it to an int. printf("%d
", (int)rc_dig_in10)

Eugene

thanks for the help. we needed it.