mirror of
https://github.com/skot/ESP-Miner.git
synced 2025-03-19 14:22:04 +01:00
14 lines
294 B
C
14 lines
294 B
C
#ifndef DS4432U_H_
|
|
#define DS4432U_H_
|
|
|
|
#include <stdbool.h>
|
|
#include "esp_check.h"
|
|
|
|
#define DS4432_VRFS 0.997
|
|
|
|
bool DS4432U_test(void);
|
|
esp_err_t DS4432U_set_current_code(uint8_t output, uint8_t code);
|
|
esp_err_t DS4432U_get_current_code(uint8_t output, uint8_t *code);
|
|
|
|
#endif /* DS4432U_H_ */
|