teste de publish

Dependencies:   DS1820 HighSpeedAnalogIn devices mbed

Committer:
brunofgc
Date:
Fri Jun 08 22:14:21 2018 +0000
Revision:
38:07d3907b74e5
Parent:
21:b9315cdd9275
teste de publish para compilar no mbed-cli

Who changed what in which revision?

UserRevisionLine numberNew contents of line
brunofgc 1:0e0967c88590 1 //Sensor de Temperatura
brunofgc 15:0f78bf9c13ec 2 #define DATA_PIN P2_6
brunofgc 1:0e0967c88590 3 #include "mbed.h"
brunofgc 1:0e0967c88590 4 #include "DS1820.h"
brunofgc 21:b9315cdd9275 5 #include "main.h"
brunofgc 1:0e0967c88590 6
brunofgc 15:0f78bf9c13ec 7 #define MAX_PROBES 16
brunofgc 1:0e0967c88590 8 extern DS1820* probe[MAX_PROBES];
brunofgc 1:0e0967c88590 9 extern float temperaturas[MAX_PROBES];
brunofgc 1:0e0967c88590 10 extern int num_temperatureSensors;
brunofgc 1:0e0967c88590 11 //Sensor de Temperatura
brunofgc 1:0e0967c88590 12
brunofgc 1:0e0967c88590 13 void inicializaSensoresTemperatura();
brunofgc 1:0e0967c88590 14 void refreshSensoresTemperatura();