<?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: ThingSpeak open source IoT service</title>
	<atom:link href="http://www.epanorama.net/blog/2015/06/06/thingspeak-open-source-iot-service/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.epanorama.net/blog/2015/06/06/thingspeak-open-source-iot-service/</link>
	<description>All about electronics and circuit design</description>
	<lastBuildDate>Sat, 09 May 2026 20:57:24 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.14</generator>
	<item>
		<title>By: Tomi Engdahl</title>
		<link>https://www.epanorama.net/blog/2015/06/06/thingspeak-open-source-iot-service/comment-page-1/#comment-1486337</link>
		<dc:creator><![CDATA[Tomi Engdahl]]></dc:creator>
		<pubDate>Wed, 13 Apr 2016 11:51:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.epanorama.net/newepa/?p=27844#comment-1486337</guid>
		<description><![CDATA[For example p5js code can be pretty easily changed to read data from ThingSpeak
http://p5js.org/examples/demos/Hello_P5_Weather.php

Changes:
var url = &#039;http://api.thingspeak.com/channels/40743/feed/last.json&#039;;

// Get the angle (convert to radians)
  var angle = radians(Number(weather.field1));
  // Get the wind speed
  var windmag = Number(weather.field1);]]></description>
		<content:encoded><![CDATA[<p>For example p5js code can be pretty easily changed to read data from ThingSpeak<br />
<a href="http://p5js.org/examples/demos/Hello_P5_Weather.php" rel="nofollow">http://p5js.org/examples/demos/Hello_P5_Weather.php</a></p>
<p>Changes:<br />
var url = &#8216;http://api.thingspeak.com/channels/40743/feed/last.json&#8217;;</p>
<p>// Get the angle (convert to radians)<br />
  var angle = radians(Number(weather.field1));<br />
  // Get the wind speed<br />
  var windmag = Number(weather.field1);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomi Engdahl</title>
		<link>https://www.epanorama.net/blog/2015/06/06/thingspeak-open-source-iot-service/comment-page-1/#comment-1486335</link>
		<dc:creator><![CDATA[Tomi Engdahl]]></dc:creator>
		<pubDate>Wed, 13 Apr 2016 11:49:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.epanorama.net/newepa/?p=27844#comment-1486335</guid>
		<description><![CDATA[Parse ThingSpeak Last Entry Feed with jQuery
http://community.thingspeak.com/tutorials/javascript/parse-thingspeak-last-entry-feed-with-jquery/

Here is a quick reminder on how to access a Channel’s last entry via the ThingSpeak API. 
URL:
http://api.thingspeak.com/channels/(channel_id)/feed/last.json

Reponse:
{&quot;created_at&quot;:&quot;&quot;,&quot;entry_id&quot;:(entry_id)&quot;field1&quot;:&quot;&quot;,&quot;field2&quot;:&quot;&quot;,&quot;field3&quot;:&quot;&quot;,&quot;field4&quot;:&quot;&quot;,&quot;field5&quot;:&quot;&quot;,&quot;field6&quot;:&quot;&quot;,&quot;field7&quot;:&quot;&quot;,&quot;field8&quot;:&quot;&quot;}

Parsing JSON with jQuery

jQuery makes it so easy to make web-service and API calls]]></description>
		<content:encoded><![CDATA[<p>Parse ThingSpeak Last Entry Feed with jQuery<br />
<a href="http://community.thingspeak.com/tutorials/javascript/parse-thingspeak-last-entry-feed-with-jquery/" rel="nofollow">http://community.thingspeak.com/tutorials/javascript/parse-thingspeak-last-entry-feed-with-jquery/</a></p>
<p>Here is a quick reminder on how to access a Channel’s last entry via the ThingSpeak API.<br />
URL:<br />
<a href="http://api.thingspeak.com/channels/(channel_id)/feed/last.json" rel="nofollow">http://api.thingspeak.com/channels/(channel_id)/feed/last.json</a></p>
<p>Reponse:<br />
{&#8220;created_at&#8221;:&#8221;&#8221;,&#8221;entry_id&#8221;:(entry_id)&#8221;field1&#8243;:&#8221;&#8221;,&#8221;field2&#8243;:&#8221;&#8221;,&#8221;field3&#8243;:&#8221;&#8221;,&#8221;field4&#8243;:&#8221;&#8221;,&#8221;field5&#8243;:&#8221;&#8221;,&#8221;field6&#8243;:&#8221;&#8221;,&#8221;field7&#8243;:&#8221;&#8221;,&#8221;field8&#8243;:&#8221;&#8221;}</p>
<p>Parsing JSON with jQuery</p>
<p>jQuery makes it so easy to make web-service and API calls</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomi Engdahl</title>
		<link>https://www.epanorama.net/blog/2015/06/06/thingspeak-open-source-iot-service/comment-page-1/#comment-1486334</link>
		<dc:creator><![CDATA[Tomi Engdahl]]></dc:creator>
		<pubDate>Wed, 13 Apr 2016 11:48:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.epanorama.net/newepa/?p=27844#comment-1486334</guid>
		<description><![CDATA[ThingSpeak Channel Data With More Than 8 Fields
http://internetofhomethings.com/homethings/?p=681

Are you using ThingSpeak to capture and save your IoT device data points? Ever felt constrained by the 8 field channels limit?

I was.

A Simple Solution

Hmm, what to do?

While you are limited to 8 data fields, a channel is not constrained by it’s own channel data. So the answer is right there…just add another channel and you get another group of 8 data fields. Since the additional data fields can be accessed from any of the master channel’s “plug-in” webpages, you have just doubled the number of  entries in a single record, from 8 to 16. There is really no limit to how many channels that can be added, scaling the data set upward by 8 fields for each channel added.

Note the nested jQuery “$.getJSON” to retrieve the ThingSpeak channel data. All processing needs to be performed inside the inner nest in order to keep the values in scope.

Conclusion

Scalable ThingSpeak data sets. This short post should serve as a reference…a reminder of just how simple and obvious it is to expand your sensor data beyond the 8-field limit imposed on a ThingSpeak channel.]]></description>
		<content:encoded><![CDATA[<p>ThingSpeak Channel Data With More Than 8 Fields<br />
<a href="http://internetofhomethings.com/homethings/?p=681" rel="nofollow">http://internetofhomethings.com/homethings/?p=681</a></p>
<p>Are you using ThingSpeak to capture and save your IoT device data points? Ever felt constrained by the 8 field channels limit?</p>
<p>I was.</p>
<p>A Simple Solution</p>
<p>Hmm, what to do?</p>
<p>While you are limited to 8 data fields, a channel is not constrained by it’s own channel data. So the answer is right there…just add another channel and you get another group of 8 data fields. Since the additional data fields can be accessed from any of the master channel’s “plug-in” webpages, you have just doubled the number of  entries in a single record, from 8 to 16. There is really no limit to how many channels that can be added, scaling the data set upward by 8 fields for each channel added.</p>
<p>Note the nested jQuery “$.getJSON” to retrieve the ThingSpeak channel data. All processing needs to be performed inside the inner nest in order to keep the values in scope.</p>
<p>Conclusion</p>
<p>Scalable ThingSpeak data sets. This short post should serve as a reference…a reminder of just how simple and obvious it is to expand your sensor data beyond the 8-field limit imposed on a ThingSpeak channel.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomi Engdahl</title>
		<link>https://www.epanorama.net/blog/2015/06/06/thingspeak-open-source-iot-service/comment-page-1/#comment-1467385</link>
		<dc:creator><![CDATA[Tomi Engdahl]]></dc:creator>
		<pubDate>Sat, 16 Jan 2016 11:24:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.epanorama.net/newepa/?p=27844#comment-1467385</guid>
		<description><![CDATA[ThingSpeak
http://se.mathworks.com/help/thingspeak/index.html

Getting Started with ThingSpeak
Introduction to ThingSpeak and overview of its basic workflow

MATLAB Analysis and Visualization
Explore and transform data, visualize data in MATLAB plots

TweetControl App
http://se.mathworks.com/help/thingspeak/tweetcontrol-app.html?requestedDomain=www.mathworks.com&amp;requestedDomain=www.mathworks.com

Create a TweetControl

Link a ThingHTTP request to a Twitter hashtag.

    Sign into ThingSpeak.

    Select Apps &gt; TweetControl.

    Click New TweetControl.

    Check the Anonymous TweetControl box to enable anyone to trigger this TweetControl.

    Twitter Account: Enter a Twitter username to tie the control to one specific Twitter user.

    Trigger: Enter the trigger word preceded by a hashtag. For example, #turnlightson.

    ThingHTTP Action: Select a ThingHTTP to run.

    Save the TweetControl.]]></description>
		<content:encoded><![CDATA[<p>ThingSpeak<br />
<a href="http://se.mathworks.com/help/thingspeak/index.html" rel="nofollow">http://se.mathworks.com/help/thingspeak/index.html</a></p>
<p>Getting Started with ThingSpeak<br />
Introduction to ThingSpeak and overview of its basic workflow</p>
<p>MATLAB Analysis and Visualization<br />
Explore and transform data, visualize data in MATLAB plots</p>
<p>TweetControl App<br />
<a href="http://se.mathworks.com/help/thingspeak/tweetcontrol-app.html?requestedDomain=www.mathworks.com&#038;requestedDomain=www.mathworks.com" rel="nofollow">http://se.mathworks.com/help/thingspeak/tweetcontrol-app.html?requestedDomain=www.mathworks.com&#038;requestedDomain=www.mathworks.com</a></p>
<p>Create a TweetControl</p>
<p>Link a ThingHTTP request to a Twitter hashtag.</p>
<p>    Sign into ThingSpeak.</p>
<p>    Select Apps &gt; TweetControl.</p>
<p>    Click New TweetControl.</p>
<p>    Check the Anonymous TweetControl box to enable anyone to trigger this TweetControl.</p>
<p>    Twitter Account: Enter a Twitter username to tie the control to one specific Twitter user.</p>
<p>    Trigger: Enter the trigger word preceded by a hashtag. For example, #turnlightson.</p>
<p>    ThingHTTP Action: Select a ThingHTTP to run.</p>
<p>    Save the TweetControl.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: acertijos con respuesta</title>
		<link>https://www.epanorama.net/blog/2015/06/06/thingspeak-open-source-iot-service/comment-page-1/#comment-1441247</link>
		<dc:creator><![CDATA[acertijos con respuesta]]></dc:creator>
		<pubDate>Tue, 06 Oct 2015 17:32:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.epanorama.net/newepa/?p=27844#comment-1441247</guid>
		<description><![CDATA[I do agree with all of the ideas you have introduced for your post.
They&#039;re really convincing and can definitely work. Still, the posts 
are too brief for starters. May you please extend them a 
little from subsequent time? Thanks for the post.]]></description>
		<content:encoded><![CDATA[<p>I do agree with all of the ideas you have introduced for your post.<br />
They&#8217;re really convincing and can definitely work. Still, the posts<br />
are too brief for starters. May you please extend them a<br />
little from subsequent time? Thanks for the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dion Seminara</title>
		<link>https://www.epanorama.net/blog/2015/06/06/thingspeak-open-source-iot-service/comment-page-1/#comment-1412077</link>
		<dc:creator><![CDATA[Dion Seminara]]></dc:creator>
		<pubDate>Sat, 27 Jun 2015 19:45:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.epanorama.net/newepa/?p=27844#comment-1412077</guid>
		<description><![CDATA[That is a good tip particularly to those fresh to the blogosphere.
Simple but very accurate information… Appreciate your sharing this one.
A must read post!]]></description>
		<content:encoded><![CDATA[<p>That is a good tip particularly to those fresh to the blogosphere.<br />
Simple but very accurate information… Appreciate your sharing this one.<br />
A must read post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: estores madrid</title>
		<link>https://www.epanorama.net/blog/2015/06/06/thingspeak-open-source-iot-service/comment-page-1/#comment-1405831</link>
		<dc:creator><![CDATA[estores madrid]]></dc:creator>
		<pubDate>Fri, 12 Jun 2015 08:15:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.epanorama.net/newepa/?p=27844#comment-1405831</guid>
		<description><![CDATA[It&#039;s remarkable to pay a quick visit this web site and reading 
the views of all colleagues on the topic of 
this post, while I am also eager of getting knowledge.]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s remarkable to pay a quick visit this web site and reading<br />
the views of all colleagues on the topic of<br />
this post, while I am also eager of getting knowledge.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
