1
0
Files
src/Wip/ht16k33/ht16k33.c

15 lines
244 B
C
Raw Permalink Normal View History

2023-09-13 01:07:06 -04:00
#include <unistd.h>
#include <wiringPiI2C.h>
#include "ht16k33.h"
/* https://cdn-shop.adafruit.com/datasheets/ht16K33v110.pdf */
#define ADDRESS 0x70
int main(int argc, char *argv[]){
int fd;
fd = wiringPiI2CSetup(ADDRESS);
close(fd);
}