微波EDA网,见证研发工程师的成长!
首页 > 研发问答 > 微波和射频技术 > 天线设计和射频技术 > 433Mhz RF transmitter antenna

433Mhz RF transmitter antenna

时间:04-05 整理:3721RD 点击:
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.

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);}

}

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top