From 2d41c5f5cad70376ccd285c56cdabfd347098289 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 22 Nov 2023 16:38:58 -0500 Subject: [PATCH] Set polling interval to 5s --- veml7700.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/veml7700.h b/veml7700.h index d03cbb2..3b86952 100644 --- a/veml7700.h +++ b/veml7700.h @@ -12,7 +12,7 @@ class VEML7700CustomSensor : public PollingComponent, public Sensor { Sensor *white_sensor = new Sensor(); Sensor *als_sensor = new Sensor(); - VEML7700CustomSensor() : PollingComponent(15000) {} + VEML7700CustomSensor() : PollingComponent(5000) {} void setup() override { Wire.begin(); veml.begin();