X-Git-Url: https://git.realraum.at/?a=blobdiff_plain;f=rf433ctl%2FOneWire%2Fexamples%2Fsample%2Fsample.pde;fp=rf433ctl%2FOneWire%2Fexamples%2Fsample%2Fsample.pde;h=9124f521ae3ed5a968c20386d4bc292085e933e3;hb=d28fbe27742a031f5bc5c39cd3b5588a39423162;hp=0000000000000000000000000000000000000000;hpb=b654506283c4f625e5ade66e2bc5eb22ad4d1545;p=svn42.git diff --git a/rf433ctl/OneWire/examples/sample/sample.pde b/rf433ctl/OneWire/examples/sample/sample.pde new file mode 100644 index 0000000..9124f52 --- /dev/null +++ b/rf433ctl/OneWire/examples/sample/sample.pde @@ -0,0 +1,64 @@ +#include + +/* DS18S20 Temperature chip i/o */ + +OneWire ds(8); // on pin 10 + +void setup(void) { + Serial.begin(9600); +} + +void loop(void) { + byte i; + byte present = 0; + byte data[12]; + byte addr[8]; + + if ( !ds.search(addr)) { + Serial.print("No more addresses.\n"); + ds.reset_search(); + delay(250); + return; + } + + Serial.print("R="); + for( i = 0; i < 8; i++) { + Serial.print(addr[i], HEX); + Serial.print(" "); + } + + if ( OneWire::crc8( addr, 7) != addr[7]) { + Serial.print("CRC is not valid!\n"); + return; + } + + if ( addr[0] != 0x10) { + Serial.print("Device is not a DS18S20 family device.\n"); + return; + } + + // The DallasTemperature library can do all this work for you! + + ds.reset(); + ds.select(addr); + ds.write(0x44,1); // start conversion, with parasite power on at the end + + delay(1000); // maybe 750ms is enough, maybe not + // we might do a ds.depower() here, but the reset will take care of it. + + present = ds.reset(); + ds.select(addr); + ds.write(0xBE); // Read Scratchpad + + Serial.print("P="); + Serial.print(present,HEX); + Serial.print(" "); + for ( i = 0; i < 9; i++) { // we need 9 bytes + data[i] = ds.read(); + Serial.print(data[i], HEX); + Serial.print(" "); + } + Serial.print(" CRC="); + Serial.print( OneWire::crc8( data, 8), HEX); + Serial.println(); +}