C ordening

This commit is contained in:
Rens Pastoor
2025-05-27 23:26:28 +02:00
parent 39269a71a7
commit 517087ccc1
207 changed files with 0 additions and 4278 deletions

View File

@@ -0,0 +1,11 @@
#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