<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">
<channel>
	<title>Comments for ITead Studio</title>
	
	<link>http://iteadstudio.com</link>
	<description>Make innovation easier</description>
	<lastBuildDate>Tue, 20 Mar 2012 18:05:03 +0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CommentsForIteadStudio" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="commentsforiteadstudio" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Comment on SIM900 GSM/GPRS Shield IComsat Preview by Raphael</title>
		<link>http://iteadstudio.com/produce/sim900-gprs-shield-icomsat-preview/comment-page-1/#comment-2990</link>
		<dc:creator>Raphael</dc:creator>
		<pubDate>Tue, 20 Mar 2012 18:05:03 +0000</pubDate>
		<guid isPermaLink="false">http://iteadstudio.com/produce/sim900-gprs-shield-icomsat-preview/#comment-2990</guid>
		<description>To use the iconsat SIM900 V1.0 with arduino mega FT232RL adapter I need?
If not, what use of pins D0 to D7?
I need something to jump in arduino?
And which library use, why not work at all

Use this sketch:

#include "SIM900.h"
#include 
#include "GSM.h"


//#define _GSM_TXPIN_ 4
//#define _GSM_RXPIN_ 5

//If not used, is better to exclude the HTTP library,
//for RAM saving.
//If your sketch reboots itself proprably you have finished,
//your memory available.
//#include "inetGSM.h"

//If you want to use the Arduino functions to manage SMS, uncomment the lines below.
#include "sms.h"
SMSGSM sms;

//GSM Shield for Arduino
//www.open-electronics.org
//this code is based on the example of Arduino Labs.

//Simple sketch to send and receive SMS.

char msg[200];
int numdata;

void setup() 
{
  
  //Serial connection.
  Serial.begin(9600);
  Serial.println("GSM Shield testing.");
  //Start configuration of shield with baudrate.
  //For http uses is raccomanded to use 4800 or slower.
  if (gsm.begin(9600))
    Serial.println("\nstatus=READY");
  else Serial.println("\nstatus=IDLE");
  
  //Enable this two lines if you want to send an SMS.
  if (sms.SendSMS("+552299664351", "Arduino SMS"))
    Serial.println("\nSMS sent OK");

};

void loop() 
{
  char smsbuffer[160];
  char n[20];
  //Read if there are messages on SIM card and print them.
  if(gsm.readSMS(smsbuffer, 160, n, 20))
  {
    Serial.println(n);
    Serial.println(smsbuffer);
  }
  delay(1000);
};

always return:
GSM Shield testing.
DB:NO RESP
DB:NO RESP
DB:NO RESP
ERROR: SIM900 doesn't answer. Check power and serial pins in GSM.cpp

status=IDLE
DEBUG:SMS TEST

SMS sent OK

But don't send.


and in GSM.cpp use:
#define _GSM_TXPIN_ 4
#define _GSM_RXPIN_ 5

library use:

SoftwareSerial and SIM900IDE100

Thanks.</description>
		<content:encoded><![CDATA[<p>To use the iconsat SIM900 V1.0 with arduino mega FT232RL adapter I need?<br />
If not, what use of pins D0 to D7?<br />
I need something to jump in arduino?<br />
And which library use, why not work at all</p>
<p>Use this sketch:</p>
<p>#include &#8220;SIM900.h&#8221;<br />
#include<br />
#include &#8220;GSM.h&#8221;</p>
<p>//#define _GSM_TXPIN_ 4<br />
//#define _GSM_RXPIN_ 5</p>
<p>//If not used, is better to exclude the HTTP library,<br />
//for RAM saving.<br />
//If your sketch reboots itself proprably you have finished,<br />
//your memory available.<br />
//#include &#8220;inetGSM.h&#8221;</p>
<p>//If you want to use the Arduino functions to manage SMS, uncomment the lines below.<br />
#include &#8220;sms.h&#8221;<br />
SMSGSM sms;</p>
<p>//GSM Shield for Arduino<br />
//www.open-electronics.org<br />
//this code is based on the example of Arduino Labs.</p>
<p>//Simple sketch to send and receive SMS.</p>
<p>char msg[200];<br />
int numdata;</p>
<p>void setup()<br />
{</p>
<p>  //Serial connection.<br />
  Serial.begin(9600);<br />
  Serial.println(&#8220;GSM Shield testing.&#8221;);<br />
  //Start configuration of shield with baudrate.<br />
  //For http uses is raccomanded to use 4800 or slower.<br />
  if (gsm.begin(9600))<br />
    Serial.println(&#8220;\nstatus=READY&#8221;);<br />
  else Serial.println(&#8220;\nstatus=IDLE&#8221;);</p>
<p>  //Enable this two lines if you want to send an SMS.<br />
  if (sms.SendSMS(&#8220;+552299664351&#8243;, &#8220;Arduino SMS&#8221;))<br />
    Serial.println(&#8220;\nSMS sent OK&#8221;);</p>
<p>};</p>
<p>void loop()<br />
{<br />
  char smsbuffer[160];<br />
  char n[20];<br />
  //Read if there are messages on SIM card and print them.<br />
  if(gsm.readSMS(smsbuffer, 160, n, 20))<br />
  {<br />
    Serial.println(n);<br />
    Serial.println(smsbuffer);<br />
  }<br />
  delay(1000);<br />
};</p>
<p>always return:<br />
GSM Shield testing.<br />
DB:NO RESP<br />
DB:NO RESP<br />
DB:NO RESP<br />
ERROR: SIM900 doesn&#8217;t answer. Check power and serial pins in GSM.cpp</p>
<p>status=IDLE<br />
DEBUG:SMS TEST</p>
<p>SMS sent OK</p>
<p>But don&#8217;t send.</p>
<p>and in GSM.cpp use:<br />
#define _GSM_TXPIN_ 4<br />
#define _GSM_RXPIN_ 5</p>
<p>library use:</p>
<p>SoftwareSerial and SIM900IDE100</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SIM900 GSM/GPRS Shield IComsat Preview by ITead</title>
		<link>http://iteadstudio.com/produce/sim900-gprs-shield-icomsat-preview/comment-page-1/#comment-2989</link>
		<dc:creator>ITead</dc:creator>
		<pubDate>Tue, 20 Mar 2012 13:51:52 +0000</pubDate>
		<guid isPermaLink="false">http://iteadstudio.com/produce/sim900-gprs-shield-icomsat-preview/#comment-2989</guid>
		<description>@Marcos 
I am sorry that you need to use the 9-20V to power your arduino, because the LDT on Icomsat input range is 9-20V, the 6V will not make it work.</description>
		<content:encoded><![CDATA[<p>@Marcos<br />
I am sorry that you need to use the 9-20V to power your arduino, because the LDT on Icomsat input range is 9-20V, the 6V will not make it work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ah, Colorduino Debut ! by ITead</title>
		<link>http://iteadstudio.com/product/ah-colorduino-debut/comment-page-1/#comment-2988</link>
		<dc:creator>ITead</dc:creator>
		<pubDate>Tue, 20 Mar 2012 13:50:08 +0000</pubDate>
		<guid isPermaLink="false">http://iteadstudio.com/product/ah-colorduino-debut/#comment-2988</guid>
		<description>@Damiano
Please contact support@iteadstudio.com for help.</description>
		<content:encoded><![CDATA[<p>@Damiano<br />
Please contact <a href="mailto:support@iteadstudio.com">support@iteadstudio.com</a> for help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SIM900 GSM/GPRS Shield IComsat Preview by ITead</title>
		<link>http://iteadstudio.com/produce/sim900-gprs-shield-icomsat-preview/comment-page-1/#comment-2987</link>
		<dc:creator>ITead</dc:creator>
		<pubDate>Tue, 20 Mar 2012 13:48:46 +0000</pubDate>
		<guid isPermaLink="false">http://iteadstudio.com/produce/sim900-gprs-shield-icomsat-preview/#comment-2987</guid>
		<description>@Raphael
You can download them in the product page</description>
		<content:encoded><![CDATA[<p>@Raphael<br />
You can download them in the product page</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Make A Wireless Speakers / Headphones With nRF24Z1 by ITead</title>
		<link>http://iteadstudio.com/application-note/make-a-wireless-speakers-headphones-with-nrf24z1/comment-page-1/#comment-2986</link>
		<dc:creator>ITead</dc:creator>
		<pubDate>Tue, 20 Mar 2012 13:47:59 +0000</pubDate>
		<guid isPermaLink="false">http://iteadstudio.com/application-note/make-a-wireless-speakers-headphones-with-nrf24z1/#comment-2986</guid>
		<description>@Nikolay 
It's our custom project, and will not be sold in iStore.</description>
		<content:encoded><![CDATA[<p>@Nikolay<br />
It&#8217;s our custom project, and will not be sold in iStore.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OverLoad Is Coming by T Billers</title>
		<link>http://iteadstudio.com/product/overload-is-coming/comment-page-1/#comment-2985</link>
		<dc:creator>T Billers</dc:creator>
		<pubDate>Mon, 19 Mar 2012 04:06:27 +0000</pubDate>
		<guid isPermaLink="false">http://iteadstudio.com/product/overload-is-coming/#comment-2985</guid>
		<description>Hi 

Is it possible to make charges to this unit  so we can test higher currents  of aprox 10amps @ 24vdc

Thanks</description>
		<content:encoded><![CDATA[<p>Hi </p>
<p>Is it possible to make charges to this unit  so we can test higher currents  of aprox 10amps @ 24vdc</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Make A Wireless Speakers / Headphones With nRF24Z1 by Nikolay</title>
		<link>http://iteadstudio.com/application-note/make-a-wireless-speakers-headphones-with-nrf24z1/comment-page-1/#comment-2984</link>
		<dc:creator>Nikolay</dc:creator>
		<pubDate>Thu, 15 Mar 2012 17:00:23 +0000</pubDate>
		<guid isPermaLink="false">http://iteadstudio.com/application-note/make-a-wireless-speakers-headphones-with-nrf24z1/#comment-2984</guid>
		<description>I cannot find modules on iStock. Where is it?</description>
		<content:encoded><![CDATA[<p>I cannot find modules on iStock. Where is it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SIM900 GSM/GPRS Shield IComsat Preview by Marcos Moura</title>
		<link>http://iteadstudio.com/produce/sim900-gprs-shield-icomsat-preview/comment-page-1/#comment-2981</link>
		<dc:creator>Marcos Moura</dc:creator>
		<pubDate>Wed, 14 Mar 2012 22:42:06 +0000</pubDate>
		<guid isPermaLink="false">http://iteadstudio.com/produce/sim900-gprs-shield-icomsat-preview/#comment-2981</guid>
		<description>Hi, i want to use this in a project that might need 50 more if it works as i want it to.

It says in datasheet that the power supply should be 9~20V, so if i power up my arduino with a 6V battery it wont work ?

Because it also says it is compatible with arduino.

Or do i have to power up my arduino with a 9~20V battery instead? Because that wont be any good for me...</description>
		<content:encoded><![CDATA[<p>Hi, i want to use this in a project that might need 50 more if it works as i want it to.</p>
<p>It says in datasheet that the power supply should be 9~20V, so if i power up my arduino with a 6V battery it wont work ?</p>
<p>Because it also says it is compatible with arduino.</p>
<p>Or do i have to power up my arduino with a 9~20V battery instead? Because that wont be any good for me&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ah, Colorduino Debut ! by Damiano</title>
		<link>http://iteadstudio.com/product/ah-colorduino-debut/comment-page-1/#comment-2980</link>
		<dc:creator>Damiano</dc:creator>
		<pubDate>Tue, 13 Mar 2012 17:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://iteadstudio.com/product/ah-colorduino-debut/#comment-2980</guid>
		<description>Hi there!

I just got myself a beautiful colorduino, but what if I want to drive high power (let’s say 10w) LEDs?

How exactly should I connect transistors between the 2X16pin socket and my 32 ‘big’ wires?

Thanks for helping me</description>
		<content:encoded><![CDATA[<p>Hi there!</p>
<p>I just got myself a beautiful colorduino, but what if I want to drive high power (let’s say 10w) LEDs?</p>
<p>How exactly should I connect transistors between the 2X16pin socket and my 32 ‘big’ wires?</p>
<p>Thanks for helping me</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Play Arduino With Global Positioning System (GPS) by Leo</title>
		<link>http://iteadstudio.com/application-note/play-arduino-with-global-positioning-system-gps/comment-page-1/#comment-2978</link>
		<dc:creator>Leo</dc:creator>
		<pubDate>Fri, 09 Mar 2012 12:00:57 +0000</pubDate>
		<guid isPermaLink="false">http://iteadstudio.com/application-note/play-arduino-with-global-positioning-system-gps/#comment-2978</guid>
		<description>how about the power consumption? seem it didn't mention in datasheet</description>
		<content:encoded><![CDATA[<p>how about the power consumption? seem it didn&#8217;t mention in datasheet</p>
]]></content:encoded>
	</item>
</channel>
</rss>

