view simple_ds18b20.h @ 336:ba4c4df13487

parse the arguments for start/length
author Matt Johnston <matt@ucc.asn.au>
date Tue, 12 Jun 2012 23:43:49 +0800
parents f6b5941b4c34
children ca08442635ca
line wrap: on
line source

#ifndef SIMPLE_DS18B20_H_
#define SIMPLE_DS18B20_H_
#include <stdint.h>
#include <stdio.h>

#include "ds18x20.h"

uint8_t simple_ds18b20_start_meas(uint8_t id[]);
void printhex(uint8_t *id, uint8_t n, FILE *stream);
void printhex_byte( const unsigned char  b, FILE *stream );
uint8_t simple_ds18b20_read_decicelsius( uint8_t id[], int16_t *decicelsius );
uint8_t simple_ds18b20_read_all();

#endif // SIMPLE_DS18B20_H_