{"id":14954352,"url":"https://github.com/jfurcean/circuitpython_wiichuck","last_synced_at":"2025-10-29T22:31:19.497Z","repository":{"id":46048132,"uuid":"335746811","full_name":"jfurcean/CircuitPython_WiiChuck","owner":"jfurcean","description":"CircuitPython library to support some Wiimote extension controllers. ","archived":false,"fork":false,"pushed_at":"2023-07-31T12:43:22.000Z","size":80,"stargazers_count":3,"open_issues_count":2,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-09T06:12:53.403Z","etag":null,"topics":["circuitpython","wii"],"latest_commit_sha":null,"homepage":"","language":"Python","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/jfurcean.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2021-02-03T20:31:12.000Z","updated_at":"2025-01-25T05:02:58.000Z","dependencies_parsed_at":"2024-10-12T03:21:19.952Z","dependency_job_id":"856e2a32-92e5-4abf-95a5-26b412a29444","html_url":"https://github.com/jfurcean/CircuitPython_WiiChuck","commit_stats":{"total_commits":33,"total_committers":4,"mean_commits":8.25,"dds":0.6060606060606061,"last_synced_commit":"19aa79d817f029129c73baf5d199a50f45024a8d"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfurcean%2FCircuitPython_WiiChuck","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfurcean%2FCircuitPython_WiiChuck/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfurcean%2FCircuitPython_WiiChuck/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfurcean%2FCircuitPython_WiiChuck/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jfurcean","download_url":"https://codeload.github.com/jfurcean/CircuitPython_WiiChuck/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238909322,"owners_count":19550837,"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","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":["circuitpython","wii"],"created_at":"2024-09-24T13:01:55.201Z","updated_at":"2025-10-29T22:31:19.161Z","avatar_url":"https://github.com/jfurcean.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Introduction\n============\n\n.. image:: https://readthedocs.org/projects/circuitpython-wiichuck/badge/?version=latest\n    :target: https://circuitpython-wiichuck.readthedocs.io/\n    :alt: Documentation Status\n\n.. image:: https://img.shields.io/discord/327254708534116352.svg\n    :target: https://adafru.it/discord\n    :alt: Discord\n\n.. image:: https://github.com/jfurcean/CircuitPython_WiiChuck/workflows/Build%20CI/badge.svg\n    :target: https://github.com/jfurcean/CircuitPython_WiiChuck/actions\n    :alt: Build Status\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n    :target: https://github.com/psf/black\n    :alt: Code Style: Black\n\nCircuitPython driver for Nintento WiiMote I2C Accessory Devices\n\n\nDependencies\n=============\nThis driver depends on:\n\n* `Adafruit CircuitPython \u003chttps://github.com/adafruit/circuitpython\u003e`_\n* `Bus Device \u003chttps://github.com/adafruit/Adafruit_CircuitPython_BusDevice\u003e`_\n\nPlease ensure all dependencies are available on the CircuitPython filesystem.\nThis is easily achieved by downloading\n`the Adafruit library and driver bundle \u003chttps://circuitpython.org/libraries\u003e`_.\n\n\nUsage Example\n=============\n\n.. code-block:: python\n\n    import time\n    import board\n    from wiichuck.nunchuk import Nunchuk\n\n    nc = Nunchuk(board.I2C())\n\n    while True:\n        x, y = nc.joystick\n        ax, ay, az = nc.acceleration\n        print(\"joystick = {},{}\".format(x, y))\n        print(\"accceleration ax={}, ay={}, az={}\".format(ax, ay, az))\n\n        buttons = nc.buttons\n        if buttons.C:\n            print(\"button C\")\n        if buttons.Z:\n            print(\"button Z\")\n        time.sleep(0.5)\n\n\nContributing\n============\n\nContributions are welcome! Please read our `Code of Conduct\n\u003chttps://github.com/jfurcean/CircuitPython_WiiChuck/blob/master/CODE_OF_CONDUCT.md\u003e`_\nbefore contributing to help this project stay welcoming.\n\nDocumentation\n=============\n\nFor information on building library documentation, please check out `this guide \u003chttps://learn.adafruit.com/creating-and-sharing-a-circuitpython-library/sharing-our-docs-on-readthedocs#sphinx-5-1\u003e`_.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjfurcean%2Fcircuitpython_wiichuck","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjfurcean%2Fcircuitpython_wiichuck","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjfurcean%2Fcircuitpython_wiichuck/lists"}