Categories
Examples Microchip PIC16 PIC-CCS

PIC SPI example with PIC16F887 and 4094 shift register

We will explore the methods of using the built in SPI module in PIC16F887 Microcontroller. According to the datasheet of the microcontroller there is built in SPI module available in the microcontroller which could make life lot of easier when it comes to the SPI Master Slave communication. There is Master Synchronous Serial Port (MSSP) […]

Categories
Microchip PIC16 PIC-CCS

PIC CCS UART Interrupt to 9 digit 7 Segment Display

We are extending our previous example where I show how to receive data from UART in PIC CCS Compiler for PIC16f887 microcontroller. We received Serial Data and then we display UART received data to 9 digit 7 segment display. In the current example we are extending that previous code by implementing the Serial Interrupt or […]

Categories
Microchip PIC16 PIC-CCS

PIC16F887 UART to 7 Segment

In this post we are going to extend our previous timer based 7 segment multiplexing code. We are going to add a UART in that code and will update the 9 digit 7 segment multiplexing. We will send the digits to be displayed on 7 segment which we send from the serial port using uart […]

Categories
Microchip PIC16 PIC-CCS

PIC CCS 7 segment Multiplexing Using Timer Interrupt

In this post we are going to do 9 digit 7 segment multiplexing using timer0 interrupt in pic16f887 microcontroller using PIC CCS Compiler. Here is the complete code

Categories
Microchip PIC16 PIC-CCS

Seven-Segment Multiplexing with RTOS on PIC16F887

Multiplexing 7 segment display is one of major problem. We try to solve this problem using RTOS in PIC CCS Compiler. In this blog post we demonstrated 9-digit seven segment multiplexing using PIC16F887 microcontroller. Required Components Here are the list of required components for driving 7 segment display with PIC16F887 microcontroller. Wiring Instructions PIC CCS […]

Categories
Microchip PIC16 PIC-CCS Tutorials

Character LCD Driver for PIC CCS Compiler 4 bit Mode

Character LCD is very common and basic accessory, required in most of Embedded system projects.  In today’s post we are making LCD Driver library(Compact Version) for our daily life project usage. Most of the code is inspired and borrowed from Flex-LCD Driver Library. In this driver we will only specific features which are required in our […]