bianchi77
Advanced Member level 4
- Joined
- Jun 11, 2009
- Messages
- 1,313
- Helped
- 21
- Reputation
- 44
- Reaction score
- 20
- Trophy points
- 1,318
- Location
- California
- Activity points
- 9,442
Guys,
Does anyone of you have experience with RFID and PSoC 1 ?
I tried to give command to RFID reader, but not sure if I got the right answer ?
Please see on "c variable" below :
Does anyone of you have experience with RFID and PSoC 1 ?
I tried to give command to RFID reader, but not sure if I got the right answer ?
Please see on "c variable" below :
Code:
UART_1_PutChar(0x01);
Delay10msTimes(50);
[B]c = UART_1_cGetChar();[/B]
if (c == 0x01)
{
LCD_clr_line(0);
LCD_clr_line(1);
LCD_1_Position(0,0); // Set LCD position
LCD_1_PrCString("Card in ");
}
else
{
LCD_clr_line(0);
LCD_clr_line(1);
LCD_1_Position(0,0); // Set LCD position
LCD_1_PrCString("Card out ");
}
}