<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: NodeMCU Ajax: Dynamic Sensor Data on Web Page	</title>
	<atom:link href="https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=nodemcu-ajax-dynamic-sensor-data-web-page</link>
	<description>Microcontroller Tutorials and Resources</description>
	<lastBuildDate>Sun, 15 Oct 2023 22:03:48 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.2</generator>
	<item>
		<title>
		By: Pritish Chavan		</title>
		<link>https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-91526</link>

		<dc:creator><![CDATA[Pritish Chavan]]></dc:creator>
		<pubDate>Mon, 27 Jul 2020 05:39:08 +0000</pubDate>
		<guid isPermaLink="false">https://www.teachmemicro.com/?p=1127#comment-91526</guid>

					<description><![CDATA[server.on(&quot;/&quot;, [](){
   page = &quot;Sensor to Node MCU Web ServerData: &quot;&quot;\r\n&quot;;
   page += &quot;\r\n&quot;;
   page += &quot;var x = setInterval(function() {loadData(\&quot;data.txt\&quot;,updateData)}, 1000);\r\n&quot;;
   page += &quot;function loadData(url, callback){\r\n&quot;;
   page += &quot;var xhttp = new XMLHttpRequest();\r\n&quot;;
   page += &quot;xhttp.onreadystatechange = function(){\r\n&quot;;
   page += &quot; if(this.readyState == 4 &#038;&#038; this.status == 200){\r\n&quot;;
   page += &quot; callback.apply(xhttp);\r\n&quot;;
   page += &quot; }\r\n&quot;;
   page += &quot;};\r\n&quot;;
   page += &quot;xhttp.open(\&quot;GET\&quot;, url, true);\r\n&quot;;
   page += &quot;xhttp.send();\r\n&quot;;
   page += &quot;}\r\n&quot;;
   page += &quot;function updateData(){\r\n&quot;;
   page += &quot; document.getElementById(\&quot;data\&quot;).innerHTML = this.responseText;\r\n&quot;;
   page += &quot;}\r\n&quot;;
   page += &quot;\r\n&quot;;
   server.send(200, &quot;text/html&quot;, page);
});

In this function i want to put id value in array format is there possible or not.
if possible then how to write a statment
page = &quot;Sensor to Node MCU Web ServerData: &quot;&quot;\r\n&quot;;]]></description>
			<content:encoded><![CDATA[<p>server.on("/", [](){<br />
   page = "Sensor to Node MCU Web ServerData: ""\r\n";<br />
   page += "\r\n";<br />
   page += "var x = setInterval(function() {loadData(\"data.txt\",updateData)}, 1000);\r\n";<br />
   page += "function loadData(url, callback){\r\n";<br />
   page += "var xhttp = new XMLHttpRequest();\r\n";<br />
   page += "xhttp.onreadystatechange = function(){\r\n";<br />
   page += " if(this.readyState == 4 &amp;&amp; this.status == 200){\r\n";<br />
   page += " callback.apply(xhttp);\r\n";<br />
   page += " }\r\n";<br />
   page += "};\r\n";<br />
   page += "xhttp.open(\"GET\", url, true);\r\n";<br />
   page += "xhttp.send();\r\n";<br />
   page += "}\r\n";<br />
   page += "function updateData(){\r\n";<br />
   page += " document.getElementById(\"data\").innerHTML = this.responseText;\r\n";<br />
   page += "}\r\n";<br />
   page += "\r\n";<br />
   server.send(200, "text/html", page);<br />
});</p>
<p>In this function i want to put id value in array format is there possible or not.<br />
if possible then how to write a statment<br />
page = "Sensor to Node MCU Web ServerData: ""\r\n";</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Roland Pelayo		</title>
		<link>https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-83272</link>

		<dc:creator><![CDATA[Roland Pelayo]]></dc:creator>
		<pubDate>Tue, 26 May 2020 03:07:56 +0000</pubDate>
		<guid isPermaLink="false">https://www.teachmemicro.com/?p=1127#comment-83272</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-82368&quot;&gt;Joe Bauer&lt;/a&gt;.

Thanks! Will create a tutorial for that soon]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-82368">Joe Bauer</a>.</p>
<p>Thanks! Will create a tutorial for that soon</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Joe Bauer		</title>
		<link>https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-82368</link>

		<dc:creator><![CDATA[Joe Bauer]]></dc:creator>
		<pubDate>Fri, 22 May 2020 04:59:41 +0000</pubDate>
		<guid isPermaLink="false">https://www.teachmemicro.com/?p=1127#comment-82368</guid>

					<description><![CDATA[Thanks for this project. How is it possible to add an input field? I would like to be able to adjust the threshold value for my &#039;Smoke Alarm&#039; project for my wife. Is there project that shows how to add an interger field?]]></description>
			<content:encoded><![CDATA[<p>Thanks for this project. How is it possible to add an input field? I would like to be able to adjust the threshold value for my 'Smoke Alarm' project for my wife. Is there project that shows how to add an interger field?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Roland Pelayo		</title>
		<link>https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-22005</link>

		<dc:creator><![CDATA[Roland Pelayo]]></dc:creator>
		<pubDate>Wed, 15 May 2019 03:57:48 +0000</pubDate>
		<guid isPermaLink="false">https://www.teachmemicro.com/?p=1127#comment-22005</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-21563&quot;&gt;Gibran Berriel&lt;/a&gt;.

Yes, you can check my post: &lt;a href=&quot;https://www.teachmemicro.com/nodemcu-iot-weather-device/&quot;&gt;NodeMCU weather device&lt;/a&gt; for an example on how to graph data from sensors.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-21563">Gibran Berriel</a>.</p>
<p>Yes, you can check my post: <a href="https://www.teachmemicro.com/nodemcu-iot-weather-device/">NodeMCU weather device</a> for an example on how to graph data from sensors.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Gibran Berriel		</title>
		<link>https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-21563</link>

		<dc:creator><![CDATA[Gibran Berriel]]></dc:creator>
		<pubDate>Wed, 01 May 2019 15:40:23 +0000</pubDate>
		<guid isPermaLink="false">https://www.teachmemicro.com/?p=1127#comment-21563</guid>

					<description><![CDATA[Es posible graficar los resultados directamente desde el nodemcu?
Is it possible to graph the results directly from the nodemcu?]]></description>
			<content:encoded><![CDATA[<p>Es posible graficar los resultados directamente desde el nodemcu?<br />
Is it possible to graph the results directly from the nodemcu?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Roland Pelayo		</title>
		<link>https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-18402</link>

		<dc:creator><![CDATA[Roland Pelayo]]></dc:creator>
		<pubDate>Fri, 08 Feb 2019 06:25:28 +0000</pubDate>
		<guid isPermaLink="false">https://www.teachmemicro.com/?p=1127#comment-18402</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-18400&quot;&gt;Aditi Agrawal&lt;/a&gt;.

Hi,

It looks like a formatting concern. Have you tried toggling to plain code? Click the &quot;&lt;&gt;&quot; on the upper right.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-18400">Aditi Agrawal</a>.</p>
<p>Hi,</p>
<p>It looks like a formatting concern. Have you tried toggling to plain code? Click the "<>" on the upper right.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aditi Agrawal		</title>
		<link>https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-18400</link>

		<dc:creator><![CDATA[Aditi Agrawal]]></dc:creator>
		<pubDate>Fri, 08 Feb 2019 05:55:52 +0000</pubDate>
		<guid isPermaLink="false">https://www.teachmemicro.com/?p=1127#comment-18400</guid>

					<description><![CDATA[Hii I have been trying this code but I got this error.

Arduino: 1.8.8 (Windows 10), Board: &quot;NodeMCU 1.0 (ESP-12E Module), 80 MHz, Flash, Disabled, 4M (no SPIFFS), v2 Lower Memory, Disabled, None, Only Sketch, 115200&quot;

nodemcu_server:8:1: error: stray &#039;\302&#039; in program

 ESP8266WebServer server(80); Â Â //instantiate server at port 80 (http port)

 ^

nodemcu_server:8:1: error: stray &#039;\240&#039; in program

nodemcu_server:8:1: error: stray &#039;\302&#039; in program

nodemcu_server:8:1: error: stray &#039;\240&#039; in program

nodemcu_server:15:1: error: stray &#039;\302&#039; in program

 Â pinMode(A0, INPUT);

 ^

nodemcu_server:15:1: error: stray &#039;\240&#039; in program

nodemcu_server:16:1: error: stray &#039;\302&#039; in program

 Â delay(1000);

 ^

nodemcu_server:16:1: error: stray &#039;\240&#039; in program

nodemcu_server:17:1: error: stray &#039;\302&#039; in program

 Â Serial.begin(115200);

 ^

nodemcu_server:17:1: error: stray &#039;\240&#039; in program

nodemcu_server:18:1: error: stray &#039;\302&#039; in program

 Â WiFi.begin(ssid, password); //begin WiFi connection

 ^

nodemcu_server:18:1: error: stray &#039;\240&#039; in program

nodemcu_server:19:1: error: stray &#039;\302&#039; in program

 Â Serial.println(&quot;&quot;);

 ^

nodemcu_server:19:1: error: stray &#039;\240&#039; in program

nodemcu_server:21:1: error: stray &#039;\302&#039; in program

 Â // Wait for connection

 ^

nodemcu_server:21:1: error: stray &#039;\240&#039; in program

nodemcu_server:22:1: error: stray &#039;\302&#039; in program

 Â while (WiFi.status() != WL_CONNECTED) {

 ^

nodemcu_server:22:1: error: stray &#039;\240&#039; in program

nodemcu_server:23:1: error: stray &#039;\302&#039; in program

 Â delay(500);

 ^

nodemcu_server:23:1: error: stray &#039;\240&#039; in program

nodemcu_server:24:1: error: stray &#039;\302&#039; in program

 Â Serial.print(&quot;.&quot;);

 ^

nodemcu_server:24:1: error: stray &#039;\240&#039; in program

nodemcu_server:27:1: error: stray &#039;\302&#039; in program

 Â Serial.println(&quot;&quot;);

 ^

nodemcu_server:27:1: error: stray &#039;\240&#039; in program

nodemcu_server:28:1: error: stray &#039;\302&#039; in program

 Â Serial.print(&quot;Connected to &quot;);

 ^

nodemcu_server:28:1: error: stray &#039;\240&#039; in program

nodemcu_server:29:1: error: stray &#039;\302&#039; in program

 Â Serial.println(ssid);

 ^

nodemcu_server:29:1: error: stray &#039;\240&#039; in program

nodemcu_server:30:1: error: stray &#039;\302&#039; in program

 Â Serial.print(&quot;IP address: &quot;);

 ^

nodemcu_server:30:1: error: stray &#039;\240&#039; in program

nodemcu_server:31:1: error: stray &#039;\302&#039; in program

 Â Serial.println(WiFi.localIP());

 ^

nodemcu_server:31:1: error: stray &#039;\240&#039; in program

nodemcu_server:32:1: error: stray &#039;\302&#039; in program

 Â server.on(&quot;/data.txt&quot;, [](){

 ^

nodemcu_server:32:1: error: stray &#039;\240&#039; in program

nodemcu_server:33:1: error: stray &#039;\302&#039; in program

 Â   text = (String)data;

 ^

nodemcu_server:33:1: error: stray &#039;\240&#039; in program

nodemcu_server:34:1: error: stray &#039;\302&#039; in program

 Â Â Â server.send(200, &quot;text/html&quot;, text);

 ^

nodemcu_server:34:1: error: stray &#039;\240&#039; in program

nodemcu_server:34:1: error: stray &#039;\302&#039; in program

nodemcu_server:34:1: error: stray &#039;\240&#039; in program

nodemcu_server:34:1: error: stray &#039;\302&#039; in program

nodemcu_server:34:1: error: stray &#039;\240&#039; in program

nodemcu_server:35:1: error: stray &#039;\302&#039; in program

 Â });

 ^

nodemcu_server:35:1: error: stray &#039;\240&#039; in program

nodemcu_server:36:1: error: stray &#039;\302&#039; in program

 Â server.on(&quot;/&quot;, [](){

 ^

nodemcu_server:36:1: error: stray &#039;\240&#039; in program

nodemcu_server:54:2: error: stray &#039;\302&#039; in program

  Â Â server.send(200, &quot;text/html&quot;, page);

  ^

nodemcu_server:54:2: error: stray &#039;\240&#039; in program

nodemcu_server:54:2: error: stray &#039;\302&#039; in program

nodemcu_server:54:2: error: stray &#039;\240&#039; in program

nodemcu_server:57:1: error: stray &#039;\302&#039; in program

 Â server.begin();

 ^

nodemcu_server:57:1: error: stray &#039;\240&#039; in program

nodemcu_server:58:1: error: stray &#039;\302&#039; in program

 Â Serial.println(&quot;Web server started!&quot;);

 ^

nodemcu_server:58:1: error: stray &#039;\240&#039; in program

nodemcu_server:62:1: error: stray &#039;\302&#039; in program

 Â data = analogRead(A0);

 ^

nodemcu_server:62:1: error: stray &#039;\240&#039; in program

nodemcu_server:63:1: error: stray &#039;\302&#039; in program

 Â delay(1000);

 ^

nodemcu_server:63:1: error: stray &#039;\240&#039; in program

nodemcu_server:64:1: error: stray &#039;\302&#039; in program

 Â server.handleClient();

 ^

nodemcu_server:64:1: error: stray &#039;\240&#039; in program

exit status 1
stray &#039;\302&#039; in program


I tried toggling line code but I still got the same error.

Can You please help me fix this.

Thank you.]]></description>
			<content:encoded><![CDATA[<p>Hii I have been trying this code but I got this error.</p>
<p>Arduino: 1.8.8 (Windows 10), Board: "NodeMCU 1.0 (ESP-12E Module), 80 MHz, Flash, Disabled, 4M (no SPIFFS), v2 Lower Memory, Disabled, None, Only Sketch, 115200"</p>
<p>nodemcu_server:8:1: error: stray '\302' in program</p>
<p> ESP8266WebServer server(80); Â Â //instantiate server at port 80 (http port)</p>
<p> ^</p>
<p>nodemcu_server:8:1: error: stray '\240' in program</p>
<p>nodemcu_server:8:1: error: stray '\302' in program</p>
<p>nodemcu_server:8:1: error: stray '\240' in program</p>
<p>nodemcu_server:15:1: error: stray '\302' in program</p>
<p> Â pinMode(A0, INPUT);</p>
<p> ^</p>
<p>nodemcu_server:15:1: error: stray '\240' in program</p>
<p>nodemcu_server:16:1: error: stray '\302' in program</p>
<p> Â delay(1000);</p>
<p> ^</p>
<p>nodemcu_server:16:1: error: stray '\240' in program</p>
<p>nodemcu_server:17:1: error: stray '\302' in program</p>
<p> Â Serial.begin(115200);</p>
<p> ^</p>
<p>nodemcu_server:17:1: error: stray '\240' in program</p>
<p>nodemcu_server:18:1: error: stray '\302' in program</p>
<p> Â WiFi.begin(ssid, password); //begin WiFi connection</p>
<p> ^</p>
<p>nodemcu_server:18:1: error: stray '\240' in program</p>
<p>nodemcu_server:19:1: error: stray '\302' in program</p>
<p> Â Serial.println("");</p>
<p> ^</p>
<p>nodemcu_server:19:1: error: stray '\240' in program</p>
<p>nodemcu_server:21:1: error: stray '\302' in program</p>
<p> Â // Wait for connection</p>
<p> ^</p>
<p>nodemcu_server:21:1: error: stray '\240' in program</p>
<p>nodemcu_server:22:1: error: stray '\302' in program</p>
<p> Â while (WiFi.status() != WL_CONNECTED) {</p>
<p> ^</p>
<p>nodemcu_server:22:1: error: stray '\240' in program</p>
<p>nodemcu_server:23:1: error: stray '\302' in program</p>
<p> Â delay(500);</p>
<p> ^</p>
<p>nodemcu_server:23:1: error: stray '\240' in program</p>
<p>nodemcu_server:24:1: error: stray '\302' in program</p>
<p> Â Serial.print(".");</p>
<p> ^</p>
<p>nodemcu_server:24:1: error: stray '\240' in program</p>
<p>nodemcu_server:27:1: error: stray '\302' in program</p>
<p> Â Serial.println("");</p>
<p> ^</p>
<p>nodemcu_server:27:1: error: stray '\240' in program</p>
<p>nodemcu_server:28:1: error: stray '\302' in program</p>
<p> Â Serial.print("Connected to ");</p>
<p> ^</p>
<p>nodemcu_server:28:1: error: stray '\240' in program</p>
<p>nodemcu_server:29:1: error: stray '\302' in program</p>
<p> Â Serial.println(ssid);</p>
<p> ^</p>
<p>nodemcu_server:29:1: error: stray '\240' in program</p>
<p>nodemcu_server:30:1: error: stray '\302' in program</p>
<p> Â Serial.print("IP address: ");</p>
<p> ^</p>
<p>nodemcu_server:30:1: error: stray '\240' in program</p>
<p>nodemcu_server:31:1: error: stray '\302' in program</p>
<p> Â Serial.println(WiFi.localIP());</p>
<p> ^</p>
<p>nodemcu_server:31:1: error: stray '\240' in program</p>
<p>nodemcu_server:32:1: error: stray '\302' in program</p>
<p> Â server.on("/data.txt", [](){</p>
<p> ^</p>
<p>nodemcu_server:32:1: error: stray '\240' in program</p>
<p>nodemcu_server:33:1: error: stray '\302' in program</p>
<p> Â   text = (String)data;</p>
<p> ^</p>
<p>nodemcu_server:33:1: error: stray '\240' in program</p>
<p>nodemcu_server:34:1: error: stray '\302' in program</p>
<p> Â Â Â server.send(200, "text/html", text);</p>
<p> ^</p>
<p>nodemcu_server:34:1: error: stray '\240' in program</p>
<p>nodemcu_server:34:1: error: stray '\302' in program</p>
<p>nodemcu_server:34:1: error: stray '\240' in program</p>
<p>nodemcu_server:34:1: error: stray '\302' in program</p>
<p>nodemcu_server:34:1: error: stray '\240' in program</p>
<p>nodemcu_server:35:1: error: stray '\302' in program</p>
<p> Â });</p>
<p> ^</p>
<p>nodemcu_server:35:1: error: stray '\240' in program</p>
<p>nodemcu_server:36:1: error: stray '\302' in program</p>
<p> Â server.on("/", [](){</p>
<p> ^</p>
<p>nodemcu_server:36:1: error: stray '\240' in program</p>
<p>nodemcu_server:54:2: error: stray '\302' in program</p>
<p>  Â Â server.send(200, "text/html", page);</p>
<p>  ^</p>
<p>nodemcu_server:54:2: error: stray '\240' in program</p>
<p>nodemcu_server:54:2: error: stray '\302' in program</p>
<p>nodemcu_server:54:2: error: stray '\240' in program</p>
<p>nodemcu_server:57:1: error: stray '\302' in program</p>
<p> Â server.begin();</p>
<p> ^</p>
<p>nodemcu_server:57:1: error: stray '\240' in program</p>
<p>nodemcu_server:58:1: error: stray '\302' in program</p>
<p> Â Serial.println("Web server started!");</p>
<p> ^</p>
<p>nodemcu_server:58:1: error: stray '\240' in program</p>
<p>nodemcu_server:62:1: error: stray '\302' in program</p>
<p> Â data = analogRead(A0);</p>
<p> ^</p>
<p>nodemcu_server:62:1: error: stray '\240' in program</p>
<p>nodemcu_server:63:1: error: stray '\302' in program</p>
<p> Â delay(1000);</p>
<p> ^</p>
<p>nodemcu_server:63:1: error: stray '\240' in program</p>
<p>nodemcu_server:64:1: error: stray '\302' in program</p>
<p> Â server.handleClient();</p>
<p> ^</p>
<p>nodemcu_server:64:1: error: stray '\240' in program</p>
<p>exit status 1<br />
stray '\302' in program</p>
<p>I tried toggling line code but I still got the same error.</p>
<p>Can You please help me fix this.</p>
<p>Thank you.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jan		</title>
		<link>https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-16493</link>

		<dc:creator><![CDATA[Jan]]></dc:creator>
		<pubDate>Wed, 28 Nov 2018 19:24:50 +0000</pubDate>
		<guid isPermaLink="false">https://www.teachmemicro.com/?p=1127#comment-16493</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-911&quot;&gt;Roland Pelayo&lt;/a&gt;.

Hi,

i changed the code for 3 sensors and its working. The issue i have is: The Sensor values are displayed in one row. I have no idea how to get a carriage return in HTML to have each sensor value in a single row. Can you help?]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-911">Roland Pelayo</a>.</p>
<p>Hi,</p>
<p>i changed the code for 3 sensors and its working. The issue i have is: The Sensor values are displayed in one row. I have no idea how to get a carriage return in HTML to have each sensor value in a single row. Can you help?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jhaxe		</title>
		<link>https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-16258</link>

		<dc:creator><![CDATA[Jhaxe]]></dc:creator>
		<pubDate>Mon, 19 Nov 2018 10:07:07 +0000</pubDate>
		<guid isPermaLink="false">https://www.teachmemicro.com/?p=1127#comment-16258</guid>

					<description><![CDATA[how to do if 2 or more analog sensor? thanks..]]></description>
			<content:encoded><![CDATA[<p>how to do if 2 or more analog sensor? thanks..</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anoop		</title>
		<link>https://www.teachmemicro.com/nodemcu-ajax-dynamic-sensor-data-web-page/#comment-15830</link>

		<dc:creator><![CDATA[Anoop]]></dc:creator>
		<pubDate>Tue, 30 Oct 2018 11:04:44 +0000</pubDate>
		<guid isPermaLink="false">https://www.teachmemicro.com/?p=1127#comment-15830</guid>

					<description><![CDATA[How can we do  for two analog sensors , provided it has only one analog pin ..? Please help .]]></description>
			<content:encoded><![CDATA[<p>How can we do  for two analog sensors , provided it has only one analog pin ..? Please help .</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 

Served from: www.teachmemicro.com @ 2026-08-06 19:12:58 by W3 Total Cache
-->