{"id":15061522,"url":"https://github.com/ddland/micropython","last_synced_at":"2026-01-30T12:31:23.362Z","repository":{"id":256544532,"uuid":"855674730","full_name":"ddland/micropython","owner":"ddland","description":"MicroPython libraries I use or created","archived":false,"fork":false,"pushed_at":"2026-01-22T17:29:06.000Z","size":665,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-23T04:16:01.122Z","etag":null,"topics":["iot","libraries","micropython","sensors"],"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/ddland.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":"2024-09-11T09:17:34.000Z","updated_at":"2026-01-22T17:29:22.000Z","dependencies_parsed_at":"2025-06-02T05:01:34.078Z","dependency_job_id":"183fd948-b247-4da3-bbad-e25d147918c0","html_url":"https://github.com/ddland/micropython","commit_stats":null,"previous_names":["ddland/micropython"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ddland/micropython","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddland%2Fmicropython","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddland%2Fmicropython/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddland%2Fmicropython/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddland%2Fmicropython/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ddland","download_url":"https://codeload.github.com/ddland/micropython/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ddland%2Fmicropython/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28912911,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T12:13:43.263Z","status":"ssl_error","status_checked_at":"2026-01-30T12:13:22.389Z","response_time":66,"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":["iot","libraries","micropython","sensors"],"created_at":"2024-09-24T23:20:54.826Z","updated_at":"2026-01-30T12:31:23.357Z","avatar_url":"https://github.com/ddland.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MicroPython\n\nWorking with sensors creates quite a few libraries. Some are written by me, others are adapted and even more are just used.\n\n# [Examples](examples/)\nExample code for interfacing the Raspberrypi Pico\n* [Motors](examples/motors/)\n  Control motors with the Raspberry Pi Pico\n* [Internal Temperature Sensor](examples/read_temperature.py)\n  Read the internal temperature sensor with a loop!\n\n# [Tips and Tricks](tips/)\nTips and tricks explaining some coding concepts or useful tools within the micropython ecosystem.\n* [Threading](tips/threading) \n  Threading on the Raspberrypi Pico. Allowing two while loops running at the same time!\n* [WatchDog](tips/watchdog.py)\n  Use the watchdog which reboots the Pico when something doesn't work!\n\n# [Libraries](libraries/)\nIn the libraries subfolder there are submodules with my own modules. Here is a list of both my own code, drivers adapted from others code or links to drivers written by others. \n## Acceleration\n* [LIS3DHTR](https://github.com/ddland/mp_lis3dhtr)\n  Driver for the [Grove - 3-Axis acceleromter](https://wiki.seeedstudio.com/Grove-3-Axis-Digital-Accelerometer-LIS3DHTR/) for the Rasbperry Pi Pico.\n* [MSA301](https://github.com/wojciech-szmyt/msa301-micropython-driver)\n  Library for the [Adafruit MSA301](https://learn.adafruit.com/msa301-triple-axis-accelerometer/overview) accelerometer. I had to change the device address (from 0x26 into 0x62, else it did not work). \n## DAC (digital to analogue converter)\n* [MCP4725](https://github.com/ddland/mp_mcp4725) \n  Driver for the [MCP4725](https://www.sparkfun.com/sparkfun-i2c-dac-breakout-mcp4725.html) DAC. Based on work from [Wayoda](https://github.com/wayoda/micropython-mcp4725).\n## Display\n* [SSD1306](https://github.com/stlehmann/micropython-ssd1306) \n  Library for the SSD1306 screens (works also with SSD1315).\n## Environment\n* [SPS30](https://github.com/ddland/mp_sps30)\n  Driver for the [SPS30](https://sensirion.com/products/catalog/SPS30) for the Raspberry Pi Pico. \n* [SEN66](https://github.com/ddland/mp_sen66)\n  Driver for the [SEN66](https://sensirion.com/products/catalog/SEN66) for the Raspberry Pi Pico.\n* [TLV493D](https://github.com/ddland/mp_tlv493d)\n  Driver for the [TLV493D](https://learn.adafruit.com/adafruit-tlv493-triple-axis-magnetometer), based on the work from [Adafruit](https://learn.adafruit.com/) and [Maarten Doves](https://github.com/MDoves).\n* [SHT45](https://github.com/jposada202020/MicroPython_SHT4X/tree/master)\n* Driver for the SHT5x Temperature and Humidity sensors. A bit outdated, but does still work.\n## Other\n* [CutebotPro](https://github.com/ddland/mp_cutebotpro) \n  MicroPython library for the [CutebotPro](https://shop.elecfreaks.com/products/elecfreaks-smart-cutebot-pro-v2-programming-robot-car-for-micro-bit) with a [Micro:bit](https://microbit.org) running MicroPython.\n\n# Git Submodules\nIf you want all submodules when this repository is cloned use\n```\ngit clone --recurse-submodules\n```\nAll data from the submodules will be pulled to their respective directories.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fddland%2Fmicropython","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fddland%2Fmicropython","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fddland%2Fmicropython/lists"}