{"id":48155488,"url":"https://github.com/steamicc/micropython-steami-sample","last_synced_at":"2026-04-04T17:17:06.659Z","repository":{"id":288571596,"uuid":"968543185","full_name":"steamicc/micropython-steami-sample","owner":"steamicc","description":"MicroPython Scripts for STM32WB55  This repository contains a collection of MicroPython script examples designed for the STeaMi microcontroller. The goal is to provide useful, well-documented code snippets and project templates.","archived":false,"fork":false,"pushed_at":"2025-11-03T09:24:31.000Z","size":135,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-03T11:23:23.978Z","etag":null,"topics":[],"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/steamicc.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-04-18T09:15:12.000Z","updated_at":"2025-11-03T09:24:36.000Z","dependencies_parsed_at":"2025-04-18T22:57:03.716Z","dependency_job_id":"04b57f48-6d21-46d5-8ed8-1cbae2430b60","html_url":"https://github.com/steamicc/micropython-steami-sample","commit_stats":null,"previous_names":["charly-sketch/micropython-stm32wb55-template","steamicc/micropython-steami-sample"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/steamicc/micropython-steami-sample","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steamicc%2Fmicropython-steami-sample","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steamicc%2Fmicropython-steami-sample/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steamicc%2Fmicropython-steami-sample/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steamicc%2Fmicropython-steami-sample/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/steamicc","download_url":"https://codeload.github.com/steamicc/micropython-steami-sample/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steamicc%2Fmicropython-steami-sample/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31407644,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: 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":[],"created_at":"2026-04-04T17:17:05.894Z","updated_at":"2026-04-04T17:17:06.650Z","avatar_url":"https://github.com/steamicc.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MicroPython STEAMI Sample\n\nA collection of MicroPython sample scripts for the **STM32WB55** microcontroller. These examples demonstrate a wide range of features such as LED control, button input, BLE communication, sensor reading, display management, and simple games — ideal for STEAM education and embedded experimentation.\n\n---\n\n## 📁 Project Structure\n\n```\nmicropython-steami-sample/\n│\n├── BLE/        # Bluetooth Low Energy communication\n├── BUTTON/     # Button input examples\n├── DEMO/       # Combined demos (e.g., sensors + screen)\n├── GAME/       # Mini games in MicroPython\n├── LED/        # LED control and animations\n├── SCREEN/     # Display output examples (e.g., OLED)\n├── SENSOR/     # Sensor data acquisition\n```\n\nEach folder contains example `.py` scripts you can run directly on your STM32WB55 board.\n\n---\n\n## ✅ Requirements\n\n* **Hardware**: STM32WB55 development board\n* **Firmware**: MicroPython for STM32WB55 (flashed)\n* **Tooling**:\n\n  * [mpremote](https://docs.micropython.org/en/latest/reference/mpremote.html) (official MicroPython tool)\n\n---\n\n## 🚀 Quick Start with `mpremote`\n\n1. **Install mpremote** if not already installed:\n\n   ```bash\n   pip install mpremote\n   ```\n\n2. **Connect your board** via USB and verify it's detected:\n\n   ```bash\n   mpremote connect list\n   ```\n\n3. **Upload and run a script**:\n\n   For example, to run the LED blink demo:\n\n   ```bash\n   mpremote connect auto fs cp LED/blink.py :main.py\n   mpremote connect auto reset\n   ```\n\n   This copies the script to your board and sets it to run on boot.\n\n4. **Open a REPL (optional)**:\n\n   ```bash\n   mpremote connect auto\n   ```\n\n   Then press `Ctrl+C` to stop current execution or `Ctrl+D` to soft reset.\n\n---\n\n## 🧪 Examples\n\n* `LED/blink.py` — basic LED blink\n* `BUTTON/read_button.py` — detect button press\n* `BLE/advertiser.py` — advertise as BLE device\n* `SCREEN/oled_demo.py` — print to OLED screen\n* `GAME/dinoSteam.py` — a simple built-in game\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsteamicc%2Fmicropython-steami-sample","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsteamicc%2Fmicropython-steami-sample","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsteamicc%2Fmicropython-steami-sample/lists"}