433Mhz RF transmitter antenna

Status
Not open for further replies.

gdonhc

Newbie level 4
Joined
Sep 1, 2011
Messages
6
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Visit site
Activity points
1,318
Hi guys,

Please suggest a small antenna for the 433Mhz rf transmitter which is to be used in a remote controller.

Thanks in advance.
 

I used a 30cm wire for my 433Mhz transmitter. I used the transmitter (along with HT12E) for my project. It works fine with wire antenna itself.
 

I used a 30cm wire for my 433Mhz transmitter. I used the transmitter (along with HT12E) for my project. It works fine with wire antenna itself.

hi,
I'm having trouble with the transmission. I used following codes for transmission and reception in avr microcontrollers to blink an LED. Sometimes it works very well (LED blinks) when the relevant button is pressed and sometimes it doesn't. I am using 173mm antennas. Any suggestions guys?
TX
Code:
if (ButtonPressed(0, PINC, 0, 70))
		{	
			while (! (UCSRA & (1 << UDRE)) );
			UDR = 0x55;
			
			while (! (UCSRA & (1 << UDRE)) );
			UDR = 0b10111001;
		}

Code:
ISR(USART_RXC_vect) 
{	
	receiveData = UDR;
	if(receiveData==0b10111001)
	{
		PORTB|= (1<<PINB0);
		_delay_ms(100);
		PORTB^= (1<<PINB0);
	}

}
 
Last edited:

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…