{"id":18064302,"url":"https://github.com/emischorr/prusa_link","last_synced_at":"2026-02-24T02:31:50.536Z","repository":{"id":259918187,"uuid":"879835251","full_name":"emischorr/prusa_link","owner":"emischorr","description":"Wrapper around the local Prusa Link API","archived":false,"fork":false,"pushed_at":"2024-11-01T13:16:11.000Z","size":18,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-18T02:14:59.374Z","etag":null,"topics":["3d-printing","api","elixir","prusa","prusalink"],"latest_commit_sha":null,"homepage":"https://hex.pm/packages/prusa_link","language":"Elixir","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/emischorr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2024-10-28T16:19:30.000Z","updated_at":"2025-05-21T19:12:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"567b7dcd-bbf4-4e05-9754-5b9eade05c66","html_url":"https://github.com/emischorr/prusa_link","commit_stats":null,"previous_names":["emischorr/prusa_link"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/emischorr/prusa_link","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emischorr%2Fprusa_link","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emischorr%2Fprusa_link/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emischorr%2Fprusa_link/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emischorr%2Fprusa_link/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/emischorr","download_url":"https://codeload.github.com/emischorr/prusa_link/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emischorr%2Fprusa_link/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29769176,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-24T01:40:24.820Z","status":"online","status_checked_at":"2026-02-24T02:00:07.497Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["3d-printing","api","elixir","prusa","prusalink"],"created_at":"2024-10-31T06:05:25.765Z","updated_at":"2026-02-24T02:31:50.501Z","avatar_url":"https://github.com/emischorr.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PrusaLink\n\nA wrapper around the local PrusaLink API of a supported Prusa 3D printer (MK4/S, MK3.9/S, MK3.5/S, XL, MINI / MINI +, SL1, SL1S SPEED).\nFor further instructions how to setup PrusaLink (and obtain IP and password) have a look at the official [Guide](https://help.prusa3d.com/guide/wi-fi-and-prusalink-setup-mk4-mk3-9-mk3-5-xl-mini_413293) from Prusa.\n\nCurrently supports:\n- status info\n- job info\n- start print job\n- stop, pause, continue a job\n- retrieve storage info\n- file and directory listing\n- file upload (since v0.1.1)\n\n## Usage\n\n```elixir\n{:ok, mk4} = PrusaLink.printer(\"192.168.10.10\", \"your_password\")\n\nPrusaLink.specs(mk4)\n\u003e %{\n    name: \"prusa-mk4\",\n    serial: \"10000-1111444433332222\",\n    api_version: 1,\n    capabilities: %{\"upload-by-put\" =\u003e true},\n    mmu: false,\n    nozzle: 0.4\n  }\n\nPrusaLink.status(mk4)\n\u003e {:ok,\n    %{\n      \"printer\" =\u003e %{\n        \"axis_x\" =\u003e 241.0,\n        \"axis_y\" =\u003e 170.0,\n        \"axis_z\" =\u003e 61.5,\n        \"fan_hotend\" =\u003e 0,\n        \"fan_print\" =\u003e 0,\n        \"flow\" =\u003e 100,\n        \"speed\" =\u003e 100,\n        \"state\" =\u003e \"FINISHED\",\n        \"target_bed\" =\u003e 0.0,\n        \"target_nozzle\" =\u003e 0.0,\n        \"temp_bed\" =\u003e 23.9,\n        \"temp_nozzle\" =\u003e 25.0\n      },\n      \"storage\" =\u003e %{\"name\" =\u003e \"usb\", \"path\" =\u003e \"/usb/\", \"read_only\" =\u003e false}\n  }}\n```\n\n## Installation\n\nThe package can be installed by adding `prusa_link` to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [\n    {:prusa_link, \"~\u003e 0.1.1\"}\n  ]\nend\n```\n\nDocumentation can be found at \u003chttps://hexdocs.pm/prusa_link\u003e.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femischorr%2Fprusa_link","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femischorr%2Fprusa_link","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femischorr%2Fprusa_link/lists"}