temperature sensor with uOLED 96 g1

Dependencies:   OLED160G1 mbed uOLED

Fork of DS18B20 by Niall Cooling

Committer:
Renato
Date:
Wed Oct 31 12:26:00 2012 +0000
Revision:
1:b2ea1e9d90df
Parent:
0:03ec282c2908
Test v1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
feabhas 0:03ec282c2908 1 #ifndef __DS_1_WIRE__
feabhas 0:03ec282c2908 2 #define __DS_1_WIRE__
feabhas 0:03ec282c2908 3 #include <stdint.h>
feabhas 0:03ec282c2908 4 #include "mbed.h"
feabhas 0:03ec282c2908 5
feabhas 0:03ec282c2908 6 int Reset(DigitalInOut& pin);
feabhas 0:03ec282c2908 7
feabhas 0:03ec282c2908 8 void WriteBit(DigitalInOut& pin, uint32_t bit);
feabhas 0:03ec282c2908 9 uint32_t ReadBit(DigitalInOut& pin);
feabhas 0:03ec282c2908 10
feabhas 0:03ec282c2908 11 void WriteByte(DigitalInOut& pin, uint32_t byte);
feabhas 0:03ec282c2908 12 uint32_t ReadByte(DigitalInOut& pin);
feabhas 0:03ec282c2908 13
feabhas 0:03ec282c2908 14
feabhas 0:03ec282c2908 15 #endif