{"id":25172610,"url":"https://github.com/youtecha320u/raspberrypi_python_so1602_lib","last_synced_at":"2026-04-28T00:31:48.698Z","repository":{"id":159115293,"uuid":"162653887","full_name":"YoutechA320U/RaspberryPi_Python_so1602_lib","owner":"YoutechA320U","description":null,"archived":false,"fork":false,"pushed_at":"2018-12-21T04:43:04.000Z","size":121,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-29T21:43:49.211Z","etag":null,"topics":["oled","python2","python3","raspberrypi","so1602"],"latest_commit_sha":null,"homepage":null,"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/YoutechA320U.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}},"created_at":"2018-12-21T02:13:54.000Z","updated_at":"2019-06-29T14:49:48.000Z","dependencies_parsed_at":"2023-06-01T14:15:43.098Z","dependency_job_id":null,"html_url":"https://github.com/YoutechA320U/RaspberryPi_Python_so1602_lib","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/YoutechA320U/RaspberryPi_Python_so1602_lib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YoutechA320U%2FRaspberryPi_Python_so1602_lib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YoutechA320U%2FRaspberryPi_Python_so1602_lib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YoutechA320U%2FRaspberryPi_Python_so1602_lib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YoutechA320U%2FRaspberryPi_Python_so1602_lib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YoutechA320U","download_url":"https://codeload.github.com/YoutechA320U/RaspberryPi_Python_so1602_lib/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YoutechA320U%2FRaspberryPi_Python_so1602_lib/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32361477,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["oled","python2","python3","raspberrypi","so1602"],"created_at":"2025-02-09T10:15:20.788Z","updated_at":"2026-04-28T00:31:48.694Z","avatar_url":"https://github.com/YoutechA320U.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RaspberryPi_Python_so1602_lib\n## 概要\nこのライブラリは、RaspberryPiで[SO1602 有機ELキャラクタディスプレイモジュール16x2行](http://akizukidenshi.com/catalog/g/gP-08277/)を扱いやすくするためのライブラリです。直接日本語(カタカナ)や一部特殊文字が使えます。\n\n\n## 必要なライブラリ\n    smbus\n## コマンド一覧\n    so1602.setaddr(　SlaveAddress　)\n\nモジュールのスレーブアドレスを設定します。最初に必ず使用してください。\n\n    so1602.command( Command )\n\n各種コマンドを実行します。実行できるコマンドは[データシート](http://akizukidenshi.com/download/ds/sunlike/SO1602AWYB-UC-WB-U.pdf)を参照してください。\n\n    so1602.write( \"character\" )\n    so1602.write( 'character' )\n\nディスプレイに文字列を表示します。文字列は必ずクォーテーションマークかアポストロフィーで囲んでください。表示できる文字は[so1602.py](https://github.com/YoutechA320U/RaspberryPi_Python_so1602_library/blob/master/so1602.py)を参照してください。\n\n## 使用例\n    import so1602 #モジュールをインポート\n    so1602.setaddr(0x3c) #スレーブアドレスを0x3Cに設定\n    so1602.command(0x0c) #so1602をオン\n    so1602.command(0x01) #so1602をリセット\n    so1602.command(0x80) #カーソルを1行目の先頭に\n    so1602.write(\"SO1602ナンダヨ!\")\n    so1602.command(0xa0) #カーソルを2行目の先頭に\n    so1602.write(\"ΩΩΩ\u003cナ、ナンダッテー!?\")\n\n\n![SS](https://github.com/YoutechA320U/RaspberryPi_Python_so1602_library/blob/master/example.JPG \"example\")\n\n### 参考資料\n * \u003chttp://akizukidenshi.com/download/ds/sunlike/SO1602AWYB-UC-WB-U.pdf\u003e  \n * \u003chttp://www.newhavendisplay.com/app_notes/US2066.pdf\u003e  \n\n## 履歴\n    [2018/12/21] - 初回リリース\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyoutecha320u%2Fraspberrypi_python_so1602_lib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyoutecha320u%2Fraspberrypi_python_so1602_lib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyoutecha320u%2Fraspberrypi_python_so1602_lib/lists"}