From 85ba13de129207ac65616eec5445b826b82e636b Mon Sep 17 00:00:00 2001 From: samuelbles07 Date: Wed, 5 Feb 2025 01:18:46 +0700 Subject: [PATCH] Set default ag client timeout to 15s --- src/AgApiClient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AgApiClient.h b/src/AgApiClient.h index 9f39ceb..8e52e76 100644 --- a/src/AgApiClient.h +++ b/src/AgApiClient.h @@ -31,7 +31,7 @@ private: bool getConfigFailed; bool postToServerFailed; bool notAvailableOnDashboard = false; // Device not setup on Airgradient cloud dashboard. - uint16_t timeoutMs = 10000; // Default set to 10s + uint16_t timeoutMs = 15000; // Default set to 15s public: AgApiClient(Stream &stream, Configuration &config);