High Power Multiplexed Seven Segment LED Display Driver
Posted by Avinash on January 6th, 2012 01:52 PM | 6 CommentsUsing Multiplexed 7 Segment Displays – PIC Microcontroller Tutorial
Posted by Avinash on May 31st, 2011 12:11 PM | 4 CommentsMultiplexed Seven Segment Display using PIC16F877A and HI-TECH C
Posted by Avinash on April 28th, 2010 08:01 AM | 2 Comments
#include <htc.h>
#define _XTAL_FREQ 20000000UL
typedef unsigned char UINT8;
typedef signed char INT8;
typedef unsigned int UINT16;
typedef signed int INT16;
//Connection of Seven segment display
#define SEVEN_SEGMENT_LAT PORTD
#define SEVEN_SEGMENT_TRIS TRISD
//MUX Control
#define MUX_PORT PORTB
#define MUX_START_POS 1 //From which bit on port the select lines start
//MUX settings
#define MUX_DISP_COUNT ...

