{"id":22835969,"url":"https://github.com/Nondzu/ssd1306_font","last_synced_at":"2025-08-10T21:31:35.552Z","repository":{"id":59044118,"uuid":"527935196","full_name":"Nondzu/ssd1306_font","owner":"Nondzu","description":"OLED ssd1306 font library using TinyGo","archived":false,"fork":false,"pushed_at":"2022-08-23T11:55:01.000Z","size":26,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"release","last_synced_at":"2024-12-12T23:02:40.713Z","etag":null,"topics":["embedded","font","golang","oled","oled-display","oled-display-ssd1306","oled-ssd1306","pico","raspberry","rpi","tinygo"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Nondzu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-08-23T10:14:44.000Z","updated_at":"2024-02-18T21:18:11.000Z","dependencies_parsed_at":"2022-09-11T04:52:46.006Z","dependency_job_id":null,"html_url":"https://github.com/Nondzu/ssd1306_font","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/Nondzu/ssd1306_font","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nondzu%2Fssd1306_font","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nondzu%2Fssd1306_font/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nondzu%2Fssd1306_font/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nondzu%2Fssd1306_font/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Nondzu","download_url":"https://codeload.github.com/Nondzu/ssd1306_font/tar.gz/refs/heads/release","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nondzu%2Fssd1306_font/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269793046,"owners_count":24476667,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"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","font","golang","oled","oled-display","oled-display-ssd1306","oled-ssd1306","pico","raspberry","rpi","tinygo"],"created_at":"2024-12-12T23:00:48.933Z","updated_at":"2025-08-10T21:31:35.522Z","avatar_url":"https://github.com/Nondzu.png","language":"Go","funding_links":[],"categories":["Display Hardware"],"sub_categories":[],"readme":"# ssd1306 font\n\n### This is  lite ssd1306 font library using TinyGo. Tested on Raspberry Pi Pico.\n\n\nExample:\n```\npackage main\n\nimport (\n\t\"machine\"\n\t\"time\"\n\n\tfont \"github.com/Nondzu/ssd1306_font\"\n\t\"tinygo.org/x/drivers/ssd1306\"\n)\n\nfunc main() {\n\n\ttime.Sleep(time.Millisecond * 100) // Please wait some time after turning on the device to properly initialize the display\n\tmachine.I2C0.Configure(machine.I2CConfig{Frequency: 400000})\n\n\t// Display\n\tdev := ssd1306.NewI2C(machine.I2C0)\n\tdev.Configure(ssd1306.Config{Width: 128, Height: 64, Address: 0x3C, VccState: ssd1306.SWITCHCAPVCC})\n\tdev.ClearBuffer()\n\tdev.ClearDisplay()\n\n\t//font library init\n\tdisplay := font.NewDisplay(dev)\n\tdisplay.Configure(font.Config{FontType: font.FONT_7x10}) //set font here\n\n\tdisplay.YPos = 20                 // set position Y\n\tdisplay.XPos = 0                  // set position X\n\tdisplay.PrintText(\"HELLO WORLD!\") // print text\n\n\tfor {\n\n\t}\n}\n\n```\n\n\n\n\n#### FONT_6x8 \n![FONT_6x8](https://user-images.githubusercontent.com/20000097/186149922-b45a203e-44cd-478e-97d9-5f99e885c639.png)\n\n#### FONT_7x10\n![FONT_7x10](https://user-images.githubusercontent.com/20000097/186149937-4c95dc76-6f37-4675-b36c-3ef3fbb3ea5c.png)\n\n#### FONT_11x18\n![FONT_11x18](https://user-images.githubusercontent.com/20000097/186149933-1420af08-3221-4cf7-9ee4-13f2e20f6c41.png)\n\n#### FONT_16x26\n![FONT_16x26](https://user-images.githubusercontent.com/20000097/186149928-0c716beb-da9b-4dd5-b72f-5d681adaa802.png)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FNondzu%2Fssd1306_font","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FNondzu%2Fssd1306_font","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FNondzu%2Fssd1306_font/lists"}