Difference between revisions of "UART Communication with PIC16F877A Starter Board"
(Created page with "Category:Starter PIC16F877 File:0 UART main.gif") |
|||
Line 2: | Line 2: | ||
[[File:0 UART main.gif]] | [[File:0 UART main.gif]] | ||
+ | |||
+ | =Code= | ||
+ | <html> | ||
+ | <script src="https://gist.github.com/sharanago/12a15188d6143edfa7ba6408d6c1da02.js"></script> | ||
+ | </html> | ||
+ | [[File:Pic16f877a uart.PNG]]<br><br> |
Revision as of 22:23, 28 April 2016
Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "uart.h" | |
int main() | |
{ | |
UART_Init(9600); | |
while(1) | |
{ | |
UART_Printf("Welcome to PIC Serial Programming by ExploreEmbedded\n\r"); | |
} | |
return (0); | |
} |