Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/peff74/esp8266_oled_hw-364a
litte code for ESP8266 Board with 0.96 Inch OLED Display
https://github.com/peff74/esp8266_oled_hw-364a
esp8266 hw-364a hw-364b oled ssd1306
Last synced: 3 months ago
JSON representation
litte code for ESP8266 Board with 0.96 Inch OLED Display
- Host: GitHub
- URL: https://github.com/peff74/esp8266_oled_hw-364a
- Owner: peff74
- Created: 2024-07-25T08:56:05.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-10-09T23:12:00.000Z (3 months ago)
- Last Synced: 2024-10-10T15:02:45.340Z (3 months ago)
- Topics: esp8266, hw-364a, hw-364b, oled, ssd1306
- Language: C++
- Homepage:
- Size: 3.55 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HW-364A (USB-C) / HW-364B (Micro USB)
![AHT20_BMP280 logo](https://github.com/peff74/esp8266_OLED_HW-364A/blob/main/front_1.jpg)
![AHT20_BMP280 logo](https://github.com/peff74/esp8266_OLED_HW-364A/blob/main/back.jpg)- The HW-364A / HW-364B is a very practical and cheap ESP8266 with 0.96 Inch OLED Display.
- It is sold on all known platforms.
- Some dealers provide incorrect technical data, which sometimes makes it difficult to get it up and running...
- be aware that SDA and SCL may be swapped!!!## Technical specs
- SDA is D6 / GPIO14
- SCL is D5 / GPIO12
- Address is 0x3C## Code using Adafruit_SSD1306
```
#include#define SCREEN_WIDTH 128 // OLED display width, in pixels
#define SCREEN_HEIGHT 64 // OLED display height, in pixels#define OLED_RESET -1 // Reset pin # (or -1 if sharing Arduino reset pin)
#define SCREEN_ADDRESS 0x3C // If not work please scan the bus
#define OLED_SDA 14 // D6
#define OLED_SCL 12 // D5Adafruit_SSD1306 *display;
int c = 0;
void handle_oled(int c) {
display->clearDisplay();
display->setTextSize(1);
display->setTextColor(SSD1306_WHITE);
display->setCursor(0, 0);
display->println("Display is working!");
display->println("");
display->println("");
display->println("Have fun with it");
display->println("");
display->println("");
display->print("Uptime: ");
display->print(c);
display->println("s");
display->display();
}void setup() {
display = new Adafruit_SSD1306(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);
Wire.begin(OLED_SDA, OLED_SCL);
display->begin(SSD1306_SWITCHCAPVCC, SCREEN_ADDRESS);
}void loop() {
handle_oled(c);
c++;
delay(1000);
}
```
![AHT20_BMP280 logo](https://github.com/peff74/esp8266_OLED_HW-364A/blob/main/front_2.jpg)## Code using U8g2
```
#include
#define OLED_RESET U8X8_PIN_NONE // Reset pin
#define OLED_SDA 14 // D6
#define OLED_SCL 12 // D5U8G2_SSD1306_128X64_NONAME_F_HW_I2C u8g2(U8G2_R0, OLED_RESET, OLED_SCL, OLED_SDA);
int c = 0;
void handle_oled(int c) {
u8g2.clearBuffer();
u8g2.setFont(u8g2_font_ncenB08_tr);
u8g2.drawStr(0, 10, "Display is working!");
u8g2.drawStr(0, 30, "Have fun with it");
char buffer[20];
snprintf(buffer, sizeof(buffer), "Uptime: %ds", c);
u8g2.drawStr(0, 50, buffer);
u8g2.sendBuffer();
}void setup() {
u8g2.begin();
}void loop() {
handle_oled(c);
c++;
delay(1000);
}```
![AHT20_BMP280 logo](https://github.com/peff74/esp8266_OLED_HW-364A/blob/main/front_3.jpg)[![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fpeff74%2Fesp8266_OLED_HW-364A&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false)](https://hits.seeyoufarm.com)