From 7dce836919e395b3c76f11aebc1655eb8b81f0e0 Mon Sep 17 00:00:00 2001 From: Otto Winter Date: Wed, 8 May 2019 10:35:07 +0200 Subject: [PATCH] Add longer MAX6675 delay --- esphome/components/max6675/max6675.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/max6675/max6675.cpp b/esphome/components/max6675/max6675.cpp index e9bbfb4a05..8ea7feb963 100644 --- a/esphome/components/max6675/max6675.cpp +++ b/esphome/components/max6675/max6675.cpp @@ -14,7 +14,7 @@ void MAX6675Sensor::update() { // Conversion time typ: 170ms, max: 220ms auto f = std::bind(&MAX6675Sensor::read_data_, this); - this->set_timeout("value", 220, f); + this->set_timeout("value", 250, f); } void MAX6675Sensor::setup() {