]> the.earth.li Git - temper-clone.git/blob - w1.h
Remove unused read_temp() function
[temper-clone.git] / w1.h
1 #ifndef __W1_H__
2 #define __W1_H__
3
4 #define W1_PIN 0        /* Pin 0 on Port B */
5
6 uint8_t w1_crc(uint8_t *buf, uint8_t len);
7 void w1_write(uint8_t val);
8 bool w1_read_bit();
9 uint8_t w1_read_byte();
10 void w1_read(uint8_t *buf, uint8_t len);
11 bool w1_reset(void);
12 void w1_setup(void);
13
14 #endif /* __W1_H__ */