<?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: Added Siemens M20T GSM device</title>
	<atom:link href="http://blog.hekkers.net/2009/06/05/added-siemens-m20t-gsm-device/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hekkers.net/2009/06/05/added-siemens-m20t-gsm-device/</link>
	<description>My Weblog about Domotica and more</description>
	<lastBuildDate>Wed, 08 Sep 2010 18:13:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: admin</title>
		<link>http://blog.hekkers.net/2009/06/05/added-siemens-m20t-gsm-device/comment-page-1/#comment-95</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 31 Jul 2009 22:33:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hekkers.net/?p=228#comment-95</guid>
		<description>Hi kpan,

Interfacing with the M20 is quite easy to implement. Currently i use the following commands:
- Echo off
- Set PIN
- PDU Mode
- Send SMS
- Read SMS
- Delete SMS
- Select Message Store

That&#039;s the basics you need for sending and receiving SMS. A sample pice of code for setting Echo off would look like this (Delphi):
&lt;code&gt;    
    SendString:=&#039;ATE0&#039;+chr(13);
    Net.Socket.SendText(SendString);
    if WaitFor(&#039;OK&#039;+CRLF,2000)
    then begin
        // success
        ReceiveBuffer:=&#039;&#039;;
    end else log(&#039;No OK after sending ECHO OFF (ATE0)&#039;);
&lt;/code&gt;

You&#039;ll probably already have it but if not, &lt;a href=&quot;http://www.hekkers.net/domotica/docs/m20_v5.pdf&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt; is the manual with all information you need to know to create your own interface.

Good luck and feel free to contact me if you need more help,

Robert</description>
		<content:encoded><![CDATA[<p>Hi kpan,</p>
<p>Interfacing with the M20 is quite easy to implement. Currently i use the following commands:<br />
- Echo off<br />
- Set PIN<br />
- PDU Mode<br />
- Send SMS<br />
- Read SMS<br />
- Delete SMS<br />
- Select Message Store</p>
<p>That&#8217;s the basics you need for sending and receiving SMS. A sample pice of code for setting Echo off would look like this (Delphi):<br />
<code><br />
    SendString:='ATE0'+chr(13);<br />
    Net.Socket.SendText(SendString);<br />
    if WaitFor('OK'+CRLF,2000)<br />
    then begin<br />
        // success<br />
        ReceiveBuffer:='';<br />
    end else log('No OK after sending ECHO OFF (ATE0)');<br />
</code></p>
<p>You&#8217;ll probably already have it but if not, <a href="http://www.hekkers.net/domotica/docs/m20_v5.pdf" rel="nofollow">here</a> is the manual with all information you need to know to create your own interface.</p>
<p>Good luck and feel free to contact me if you need more help,</p>
<p>Robert</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kpan</title>
		<link>http://blog.hekkers.net/2009/06/05/added-siemens-m20t-gsm-device/comment-page-1/#comment-94</link>
		<dc:creator>kpan</dc:creator>
		<pubDate>Fri, 31 Jul 2009 19:15:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hekkers.net/?p=228#comment-94</guid>
		<description>Hi Domotica,
i&#039;m trying to integrate my M20 terminal into my home net to use it for my Home-Automation-Notification-Services. HANS that&#039;s sounds so typically german.

I want to create an interface, like you&#039;ve created for you home-automation. Can you please give more examples for using the M20 Terminal?

Best regards,
kpan</description>
		<content:encoded><![CDATA[<p>Hi Domotica,<br />
i&#8217;m trying to integrate my M20 terminal into my home net to use it for my Home-Automation-Notification-Services. HANS that&#8217;s sounds so typically german.</p>
<p>I want to create an interface, like you&#8217;ve created for you home-automation. Can you please give more examples for using the M20 Terminal?</p>
<p>Best regards,<br />
kpan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://blog.hekkers.net/2009/06/05/added-siemens-m20t-gsm-device/comment-page-1/#comment-63</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 18 Jun 2009 13:08:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hekkers.net/?p=228#comment-63</guid>
		<description>Hi Asif,
I&#039;ve searched http://www/teltonica.lt/en for &quot;TBox20&quot;, but this search gave no results. Maybe it&#039;s better if you read the &lt;a href=&quot;http://www.hekkers.net/domotica/docs/m20_v5.pdf&quot; rel=&quot;nofollow&quot;&gt;manual&lt;/a&gt; of the Siemens M20T and decide for yourself if this device can do what you want... 
All i can tell you is that i can switch virtually anything in my house by sending an SMS from my mobile phone, so... all those things you mention should be possible with additional software etc.  But if using a GSM terminal is the best way to do it in your case? I really don&#039;t know... :-)</description>
		<content:encoded><![CDATA[<p>Hi Asif,<br />
I&#8217;ve searched <a href="http://www/teltonica.lt/en" rel="nofollow">http://www/teltonica.lt/en</a> for &#8220;TBox20&#8243;, but this search gave no results. Maybe it&#8217;s better if you read the <a href="http://www.hekkers.net/domotica/docs/m20_v5.pdf" rel="nofollow">manual</a> of the Siemens M20T and decide for yourself if this device can do what you want&#8230;<br />
All i can tell you is that i can switch virtually anything in my house by sending an SMS from my mobile phone, so&#8230; all those things you mention should be possible with additional software etc.  But if using a GSM terminal is the best way to do it in your case? I really don&#8217;t know&#8230; <img src='http://blog.hekkers.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Asif</title>
		<link>http://blog.hekkers.net/2009/06/05/added-siemens-m20t-gsm-device/comment-page-1/#comment-62</link>
		<dc:creator>Asif</dc:creator>
		<pubDate>Thu, 18 Jun 2009 07:56:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hekkers.net/?p=228#comment-62</guid>
		<description>hello,

I read about the M20T above, I would like to knwo if this device can be used in M2M applications, primarily to send and receive commands to start or stop machines, send data from temperature/pressure sensors etc?
I also read about Teltonika TBox20 www.teltonika.lt pls advice if they have the similar features.
Your info will be v imp for me.
Thank You</description>
		<content:encoded><![CDATA[<p>hello,</p>
<p>I read about the M20T above, I would like to knwo if this device can be used in M2M applications, primarily to send and receive commands to start or stop machines, send data from temperature/pressure sensors etc?<br />
I also read about Teltonika TBox20 <a href="http://www.teltonika.lt" rel="nofollow">http://www.teltonika.lt</a> pls advice if they have the similar features.<br />
Your info will be v imp for me.<br />
Thank You</p>
]]></content:encoded>
	</item>
</channel>
</rss>
