aboutsummaryrefslogtreecommitdiff
path: root/barometer.h
blob: 2358af7b1d9348a61a1b61c69e7c606fc1f8c1dc (plain)
1
2
3
4
5
6
7
8
9
#pragma once

struct barometer {
	void (*init)(void);
	float (*read_pressure)(void);
	/*float (*read_temperature)(void); */
};

void get_system_barometer(struct barometer *);