From e5186e602e247117fab0c5109f8ee11409605157 Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 1 Sep 2018 19:57:10 +0200 Subject: [PATCH] Fix ccs811 begin result check --- sonoff/xsns_31_ccs811.ino | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sonoff/xsns_31_ccs811.ino b/sonoff/xsns_31_ccs811.ino index 482572cdb..8aba4d04f 100644 --- a/sonoff/xsns_31_ccs811.ino +++ b/sonoff/xsns_31_ccs811.ino @@ -47,13 +47,12 @@ void CCS811Update() // Perform every n second tcnt = 0; CCS811_ready = 0; if (!CCS811_type) { - sint8_t res = ccs.begin(CCS811_ADDRESS); - if (!res) { + if (ccs.begin(CCS811_ADDRESS)) { // ccs.begin returns true in case of success CCS811_type = 1; snprintf_P(log_data, sizeof(log_data), S_LOG_I2C_FOUND_AT, "CCS811", 0x5A); AddLog(LOG_LEVEL_DEBUG); } else { - //snprintf_P(log_data, sizeof(log_data), "CCS811 init failed: %d",res); + //snprintf_P(log_data, sizeof(log_data), "CCS811 init failed"); //AddLog(LOG_LEVEL_DEBUG); } } else {