Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
/*****************************
Dependencies: xc.h, stdio.h
Processor: PIC16F1824
Complier: XC8 v1.00 or higher
Result: Prints to the UART1 Window of the IDE
Debugger: Simulator
*****************************/
void putch(unsigned char byte)
{
TXSTA=0x26;
RCSTAbits.SPEN=1;
TXREG=byte;
while(!TXIF)continue;
TXIF=0;
}