{"id":32713510,"url":"https://github.com/asathiskumar98-byte/esp8266-oled-display-ssd1306-i-c-micropython","last_synced_at":"2026-04-16T04:02:07.339Z","repository":{"id":321343640,"uuid":"1085471559","full_name":"asathiskumar98-byte/ESP8266-OLED-Display-SSD1306-I-C-MicroPython","owner":"asathiskumar98-byte","description":"This project demonstrates how to interface an **SSD1306 OLED Display** (128x64 pixels) with the **ESP8266** using **I²C communication** and **MicroPython**.   The display shows simple text output — “Hello World” — as an introduction to using graphical displays with embedded systems.","archived":false,"fork":false,"pushed_at":"2025-10-29T04:54:06.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-29T06:27:40.190Z","etag":null,"topics":["embedded-systems","esp8266","esp8266-projects","micropython","micropython-esp8266","oled-display-ssd1306","thonny-ide"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/asathiskumar98-byte.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-29T04:50:47.000Z","updated_at":"2025-10-29T04:55:44.000Z","dependencies_parsed_at":"2025-10-29T06:27:41.721Z","dependency_job_id":"832928a6-9f01-49d7-b0bb-13f7694096fc","html_url":"https://github.com/asathiskumar98-byte/ESP8266-OLED-Display-SSD1306-I-C-MicroPython","commit_stats":null,"previous_names":["asathiskumar98-byte/esp8266-oled-display-ssd1306-i-c-micropython"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/asathiskumar98-byte/ESP8266-OLED-Display-SSD1306-I-C-MicroPython","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asathiskumar98-byte%2FESP8266-OLED-Display-SSD1306-I-C-MicroPython","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asathiskumar98-byte%2FESP8266-OLED-Display-SSD1306-I-C-MicroPython/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asathiskumar98-byte%2FESP8266-OLED-Display-SSD1306-I-C-MicroPython/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asathiskumar98-byte%2FESP8266-OLED-Display-SSD1306-I-C-MicroPython/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/asathiskumar98-byte","download_url":"https://codeload.github.com/asathiskumar98-byte/ESP8266-OLED-Display-SSD1306-I-C-MicroPython/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asathiskumar98-byte%2FESP8266-OLED-Display-SSD1306-I-C-MicroPython/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31870516,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"online","status_checked_at":"2026-04-16T02:00:06.042Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["embedded-systems","esp8266","esp8266-projects","micropython","micropython-esp8266","oled-display-ssd1306","thonny-ide"],"created_at":"2025-11-02T11:00:45.135Z","updated_at":"2026-04-16T04:02:07.329Z","avatar_url":"https://github.com/asathiskumar98-byte.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🖥️ ESP8266 OLED Display (SSD1306 I²C) — MicroPython\n\n## 🧠 Overview\nThis project demonstrates how to interface an **SSD1306 OLED Display** (128x64 pixels) with the **ESP8266** using **I²C communication** and **MicroPython**.  \nThe display shows simple text output — “Hello World” — as an introduction to using graphical displays with embedded systems.\n\n---\n\n## ⚙️ Hardware Setup\n\n| Component | ESP8266 Pin | Description |\n|------------|-------------|--------------|\n| OLED (SCL) | GPIO5 (D1) | Serial Clock Line |\n| OLED (SDA) | GPIO4 (D2) | Serial Data Line |\n| VCC | 3.3V | Power supply |\n| GND | GND | Common ground |\n\n🪛 **Connections:**\n- **D1 (GPIO5)** → **SCL**  \n- **D2 (GPIO4)** → **SDA**  \n- **3.3V** → **VCC**  \n- **GND** → **GND**\n\n---\n\n## 🧩 Code\n\n```python\nfrom machine import Pin\nfrom machine import I2C\nimport ssd1306\n\n# D1 = SCL = GPIO5\n# D2 = SDA = GPIO4\n\ni2c = I2C(sda=Pin(4), scl=Pin(5))\ndisplay = ssd1306.SSD1306_I2C(128, 64, i2c)\n\ndisplay.fill(0)  # Clear display\ndisplay.text('Hello', 20, 10, 1)\ndisplay.text('World', 40, 50, 1)\ndisplay.show()\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasathiskumar98-byte%2Fesp8266-oled-display-ssd1306-i-c-micropython","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fasathiskumar98-byte%2Fesp8266-oled-display-ssd1306-i-c-micropython","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasathiskumar98-byte%2Fesp8266-oled-display-ssd1306-i-c-micropython/lists"}