Files
T2-start-2025/C/C3 Watch/product/watch_i2c.h
Rens Pastoor 517087ccc1 C ordening
2025-05-27 23:26:28 +02:00

12 lines
227 B
C

#ifndef WATCH_I2C_H
#define WATCH_I2C_H
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
int watch_i2c_write_byte(uint8_t address, uint8_t value);
int watch_i2c_read_byte(uint8_t address, uint8_t* value);
#endif