Hello guys Welcome to learning microcontrollers,
Guys I had made a course for you guys on Udemy.
This course will teach you how to directly get your hands dirty on arduino and make useful projects to earn money.
Please do take this course on udemy this will greatly help me to grow my channel.
You will assisting my channel by paying for that course.
Here is the link to the course:
https://www.udemy.com/course/learn-ar...
A quote:
Learn from cradle to grave.
/
/
/
////////////////////// Hello Guys,
Welcome to learning Microcontrollers.
I had made a course for you guys to learn under my direction supervision on Udemy.
This course will make you a master of PIC microcontroller based projects making using MikroC for PIC software.
Please do take this course the link is below. This will greatly help my channel aswell to grow.
https://www.udemy.com/course/pic-micr...
A beautfiul quote:
The road to sucess is always under construction.
/
/
///////////////////////////////////////////////////// Hello guys,
In this video, I am gonna show you how you can use a Nextion touch screen with a PIC microcontroller. All the PICs have exactly same programming using MikroC for PIC compiler. This code will work on all models of PIC supporting MikroC for PIC programming. HMIs are very important for user interface. They are excellent source of providing inputs and taking outputs without utilizing complicated hardware based panels. They are used in nearly every machine or devices now adays. In this tutorial I am only gonna show you how to use this touch screen only for sending texts from PIC to Nextion. In future tutorials in this series I am gonna show you how to use buttons, sliding bars, or send integers etc.
Become a Patreon and support my channel using link below:
https://patreon.com/user?u=81261678
Nextion editor software link:
https://nextion.tech/nextion-editor/
Nextion syntax link:
https://nextion.tech/instruction-set/
Video on introduction to PIC16F877A:
• PIC16F877A a basic Introduction
Video regarding how to setup a PIC16F877A:
• Setting up a PIC16F877A/PIC16F887/PIC...
MikroC for PIC coding of current Video:
void main() {
UART1_Init(9600);
delay_ms(250);
while(1)
{
UART1_write_text("t0.txt=");
delay_ms(10);
UART1_write('"');
UART1_write_text("Learning");
UART1_write('"');
delay_ms(10);
UART1_write_text("ÿÿÿ");
delay_ms(500);
UART1_write_text("t0.txt=");
delay_ms(10);
UART1_write('"');
UART1_write_text(" Microcontroller");
UART1_write('"');
delay_ms(10);
UART1_write_text("ÿÿÿ");
delay_ms(500);
}
}