Slide potentiometer interface PIC16F877A.

Описание к видео Slide potentiometer interface PIC16F877A.

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:

1- https://www.udemy.com/course/pic16f87...
2- https://www.udemy.com/course/mikroc-f...
3- https://www.udemy.com/course/mikroc-f...
4- https://www.udemy.com/course/pic-micr...
5- https://www.udemy.com/course/learn-ar... ///////////////////////////////////////////////////// #electronics #arduino #arduinoproject #project #microcontroller #circuitdiagram #circuitdiagram #simulator #simulation #proteus #proteus8 #pic16f877a #arduinotutorial #electronictutorial #embedding #embeddedprojects #embedded_system #embeddedprojectcenters #embedded_system #diy #diycrafts #diyideas #diyproject #diyarbakır #toggle #toggleswitch #switch #bluetooth #hc05 #wireless

Use PIC16F877A to generate a counter and use Smartphone to display and control it using HC-05 Bluetooth module.

PIC16F877A specifications:
This powerful (200 nanosecond instruction execution) yet easy-to-program (only 35 single word instructions) CMOS FLASH-based 8-bit microcontroller packs Microchip's powerful PIC® architecture into an 40- or 44-pin package and is upwards compatible with the PIC16C5X, PIC12CXXX and PIC16C7X devices. The PIC16F877A features 256 bytes of EEPROM data memory, self programming, an ICD, 2 Comparators, 8 channels of 10-bit Analog-to-Digital (A/D) converter, 2 capture/compare/PWM functions, the synchronous serial port can be configured as either 3-wire Serial Peripheral Interface (SPI™) or the 2-wire Inter-Integrated Circuit (I²C™) bus and a Universal Asynchronous Receiver Transmitter (USART). All of these features make it ideal for more advanced level A/D applications in automotive, industrial, appliances and consumer applications.


PIC16F877A datasheet link:
https://ww1.microchip.com/downloads/e...



1- How to download and install MikroC for PIC full version for free from official website. 100% Legit.
   • How to download and install MikroC fo...  

2- Tutorial on downloading, installing and using PICKIT 3 programmer tool.
   • Tutorial on downloading, installing a...  

3-Setting up a PIC16F877A/PIC16F887/PIC18F****.
   • Setting up a PIC16F877A/PIC16F887/PIC...  

4- PIC16F877A a basic Introduction.
   • PIC16F877A a basic Introduction  

5- If you guys like my work you can support my work using Patreon link below:
patreon.com/user?u=81261678

6- MikroC for PIC code:

int Lpot;
char Lpot1[8];
void main() {
ADC_Init();
Delay_ms(20);
UART1_Init(9600);
Delay_ms(20);

while(1)
{
Lpot = ADC_Read(0);
Delay_ms(20);

IntToStr(Lpot, Lpot1);
Delay_ms(20);

UART1_Write_Text(Lpot1);
UART1_Write_Text("\r\n");
Delay_ms(250);

}
}

Комментарии

Информация по комментариям в разработке