<?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[M5StickC-Plus Buzzer not working]]></title><description><![CDATA[<p dir="auto">I have several M5StickC-Plus's but I cannot seem to get the buzzer to work.  The factory test has code in it to use the buzzer on button press but it does not seem to work.  Can someone point me to code to make this buzzer work?<br />
Thanks.</p>
]]></description><link>https://community.m5stack.com/topic/3455/m5stickc-plus-buzzer-not-working</link><generator>RSS for Node</generator><lastBuildDate>Wed, 11 Mar 2026 17:21:31 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/3455.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 14 Jul 2021 12:47:18 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to M5StickC-Plus Buzzer not working on Sun, 16 Jul 2023 11:06:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/24586">@wilfried</a>  Ok, that workrd. ThankYou</p>
]]></description><link>https://community.m5stack.com/post/21591</link><guid isPermaLink="true">https://community.m5stack.com/post/21591</guid><dc:creator><![CDATA[Wilfried]]></dc:creator><pubDate>Sun, 16 Jul 2023 11:06:56 GMT</pubDate></item><item><title><![CDATA[Reply to M5StickC-Plus Buzzer not working on Tue, 29 Nov 2022 19:45:57 GMT]]></title><description><![CDATA[<p dir="auto">Using //https://101010.fun/iot/m5stickc-plus-firststep.html<br />
for inspiration, we can upload this program:</p>
<p dir="auto">#include &lt;M5StickCPlus.h&gt;</p>
<p dir="auto">void setup() {<br />
M5.begin();<br />
M5.Lcd.setTextSize(3);<br />
M5.Lcd.setRotation(3);<br />
M5.Lcd.setTextColor(TFT_ORANGE);<br />
}</p>
<p dir="auto">void loop() {<br />
M5.update();<br />
soundTest();<br />
}</p>
<p dir="auto">void soundTest() {<br />
for (int tone=100; tone &lt; 4000; tone=tone+50) {<br />
M5.Lcd.fillScreen(BLACK);<br />
M5.Lcd.setCursor(80, 50);<br />
M5.Lcd.printf("%d", tone);<br />
M5.Beep.tone(tone);<br />
M5.Beep.update();<br />
delay(200);<br />
}<br />
}</p>
<p dir="auto">According to my ears there is a definite peak about 2500 Hz, with frequencies under 250 Hz and over 3000 not audible. Your ears may vary .....</p>
]]></description><link>https://community.m5stack.com/post/19410</link><guid isPermaLink="true">https://community.m5stack.com/post/19410</guid><dc:creator><![CDATA[wsanders]]></dc:creator><pubDate>Tue, 29 Nov 2022 19:45:57 GMT</pubDate></item><item><title><![CDATA[Reply to M5StickC-Plus Buzzer not working on Tue, 29 Nov 2022 19:48:36 GMT]]></title><description><![CDATA[<p dir="auto">I'm not sure what is connected to it, probably some tiny piezo speaker, but pin G2 is the "buzzer" pin.</p>
<p dir="auto">There is a way to set up PWM on a pin at a desired frequency. Also, sometimes these speakers are resonant, so much louder at a particular frequency.</p>
<p dir="auto">Example using the API, below:</p>
]]></description><link>https://community.m5stack.com/post/19366</link><guid isPermaLink="true">https://community.m5stack.com/post/19366</guid><dc:creator><![CDATA[wsanders]]></dc:creator><pubDate>Tue, 29 Nov 2022 19:48:36 GMT</pubDate></item><item><title><![CDATA[Reply to M5StickC-Plus Buzzer not working on Sun, 23 Oct 2022 04:01:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/111">@macsbug</a> Still very faint!<br />
Not useable!</p>
]]></description><link>https://community.m5stack.com/post/19077</link><guid isPermaLink="true">https://community.m5stack.com/post/19077</guid><dc:creator><![CDATA[teastain]]></dc:creator><pubDate>Sun, 23 Oct 2022 04:01:01 GMT</pubDate></item><item><title><![CDATA[Reply to M5StickC-Plus Buzzer not working on Sun, 23 Oct 2022 02:03:03 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/24586">@wilfried</a></p>
<p dir="auto">Arduino example：<br />
<a href="https://101010.fun/iot/m5stickc-plus-firststep.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://101010.fun/iot/m5stickc-plus-firststep.html</a></p>
]]></description><link>https://community.m5stack.com/post/19076</link><guid isPermaLink="true">https://community.m5stack.com/post/19076</guid><dc:creator><![CDATA[macsbug]]></dc:creator><pubDate>Sun, 23 Oct 2022 02:03:03 GMT</pubDate></item><item><title><![CDATA[Reply to M5StickC-Plus Buzzer not working on Sat, 22 Oct 2022 21:52:11 GMT]]></title><description><![CDATA[<p dir="auto">The default volume is very low and probably only audible to young bats :)</p>
]]></description><link>https://community.m5stack.com/post/19075</link><guid isPermaLink="true">https://community.m5stack.com/post/19075</guid><dc:creator><![CDATA[Rob 0]]></dc:creator><pubDate>Sat, 22 Oct 2022 21:52:11 GMT</pubDate></item><item><title><![CDATA[Reply to M5StickC-Plus Buzzer not working on Wed, 24 Aug 2022 10:52:14 GMT]]></title><description><![CDATA[<p dir="auto">On my two M5StickC-Plus the Buzzer is also not working. Please provide an Arduino example.</p>
]]></description><link>https://community.m5stack.com/post/18444</link><guid isPermaLink="true">https://community.m5stack.com/post/18444</guid><dc:creator><![CDATA[Wilfried]]></dc:creator><pubDate>Wed, 24 Aug 2022 10:52:14 GMT</pubDate></item><item><title><![CDATA[Reply to M5StickC-Plus Buzzer not working on Sun, 01 Aug 2021 22:45:17 GMT]]></title><description><![CDATA[<p dir="auto">I have not used uiflow before but tried to get it running to test this.  I was unable to get uiflow working on my windows 10 system.<br />
Please provide an arduino C example.</p>
]]></description><link>https://community.m5stack.com/post/14563</link><guid isPermaLink="true">https://community.m5stack.com/post/14563</guid><dc:creator><![CDATA[_Rob]]></dc:creator><pubDate>Sun, 01 Aug 2021 22:45:17 GMT</pubDate></item><item><title><![CDATA[Reply to M5StickC-Plus Buzzer not working on Fri, 16 Jul 2021 07:51:26 GMT]]></title><description><![CDATA[<p dir="auto">try to use UIFlow for the test</p>
<p dir="auto"><img src="/assets/uploads/files/1626421855972-936b7dd7-028c-4e19-a76a-11936f706c5e-image-resized.png" alt="0_1626421855736_936b7dd7-028c-4e19-a76a-11936f706c5e-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.m5stack.com/post/14422</link><guid isPermaLink="true">https://community.m5stack.com/post/14422</guid><dc:creator><![CDATA[m5stack]]></dc:creator><pubDate>Fri, 16 Jul 2021 07:51:26 GMT</pubDate></item></channel></rss>