PIC16F877A/PIC16F887/18F**** interface Wireless sensor using Cheap 433MHZ RF modules and LDR

preview_player
Показать описание
Hello Guys,
Welcome to learning microcontrollers,
Guys I have been making lectures on electronics and embedded system since 2019 for free for everyone on youtube.
My videos are based on powerpoint presentations for the viewers for easy understanding of the circuit.
Now you guys have a chance to support my channel by buying these presentations.
The file contains over 180 project presentations.
This will allow me to buy new sensor and modules to make new and better videos for you guys.
Names of the patreons will be in my next video.
Link to patreon page:

/////////////////////////////////////////////////////**********************************///////////////////////////////// Hello guys,
Welcome to Learning Microcontrollers youtube Channel,

Guys I have also compiled course on Udemy as well. Where you will learn under my direct supervision in a more supervised way.
Here is the links to the courses I have on Udemy, By taking any of these courses you will be supporting my channel aswell.
This will help me to make more videos with better hardware in the future. I hope you look forward to it.
Courses Links:

In this video, I am gonna show you how we can make a wireless sensor using cheap 433MHZ rf modules to send LDR reading to a PC USART terminal for monitoring.

Become a Patreon and support my channel using link below:

Here is the code guys:
char ldrc[5];
int ldr1;
void main() {
uart1_init(1200);
delay_ms(250);
adc_init();
delay_ms(250);

while(1)
{
ldrc[3] = 0;
ldr1 = adc_read(0);
delay_ms(200);
IntToStr(ldr1, ldrc);
delay_ms(100);
if (UART1_Tx_Idle() == 1) {
UART1_Write_text(ldrc);
delay_ms(100);
}
}
}
Рекомендации по теме
Комментарии
Автор

HI sir help me for nRF24L01 WIRELESS COMMUNICATION TRASMITTER AND RECEIVER MICRO C PROGRAM

nikhilchougale
Автор

Can we use 2 pair of this near to each other, will each pair work independent without interfering each other ?

PriyankaSharma-pjcq