10 lines
108 B
C
10 lines
108 B
C
|
|
|
|
|
|
typedef struct {
|
|
float humidity;
|
|
float temperature;
|
|
} sensor;
|
|
|
|
void getData(int pin, sensor *s);
|