Minor verbal fixes.

Rene 'Renne' Bartsch 2018-07-12 17:30:40 +02:00
parent 4828925411
commit b3861f7fdc
1 changed files with 3 additions and 3 deletions

@ -19,8 +19,8 @@ Any sensor driver needs a callback function following the scheme
* *
* It provides the Tasmota callback IDs. * It provides the Tasmota callback IDs.
* *
* @param byte function Tasmota function ID. * @param byte callback_id Tasmota function ID.
* @return boolean ??? * @return boolean Return value.
* @pre None. * @pre None.
* @post None. * @post None.
* *
@ -30,7 +30,7 @@ boolean Xsns<driverID>(byte callback_id) {
// ??? // ???
boolean result = false; boolean result = false;
// Check if I2C mode // Check if I2C interface mode
// if(i2c_flg) { // if(i2c_flg) {
// Check which callback ID is called by Tasmota // Check which callback ID is called by Tasmota