{"id":17128610,"url":"https://github.com/yeyeto2788/ustatusboard","last_synced_at":"2026-04-30T00:35:33.778Z","repository":{"id":43792009,"uuid":"188964049","full_name":"yeyeto2788/uStatusBoard","owner":"yeyeto2788","description":"uStatusBoard","archived":false,"fork":false,"pushed_at":"2025-01-14T16:14:21.000Z","size":296,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-29T10:22:28.642Z","etag":null,"topics":["micropyt","micropython","neopixels","wemo","ws2"],"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/yeyeto2788.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}},"created_at":"2019-05-28T06:03:18.000Z","updated_at":"2025-01-14T16:14:22.000Z","dependencies_parsed_at":"2025-01-14T17:36:44.753Z","dependency_job_id":"81787e02-fab9-4f9c-acfe-8829537131cc","html_url":"https://github.com/yeyeto2788/uStatusBoard","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yeyeto2788%2FuStatusBoard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yeyeto2788%2FuStatusBoard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yeyeto2788%2FuStatusBoard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yeyeto2788%2FuStatusBoard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yeyeto2788","download_url":"https://codeload.github.com/yeyeto2788/uStatusBoard/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245207254,"owners_count":20577648,"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":["micropyt","micropython","neopixels","wemo","ws2"],"created_at":"2024-10-14T19:07:32.838Z","updated_at":"2026-04-30T00:35:28.744Z","avatar_url":"https://github.com/yeyeto2788.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# uStatusBoard\nThe uStatusBoard is a board designed to be used as simple notifier with 4 leds WS2812B (aka NeoPixels) to show the status\nby changing the color of the led on the board.\n\nYou can use a marker to write down the condition/status of anything you're monitoring.\n\n**Top view of the board (latest version)**\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"./docs/images/bottom_v02.png\" alt=\"Top View of the board\"  width=\"300\"/\u003e\n\u003c/p\u003e\n\n**Bottom view of the board (latest version)**\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"./docs/images/top_v02.png\" alt=\"Bottom view of the board\"  width=\"300\"/\u003e\n\u003c/p\u003e\n\nIn order to use the board we will need a Wemos D1 mini (image below) which the board is soldered onto it.\n\n**Wemos D1 mini board**\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"./docs/images/wemos_d1_mini.png\" alt=\"Wemos d1 mini board\"  width=\"200\"/\u003e\n\u003c/p\u003e\n\n\n**Note:** There is no need to use specifically the Wemos D1 mini board, another board can used with this uStatusBoard.\n\n\n## Structure for the Repository\n\n```\nMain Repository Folder(uStatusBoard)\n        └── docs Folders\n        |        |\n        |        └── images folder\n        └── examples Folder\n        |   |\n        |   └── example scripts\n        |     \n        ├── hardware Folder\n        |     |\n        |     └── version folders (Schematics and board design)\n        |\n        └── status_board.py (module)\n        |\n        └── README (This document.)\n```\n\n## Usage examples\nTo use the code (written in [MicroPython](https://micropython.org/)) we will just upload the module `status_board.py` and in the REPL we can start playing with it.\n\n```console\n\u003e\u003e\u003e from status_board import StatusBoard\n\u003e\u003e\u003e board = StatusBoard()\n\u003e\u003e\u003e board.pin\nPin(15)\n\u003e\u003e\u003e board.brightness\n255\n```\n\nTake into account that we are instantiated the object with the default attributes as seen in the REPL output above.\n\nSo now let's play a bit with it.\n\n```console\n\u003e\u003e\u003e board.color_all('blue')\n\u003e\u003e\u003e board.color_all('red')\n\u003e\u003e\u003e board.color_all('green')\n\u003e\u003e\u003e board.color_all('white')\n\u003e\u003e\u003e board.color_all('nocolor')\n```\n\nThis colors are defined on the `StatusBoard.colors` attribute which can be accessed any time\n\n```console\n\u003e\u003e\u003e board.colors\n{'cyan': [0, 1, 1], 'nocolor': [0, 0, 0], 'magenta': [1, 0, 1], 'blue': [0, 0, 1], 'yellow': [1, 1, 0], 'white': [1, 1, 1], 'green': [0, 1, 0], 'red': [1, 0, 0]}\n```\n\nNow let's turn off all the leds\n\n```console\n\u003e\u003e\u003e board.clear_all()\n```\n\nIf you want to know more about what methods the `StatusBoard` has head over to the [status_board.py](./status_board.py) script.\n\n#### If you want **more examples** head over the [examples folder](./examples/).\n\n___\n## Any feedback is highly appreciated! \n\nPlease, if you see any error open an issue on this repo.\n\n___\n## Useful links:\n\n[MicroPython](https://micropython.org/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyeyeto2788%2Fustatusboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyeyeto2788%2Fustatusboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyeyeto2788%2Fustatusboard/lists"}