Library za koristenje 7 Segmentnog Displaya

7_seg_display.cpp

Committer:
ivanz
Date:
2022-02-22
Revision:
1:fc20df0d22b7
Parent:
SegDisplay.cpp@ 0:c8316543abdd

File content as of revision 1:fc20df0d22b7:

#include "7_seg_display.h"
BusOut Seg1(PB_4,PB_10,PA_8,PA_9,PC_7,PB_6,PA_7,PB_9); 
void SegInit(void)
{
    Seg1=SegConvert(0); 
}
char SegConvert(int SegValue)   //Konverzija int varijable u niz bitova za ispis na 7 seg. displayu
{
    char SegByte=0x00;
    switch (SegValue) { 
        case 0 :
            SegByte = 0x3F;
            break; 
        case 1 :
            SegByte = 0x06;
            break; 
        case 2 :
            SegByte = 0x5B;
            break; 
        case 3 :
            SegByte = 0x4F;
            break; 
        case 4 :
            SegByte = 0x66;
            break; 
        case 5 :
            SegByte = 0x6D;
            break; 
        case 6 :
            SegByte = 0x7D;
            break; 
        case 7 :
            SegByte = 0x07;
            break; 
        case 8 :
            SegByte = 0x7F;
            break; 
        case 9 :
            SegByte = 0x6F;
            break; 
        case 10 :
            SegByte = 0x80;
            break; 
    }
    return SegByte;
}