1
0
src/Wip/ht16k33/ht16k33.c

15 lines
244 B
C
Raw Normal View History

2023-09-12 23:07:06 -06: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);
}