» Advertenties

Zo 20 Mei 2012, 07:50

C code -
  1. //*****************************************************************************
  2. //
  3. // File Name : ds1631.h
  4. // Title : Support for Maxim DS1631 temperature sensor
  5. // Author : Smoerijf.be
  6. // Target MCU : Atmel AVR Series
  7. //
  8. //*****************************************************************************
  9. //@{
  10.  
  11. #ifndef DS1631_H
  12. #define DS1631_H
  13.  
  14. //! init ds1631
  15. void ds1631Init(void);
  16.  
  17. //! start continue reading
  18. void ds1631StartReading(void);
  19.  
  20. //! read data from ds1631
  21. void ds1631Read(u08* d);
  22.  
  23. #endif
  24. //@}
Laatste wijziging: Za 25 April 2009, 09:43