Commit Iniziale, progetto funzionante caricato su box ETcontroller in

cantina
This commit is contained in:
2019-10-09 23:25:44 +02:00
commit c6e4e461ca
555 changed files with 118433 additions and 0 deletions

9
DS18B20/crc8.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef _CRC8_
#define _CRC8_
#include <mbed.h>
#ifdef __cplusplus
extern "C" {
#endif
uint8_t crc8 (uint8_t* data_in, uint16_t number_of_bytes_to_read);
#endif
}