updated sample code with new function names

This commit is contained in:
Youen Toupin 2016-03-20 10:11:01 +01:00
parent f068849a7d
commit 3e75b83248
2 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
/*.opensdf /*.opensdf
/*.sdf /*.sdf
/*.opendb /*.opendb
/*.suo

View File

@ -72,7 +72,7 @@ void loop()
cli(); cli();
memcpy((void*)scratchpad, data, 9); memcpy((void*)scratchpad, data, 9);
state = DS_TemperatureConverted; state = DS_TemperatureConverted;
OWSlave.writeBit(1, true); // now that conversion is finished, start sending ones until reset OWSlave.beginWriteBit(1, true); // now that conversion is finished, start sending ones until reset
sei(); sei();
} }
} }
@ -90,12 +90,12 @@ void owReceive(OneWireSlave::ReceiveEvent evt, byte data)
case DS18B20_START_CONVERSION: case DS18B20_START_CONVERSION:
state = DS_ConvertingTemperature; state = DS_ConvertingTemperature;
conversionStartTime = millis(); conversionStartTime = millis();
OWSlave.writeBit(0, true); // send zeros as long as the conversion is not finished OWSlave.beginWriteBit(0, true); // send zeros as long as the conversion is not finished
break; break;
case DS18B20_READ_SCRATCHPAD: case DS18B20_READ_SCRATCHPAD:
state = DS_WaitingReset; state = DS_WaitingReset;
OWSlave.write((const byte*)scratchpad, 9, 0); OWSlave.beginWrite((const byte*)scratchpad, 9, 0);
break; break;
case DS18B20_WRITE_SCRATCHPAD: case DS18B20_WRITE_SCRATCHPAD: