You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
157 B
10 lines
157 B
#ifndef MAX6884_H
|
|
#define MAX6884_H
|
|
#include <stdint.h>
|
|
#include "i2c.h"
|
|
|
|
void max6884_init(i2c_t i2c);
|
|
float max6884_read_vol(uint8_t device_num);
|
|
|
|
#endif
|
|
|
|
|