fosstodon.org is one of the many independent Mastodon servers you can use to participate in the fediverse.
Fosstodon is an invite only Mastodon instance that is open to those who are interested in technology; particularly free & open source software. If you wish to join, contact us for an invite.

Administered by:

Server stats:

10K
active users

#ideaspark

0 posts0 participants0 posts today
LeRoy Miller<p>A few new <a href="https://mastodon.radio/tags/Microcontrollers" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Microcontrollers</span></a> - My wife always asks me why I need new microcontrollers, or how many microcontrollers do you need. But the answer is "because", or "why not", or "I thought we agreed it's not a good idea to ask me why"</p><p>These all have a ST7789 LCD, but different microcontrollers, and different features.<br>The <a href="https://mastodon.radio/tags/Waveshare" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Waveshare</span></a> is <a href="https://mastodon.radio/tags/ESP32C6" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ESP32C6</span></a>,<br>has a SD reader, <a href="https://mastodon.radio/tags/IdeaSpark" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>IdeaSpark</span></a> is just a <a href="https://mastodon.radio/tags/ESP32" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ESP32</span></a> nothing extra, and the <a href="https://mastodon.radio/tags/Lilygo" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Lilygo</span></a> is a <a href="https://mastodon.radio/tags/ESP32S2" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ESP32S2</span></a> has a <a href="https://mastodon.radio/tags/OTG" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>OTG</span></a> USB port, and SD reader, and Grove port,...</p>
British Tech Guru<p>I've been playing with the IdeasparkNanoOled Arduino. I'm not quite getting the hang of the screen but I'm getting there.</p><p><a href="https://techhub.social/tags/ideaspark" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ideaspark</span></a> <a href="https://techhub.social/tags/arduino" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>arduino</span></a> <a href="https://techhub.social/tags/oled" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>oled</span></a> <a href="https://techhub.social/tags/cpp" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>cpp</span></a> </p><p>I found the screen answers as:<br>U8G2_SSD1306_128X64_NONAME_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE);</p><p>Here's the code so far....<br><a href="https://techhub.social/tags/include" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>include</span></a> &lt;Arduino.h&gt;<br><a href="https://techhub.social/tags/include" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>include</span></a> &lt;U8g2lib.h&gt;</p><p><a href="https://techhub.social/tags/ifdef" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ifdef</span></a> U8X8_HAVE_HW_SPI<br><a href="https://techhub.social/tags/include" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>include</span></a> &lt;SPI.h&gt;<br><a href="https://techhub.social/tags/endif" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>endif</span></a><br><a href="https://techhub.social/tags/ifdef" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ifdef</span></a> U8X8_HAVE_HW_I2C<br><a href="https://techhub.social/tags/include" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>include</span></a> &lt;Wire.h&gt;<br><a href="https://techhub.social/tags/endif" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>endif</span></a> </p><p>U8G2_SSD1306_128X64_NONAME_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE);<br>void setup(void) {<br> u8g2.begin();<br>}</p><p>void loop(void) {<br> u8g2.clearBuffer(); // clear the internal memory<br> u8g2.setFont(u8g2_font_ncenB08_tr); // choose a suitable font<br> u8g2.drawStr(0,10,"British Tech Guru"); // write something to the internal memory<br> u8g2.sendBuffer(); // transfer internal memory to the display<br> delay(1000); <br>}</p>