Created
December 23, 2019 01:01
-
-
Save zilberas/4d74c38485b7546e97fa3ac915c5061f to your computer and use it in GitHub Desktop.
Header file for HX710BDriver
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; | |
}; | |
int startReading (int *stop, void (*ptr)(struct Readings readings)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment