1
0
This repository has been archived on 2025-11-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
setr1-monorepo/P3_SETR1/Core/Inc/HTS221.h
2025-10-10 02:20:31 +02:00

14 lines
153 B
C
Executable File

#ifndef INC_HTS221_H_
#define INC_HTS221_H_
typedef struct {
float temp;
float hum;
} THSample;
void HTS221_Init();
THSample HTS221_Read();
#endif