<?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[Core S3 - &quot;Leaving... Hard resetting via RTS pin...&quot;]]></title><description><![CDATA[[[topic:post-is-deleted]]]]></description><link>https://community.m5stack.com/topic/6239/core-s3-leaving-hard-resetting-via-rts-pin</link><generator>RSS for Node</generator><lastBuildDate>Sat, 09 May 2026 16:04:11 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/6239.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 20 Mar 2024 23:34:51 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Core S3 - &quot;Leaving... Hard resetting via RTS pin...&quot; on Thu, 21 Mar 2024 00:06:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/maysun" aria-label="Profile: maysun">@<bdi>maysun</bdi></a> "Leaving...<br />
Hard resetting via RTS pin..." is Arduino IDE's awkward way of saying that the upload was successful   \o/.<br />
After this message is there any image on the LCD?<br />
You might try a simple program with just a serial message, to test if it is working, but there is a LCD driver issue.</p>
<pre><code>//words preceded by "//"" are comments and are not executed
bool ticktock;  //declare ticktock as a boolean flag

void setup() {           //runs once on start up
  Serial.begin(115200);  //open the serial port for USB cable
  delay(500);
}

void loop() {            //runs in circles!
  ticktock = !ticktock;  //every pass through reverse the flag
  if (ticktock) {        //test current value of the ticktock flag
    Serial.println("tick");
  } else {  //prints one or the other to the USB port
    Serial.println("tock");
  }
  delay(1000);  //wait for a second and run again!
}</code></pre>
]]></description><link>https://community.m5stack.com/post/24484</link><guid isPermaLink="true">https://community.m5stack.com/post/24484</guid><dc:creator><![CDATA[teastain]]></dc:creator><pubDate>Thu, 21 Mar 2024 00:06:06 GMT</pubDate></item></channel></rss>