1
0
mirror of https://github.com/skot/ESP-Miner.git synced 2025-03-23 16:22:42 +01:00

12 lines
267 B
C
Raw Permalink Normal View History

2023-01-16 17:55:16 -05:00
#ifndef DS4432U_H_
#define DS4432U_H_
#include <stdbool.h>
#include "esp_check.h"
2023-01-16 17:55:16 -05:00
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);
2023-01-16 17:55:16 -05:00
#endif /* DS4432U_H_ */