{"id":23853555,"url":"https://github.com/falleng0d/pi-remote","last_synced_at":"2026-05-02T17:38:38.738Z","repository":{"id":270485784,"uuid":"910517321","full_name":"falleng0d/pi-remote","owner":"falleng0d","description":"Pi Zero W USB keyboard \u0026 mouse gRPC server for remotecontrol-app","archived":false,"fork":false,"pushed_at":"2024-12-31T14:19:05.000Z","size":79,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-12-31T15:23:03.969Z","etag":null,"topics":["bash","grpc","python3","rapsberry-pi","shell","unix"],"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/falleng0d.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":"2024-12-31T13:55:02.000Z","updated_at":"2024-12-31T14:25:37.000Z","dependencies_parsed_at":"2024-12-31T15:33:11.921Z","dependency_job_id":null,"html_url":"https://github.com/falleng0d/pi-remote","commit_stats":null,"previous_names":["falleng0d/pi-remote"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falleng0d%2Fpi-remote","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falleng0d%2Fpi-remote/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falleng0d%2Fpi-remote/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falleng0d%2Fpi-remote/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/falleng0d","download_url":"https://codeload.github.com/falleng0d/pi-remote/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":232266923,"owners_count":18497144,"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":["bash","grpc","python3","rapsberry-pi","shell","unix"],"created_at":"2025-01-02T23:17:58.608Z","updated_at":"2026-05-02T17:38:38.687Z","avatar_url":"https://github.com/falleng0d.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pi Remote\n\nA gRPC-based keyboard \u0026 mouse gadget\nfor [remotecontrol-app](https://github.com/falleng0d/remotecontrol-app) on Pi Zero W\n\n## Features\n\nBasically this allows you to use a tablet or phone of your choice that has \n[remotecontrol-app](https://github.com/falleng0d/remotecontrol-app) installed to \ncontrol another device (.e.g. a PC) as if the inputs are coming from a real \nkeyboard and mouse. \n\nThis is possible because the app sends the inputs to the **Rapsberry Pi Zero W**\n, which then forwards them to the target device via an usb connection.\n\n## Architecture\n\n```mermaid\nflowchart TB\n    %% Styles and classes\n    classDef client fill:#2196F3,stroke:#1565C0,color:white\n    classDef grpc fill:#FDD835,stroke:#F9A825,color:black\n    classDef core fill:#4CAF50,stroke:#2E7D32,color:white\n    classDef hardware fill:#757575,stroke:#424242,color:white\n    classDef config fill:#FF9800,stroke:#EF6C00,color:white\n\n    %% Client Layer\n    MobileApp[\"Remote Control App\"]:::client\n\n    %% Communication Layer\n    subgraph Communication\n        GRPC[\"gRPC Server\"]:::grpc\n        Proto[\"Protocol Buffers\"]:::grpc\n        ProtoGen[\"Generated Proto Code\"]:::grpc\n    end\n\n    %% Core Processing Layer\n    subgraph CoreProcessing\n        InputSvc[\"Input Service\"]:::core\n        ConfigSvc[\"Config Service\"]:::core\n        TextHID[\"Text-to-HID Converter\"]:::core\n        KeyProc[\"Key Processing\"]:::core\n    end\n\n    %% Hardware Interface Layer\n    subgraph HardwareInterface\n        HIDHandler[\"HID Protocol Handler\"]:::hardware\n        USBGadget[\"USB Gadget Implementation\"]:::hardware\n    end\n\n    %% Configuration\n    Config[\"Configuration Files\"]:::config\n    Services[\"System Services\"]:::config\n\n    %% Relationships\n    MobileApp --\u003e GRPC\n    GRPC --\u003e Proto\n    Proto --\u003e ProtoGen\n    GRPC --\u003e InputSvc\n    InputSvc --\u003e ConfigSvc\n    ConfigSvc --\u003e Config\n    InputSvc --\u003e TextHID\n    TextHID --\u003e KeyProc\n    KeyProc --\u003e HIDHandler\n    HIDHandler --\u003e USBGadget\n    Services --\u003e USBGadget\n\n    %% Click events for component mapping\n    click GRPC \"https://github.com/falleng0d/pi-remote/blob/master/app/server.py\"\n    click Proto \"https://github.com/falleng0d/pi-remote/blob/master/app/input.proto\"\n    click ProtoGen \"https://github.com/falleng0d/pi-remote/blob/master/app/input_pb2.py\"\n    click InputSvc \"https://github.com/falleng0d/pi-remote/blob/master/app/input_service.py\"\n    click ConfigSvc \"https://github.com/falleng0d/pi-remote/blob/master/app/config_service.py\"\n    click TextHID \"https://github.com/falleng0d/pi-remote/blob/master/app/text_to_hid.py\"\n    click HIDHandler \"https://github.com/falleng0d/pi-remote/tree/master/app/hid\"\n    click USBGadget \"https://github.com/falleng0d/pi-remote/tree/master/otg\"\n    click Services \"https://github.com/falleng0d/pi-remote/blob/master/pi-remote.service\"\n    click Config \"https://github.com/falleng0d/pi-remote/blob/master/remotecontrol.cfg\"\n    click KeyProc \"https://github.com/falleng0d/pi-remote/blob/master/app/key.py\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffalleng0d%2Fpi-remote","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffalleng0d%2Fpi-remote","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffalleng0d%2Fpi-remote/lists"}