This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
struct Readings { | |
int32_t sensor1; | |
int32_t sensor2; | |
int32_t sensor3; | |
int32_t sensor4; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module HX710BDriver { | |
umbrella header "HX710BDriver.h" | |
link "HX710BDriver" | |
export * | |
} |