-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
hx711.h
64 lines (47 loc) · 1.69 KB
/
hx711.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#ifndef HX711_H_
#define HX711_H_
/*
Author: Nima Askari
WebSite: http://www.github.com/NimaLTD
Instagram: http://instagram.com/github.NimaLTD
Youtube: https://www.youtube.com/channel/UCUhY7qY1klJm1d2kulr9ckw
Version: 1.1.1
Reversion History:
(1.1.1):
Add power down/up.
(1.1.0):
Add structure, Add calibration, Add weight, change names, ...
(1.0.0):
First Release.
*/
#ifdef __cplusplus
extern "C" {
#endif
#include "main.h"
//####################################################################################################################
typedef struct
{
GPIO_TypeDef *clk_gpio;
GPIO_TypeDef *dat_gpio;
uint16_t clk_pin;
uint16_t dat_pin;
int32_t offset;
float coef;
uint8_t lock;
}hx711_t;
//####################################################################################################################
void hx711_init(hx711_t *hx711, GPIO_TypeDef *clk_gpio, uint16_t clk_pin, GPIO_TypeDef *dat_gpio, uint16_t dat_pin);
int32_t hx711_value(hx711_t *hx711);
int32_t hx711_value_ave(hx711_t *hx711, uint16_t sample);
void hx711_coef_set(hx711_t *hx711, float coef);
float hx711_coef_get(hx711_t *hx711);
void hx711_calibration(hx711_t *hx711, int32_t value_noload, int32_t value_load, float scale);
void hx711_tare(hx711_t *hx711, uint16_t sample);
float hx711_weight(hx711_t *hx711, uint16_t sample);
void hx711_power_down(hx711_t *hx711);
void hx711_power_up(hx711_t *hx711);
//####################################################################################################################
#ifdef __cplusplus
}
#endif
#endif