<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[m5stack + sim800l]]></title><description><![CDATA[<p dir="auto"><img src="/assets/uploads/files/1585063669753-sim800l.png" alt="0_1585063663830_sim800l.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">To start understanding the functioning of the sim800l module I used the following example:</p>
<p dir="auto">//Reset resistance is not soldered. If necessary, weld it yourself.</p>
<p dir="auto">#include &lt;M5Stack.h&gt;<br />
#define RX_PIN      16<br />
#define TX_PIN      17<br />
#define RESET_PIN   5</p>
<p dir="auto">void header(const char *string, uint16_t color){<br />
M5.Lcd.fillScreen(color);<br />
M5.Lcd.setTextSize(1);<br />
M5.Lcd.setTextColor(TFT_MAGENTA, TFT_BLUE);<br />
M5.Lcd.fillRect(0, 0, 320, 30, TFT_BLUE);<br />
M5.Lcd.setTextDatum(TC_DATUM);<br />
M5.Lcd.drawString(string, 160, 3, 4);<br />
}</p>
<p dir="auto">void setup() {<br />
M5.begin();</p>
<p dir="auto">header("SIM800L AT command", TFT_BLACK);<br />
M5.Lcd.setTextFont(2);<br />
M5.Lcd.setTextColor(TFT_WHITE, TFT_BLACK);<br />
M5.Lcd.drawString("Please use serial port to Test AT command.",0, 35, 2);<br />
// Host serial communication<br />
Serial.begin(115200);</p>
<p dir="auto">// SIM800L serial communication<br />
Serial2.begin(115200, SERIAL_8N1, RX_PIN, TX_PIN);<br />
pinMode(RESET_PIN, OUTPUT);<br />
}</p>
<p dir="auto">void loop() {</p>
<p dir="auto">//AT instruction write<br />
if(Serial.available()){<br />
Serial2.write(Serial.read());<br />
}</p>
<p dir="auto">//AT instruction result<br />
if(Serial2.available()){<br />
Serial.write(Serial2.read());<br />
}</p>
<p dir="auto">delay(10);</p>
<p dir="auto">}</p>
<p dir="auto">I sent some at command to understand if the module worked but apparently it doesn't work. Any suggestions?</p>
]]></description><link>https://community.m5stack.com/topic/1790/m5stack-sim800l</link><generator>RSS for Node</generator><lastBuildDate>Mon, 16 Mar 2026 17:19:53 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/1790.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 24 Mar 2020 15:30:54 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to m5stack + sim800l on Wed, 25 Mar 2020 10:02:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/700">@lukasmaximus</a> said in <a href="/post/7895">m5stack + sim800l</a>:</p>
<blockquote>
<p dir="auto">Hi <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/3111">@Nicolaf899</a> I cannot help you here as I was not able to get the sim800l working myself, please refer to the recent topic <a href="http://forum.m5stack.com/topic/1785/sim800l-gprs-mqtt" target="_blank" rel="noopener noreferrer nofollow ugc">http://forum.m5stack.com/topic/1785/sim800l-gprs-mqtt</a> I pasted some links there with information about sim800l. Where possible please check if there is a discussion going on about this module and ask your questions there instead of duplicating a thread, thanks</p>
</blockquote>
<p dir="auto">okk thank you</p>
]]></description><link>https://community.m5stack.com/post/7899</link><guid isPermaLink="true">https://community.m5stack.com/post/7899</guid><dc:creator><![CDATA[Nicolaf899]]></dc:creator><pubDate>Wed, 25 Mar 2020 10:02:33 GMT</pubDate></item><item><title><![CDATA[Reply to m5stack + sim800l on Tue, 24 Mar 2020 22:56:22 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/3111">@Nicolaf899</a> I cannot help you here as I was not able to get the sim800l working myself, please refer to the recent topic <a href="http://forum.m5stack.com/topic/1785/sim800l-gprs-mqtt" target="_blank" rel="noopener noreferrer nofollow ugc">http://forum.m5stack.com/topic/1785/sim800l-gprs-mqtt</a> I pasted some links there with information about sim800l. Where possible please check if there is a discussion going on about this module and ask your questions there instead of duplicating a thread, thanks</p>
]]></description><link>https://community.m5stack.com/post/7895</link><guid isPermaLink="true">https://community.m5stack.com/post/7895</guid><dc:creator><![CDATA[lukasmaximus]]></dc:creator><pubDate>Tue, 24 Mar 2020 22:56:22 GMT</pubDate></item></channel></rss>