From a039db82b871ac2be8e792bc243690d81ca4d151 Mon Sep 17 00:00:00 2001 From: John Hollowell Date: Sun, 17 Sep 2023 01:01:52 -0400 Subject: [PATCH] Update http_request_sensor.rst (#3191) fix typo --- cookbook/http_request_sensor.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/http_request_sensor.rst b/cookbook/http_request_sensor.rst index 86cedeb01..56cd49cec 100644 --- a/cookbook/http_request_sensor.rst +++ b/cookbook/http_request_sensor.rst @@ -1,7 +1,7 @@ Share data directly between ESPHome nodes ========================================= -In certain special cases it might be desired to avoid placing any middleware like an MQTT or a home automation server just to transfer small bits of data from one node to another. Direct data polling is possibvle using HTTP, but beware that the involved components are resource hungry and may be less stable on long term. The webserver embedded in the node is not designed to constantly serve a large amount of requests. +In certain special cases it might be desired to avoid placing any middleware like an MQTT or a home automation server just to transfer small bits of data from one node to another. Direct data polling is possible using HTTP, but beware that the involved components are resource hungry and may be less stable on long term. The webserver embedded in the node is not designed to constantly serve a large amount of requests. The primary node holding the data we need to retrieve from will be the server, and the others polling for it will be the clients (can be multiple).