1-Wire implementation, using DS2480B controller interfaced with serial port, working example to read DS18B20, based on work already in progress / Dallas - Public domain code

Dependencies:   mbed

Headers/owTemp.h

Committer:
pwheels
Date:
2011-03-24
Revision:
0:1193dbfe28e2

File content as of revision 0:1193dbfe28e2:




#ifndef MBED_1WIRETEMP_H
#define MBED_1WIRETEMP_H



/** An interface for the Dallas 1-wire temperature buttons, the DS1920
 *
 * @code
 * #include "mbed.h"
 * #include "1-wiretemp.h"
 *
 * //  TODO  NokiaLCD lcd(p5, p7, p8, p9); // mosi, sclk, cs, rst
 *
 * int main() {
 *     lcd.printf("Hello World!");
 * }
 * @endcode
 */
class owTemp {



public:

    owTemp ( );


    void Maingettemp( void );

   
protected:

private:

 
};

#endif