{"id":15042700,"url":"https://github.com/woolseyworkshop/woolseyworkshop_circuitpython_74hc165","last_synced_at":"2025-04-10T00:32:55.800Z","repository":{"id":57477789,"uuid":"375050540","full_name":"WoolseyWorkshop/WoolseyWorkshop_CircuitPython_74HC165","owner":"WoolseyWorkshop","description":"CircuitPython driver for 74HC165 shift register.","archived":false,"fork":false,"pushed_at":"2024-01-19T19:57:47.000Z","size":46,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-02T16:25:00.563Z","etag":null,"topics":["74hc165","circuitpython-library"],"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/WoolseyWorkshop.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-06-08T15:03:00.000Z","updated_at":"2023-12-30T17:32:53.000Z","dependencies_parsed_at":"2024-11-13T12:23:20.912Z","dependency_job_id":"943381ff-bd54-4312-be07-643946400275","html_url":"https://github.com/WoolseyWorkshop/WoolseyWorkshop_CircuitPython_74HC165","commit_stats":{"total_commits":8,"total_committers":1,"mean_commits":8.0,"dds":0.0,"last_synced_commit":"d325131f6c7525fb274dae53eb14ee2091bf7fd1"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WoolseyWorkshop%2FWoolseyWorkshop_CircuitPython_74HC165","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WoolseyWorkshop%2FWoolseyWorkshop_CircuitPython_74HC165/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WoolseyWorkshop%2FWoolseyWorkshop_CircuitPython_74HC165/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WoolseyWorkshop%2FWoolseyWorkshop_CircuitPython_74HC165/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WoolseyWorkshop","download_url":"https://codeload.github.com/WoolseyWorkshop/WoolseyWorkshop_CircuitPython_74HC165/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239088383,"owners_count":19579432,"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":["74hc165","circuitpython-library"],"created_at":"2024-09-24T20:47:46.339Z","updated_at":"2025-02-16T04:32:46.505Z","avatar_url":"https://github.com/WoolseyWorkshop.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Introduction\n============\n\n.. image:: https://readthedocs.org/projects/woolseyworkshop-circuitpython-74hc165/badge/?version=latest\n    :target: https://woolseyworkshop-circuitpython-74hc165.readthedocs.io/\n    :alt: Documentation Status\n\n.. image:: https://raw.githubusercontent.com/adafruit/Adafruit_CircuitPython_Bundle/main/badges/adafruit_discord.svg\n    :target: https://adafru.it/discord\n    :alt: Discord\n\n.. image:: https://github.com/WoolseyWorkshop/WoolseyWorkshop_CircuitPython_74HC165/workflows/Build%20CI/badge.svg\n    :target: https://github.com/WoolseyWorkshop/WoolseyWorkshop_CircuitPython_74HC165/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 74HC165 shift register.\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://github.com/adafruit/Adafruit_CircuitPython_Bundle\u003e`_.\n\nInstalling from PyPI\n====================\n\nOn supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from\nPyPI \u003chttps://pypi.org/project/woolseyworkshop-circuitpython-74hc165/\u003e`_. To install for current user:\n\n.. code-block:: shell\n\n    pip3 install woolseyworkshop-circuitpython-74hc165\n\nTo install system-wide (this may be required in some cases):\n\n.. code-block:: shell\n\n    sudo pip3 install woolseyworkshop-circuitpython-74hc165\n\nTo install in a virtual environment in your current project:\n\n.. code-block:: shell\n\n    mkdir project-name \u0026\u0026 cd project-name\n    python3 -m venv .venv\n    source .venv/bin/activate\n    pip3 install woolseyworkshop-circuitpython-74hc165\n\n\nUsage Example\n=============\n\n.. code-block:: python\n\n    import time\n    import board\n    import digitalio\n    import wws_74hc165\n\n    latch_pin = digitalio.DigitalInOut(board.D5)\n    sr = wws_74hc165.ShiftRegister74HC165(board.SPI(), latch_pin)\n\n    pin1 = sr.get_pin(1)\n\n    while True:\n        print(f\"pin 1 = {pin1.value}\")\n        time.sleep(1)\n\nAlso see the `Adding Digital I/O To Your CircuitPython Compatible Board: Part 2 - The 74HC165 \u003chttps://www.woolseyworkshop.com/2021/07/02/adding-digital-io-to-your-circuitpython-compatible-board-part-2-the-74hc165/\u003e`_ tutorial on `WoolseyWorkshop.com \u003chttps://www.woolseyworkshop.com\u003e`_ for additional usage information.\n\nDocumentation\n=============\n\nAPI documentation for this library can be found on `Read the Docs \u003chttps://woolseyworkshop-circuitpython-74hc165.readthedocs.io\u003e`_.\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\nContributing\n============\n\nContributions are welcome! Please read our `Code of Conduct\n\u003chttps://github.com/WoolseyWorkshop/WoolseyWorkshop_CircuitPython_74HC165/blob/main/CODE_OF_CONDUCT.md\u003e`_\nbefore contributing to help this project stay welcoming.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwoolseyworkshop%2Fwoolseyworkshop_circuitpython_74hc165","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwoolseyworkshop%2Fwoolseyworkshop_circuitpython_74hc165","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwoolseyworkshop%2Fwoolseyworkshop_circuitpython_74hc165/lists"}