This only includes the method to set the pairs of displays individually. The functions to write a single 16 or 32 bit value have not been implemented yet, nor has the mask function.
13 lines
183 B
C
13 lines
183 B
C
#include <stdint.h>
|
|
|
|
#include "sevenseg.h"
|
|
|
|
int main() {
|
|
//hex_enable(0xff);
|
|
hex_set_8(0xb5, 0);
|
|
hex_set_8(0x00, 1);
|
|
hex_set_8(0xb0, 2);
|
|
while(1);
|
|
return 0;
|
|
}
|