265 Commits .github examples scripts .gitignore Adafruit_SSD1306.cpp Adafruit_SSD1306.h CMakeLists.txt README.md component.mk library.properties license.txt splash.h README License Adafruit_SSD1306 This is a library for our Monochrome OLEDs based on SSD1306 drivers ...
1Star0Fork0 大牛/Adafruit_SSD1306 代码Issues0Pull Requests0Wiki统计流水线 服务 加入Gitee 与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :) 免费加入 已有帐号?立即登录 master 分支(3) 标签(29) 管理 管理 master gh-pages ...
Adafruit_SSD1306Arduino library是一个用于控制SSD1306单色128x64和128x32 OLED显示屏的Arduino库。该库提供了一组简单易用的函数,可以轻松地控制OLED显示屏的各种功能,如显示文本、图形、位图等。此外,该库还支持多种字体和字号,可以根据需要进行选择和设置。该库还支持SPI和I2C接口,可以根据具体的硬件需求进行选择...
设置字体: 参考:https://learn.adafruit.com/adafruit-gfx-graphics-library/using-fonts#https://forum.arduino.cc/index.php?topic=460827.0 #include <Adafruit_GFX.h> // Core graphics library #include <Fonts/FreeSerif9pt7b.h> display.setFont(&FreeSerif9pt7b); display.setTextSize(1); display.setT...
Arduino Download the .zip file below. Open Arduino IDE and go to Sketch, include library, add .zip library and open the .zip file that you have just downloaded. Now the Adafruit_SSD1306-master library should be installed. Adafruit_SSD1306-master library here...
Python library to use SSD1306-based 128x64 or 128x32 pixel OLED displays with a Raspberry Pi or Beaglebone Black. Designed specifically to work with the Adafruit SSD1306-based OLED displays --->https://www.adafruit.com/categories/98 Adafruit...
Adafruit坑爹了。它提供的显示板library里,用了软SPI,可以使用任意针脚与显示板通信。可如果另一个设备使用硬件SPI,想省下3个针脚的时候,这软SPI就是个障碍了。看代码、试验了多次,最终改了Adafruit_SSD1306.cpp,将其中的///inline void Adafruit_SSD1306::fastSPIwrite(uint8_t d) { for(uint8_t bit = 0...
As near as I can tell, the latest SSD1306 library seems to be interfering with the interrupt timing of the Servo library. I triple checked my code and it is not sending these random pulses. If I go back to the older SSD1306 driver the twitch goes away - but I lose the responsivenes...
Adafruit_GFX:https://github.com/adafruit/Adafruit-GFX-Library Adafruit_I2CDevice:Adafruit_BusIO.h ( I downloaded it in "manage libraries" in the IDE.) board's URL :http://download.dfrobot.top/FireBeetle/package_DFRobot_index.jsonhttps://raw.githubusercontent.com/espressif/arduino-esp32/gh-...
#include <Wire.h> #include "Adafruit_GFX.h" // Core graphics library #include "Adafruit_SSD1306.h" // Hardware-specific library for SSD1306 #define SCREEN_WIDTH 128 // OLED display width, in pixels #define SCREEN_HEIGHT 64 // OLED display height, in pixels // Declaration for ...