{"id":37026545,"url":"https://github.com/wseemann/roku-ecp-wrapper-kotlin","last_synced_at":"2026-01-14T03:05:34.638Z","repository":{"id":68985353,"uuid":"104609919","full_name":"wseemann/Roku-ECP-Wrapper-Kotlin","owner":"wseemann","description":"Roku ECP Wrapper is a Kotlin based wrapper for the Roku External Control Protocol (ECP).","archived":false,"fork":false,"pushed_at":"2025-09-22T04:27:40.000Z","size":190,"stargazers_count":10,"open_issues_count":1,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-22T06:22:26.784Z","etag":null,"topics":["ecp","kotlin","roku"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wseemann.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2017-09-24T01:22:26.000Z","updated_at":"2025-09-22T04:26:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"a1ee7c0a-9b1a-4a22-b8a1-2e03931fb543","html_url":"https://github.com/wseemann/Roku-ECP-Wrapper-Kotlin","commit_stats":{"total_commits":60,"total_committers":2,"mean_commits":30.0,"dds":0.01666666666666672,"last_synced_commit":"37a002845bdd49a9c231a1c22007c6de1d1f3d2d"},"previous_names":["wseemann/roku-ecp-wrapper-kotlin"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/wseemann/Roku-ECP-Wrapper-Kotlin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wseemann%2FRoku-ECP-Wrapper-Kotlin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wseemann%2FRoku-ECP-Wrapper-Kotlin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wseemann%2FRoku-ECP-Wrapper-Kotlin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wseemann%2FRoku-ECP-Wrapper-Kotlin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wseemann","download_url":"https://codeload.github.com/wseemann/Roku-ECP-Wrapper-Kotlin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wseemann%2FRoku-ECP-Wrapper-Kotlin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28408800,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T01:52:23.358Z","status":"online","status_checked_at":"2026-01-14T02:00:06.678Z","response_time":107,"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":["ecp","kotlin","roku"],"created_at":"2026-01-14T03:05:33.864Z","updated_at":"2026-01-14T03:05:34.627Z","avatar_url":"https://github.com/wseemann.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"Roku ECP Wrapper\n============================\n\nOverview\n--------\n\nRoku ECP Wrapper is a Kotlin based wrapper/client for the [Roku External Control API](https://developer.roku.com/docs/developer-program/dev-tools/external-control-api.md).\n\nKey Features:\n--------\n\nRoku ECP Wrapper includes helper functions to:\n\n#### Query\n* List all channels and active channels\n* Obtain device information\n* Obtain player state information\n* Retrieve application icons\n\n#### Control\n* Perform key event and custom event input\n* Launch and install channels\n\n#### Search\n* Channels and media\n\nInstall\n--------\n\nAdd the following maven dependency to your project's `build.gradle` file:\n\n    dependencies {\n        implementation 'com.github.wseemann:roku-ecp-wrapper-kotlin:1.5.0'\n    }\n\n\nUsage\n------------\n\nSample code:\n\n##### Discover all Roku devices on the local network\n\n    List\u003cRokuDevice\u003e rokuDevices = DeviceRequests.discoverDevices();\n\n##### or, create a new device if you already know the devices IP address\n\n    rokuDevice = RokuDevice.create(\"\u003cIP address\u003e\");\n    \n    // For example:\n    \n    rokuDevice = RokuDevice.create(\"http://192.168.1.20:8060\");\n\n##### Once you have a valid RokuDevice object you can use the class to perform actions. For example, retrieve a list of available channels on a device\n\n    List\u003cChannel\u003e channels = rokuDevice.queryAppsRequest();\n\t\t\n    for (Channel channel: channels) {\n        // print the channel names\n        System.out.println(channel.getTitle());\n    }\n\n##### Start/pause playback on a device\n\n    rokuDevice.keyPressRequest(KeyPressKeyValues.PLAY);\n\nLicense\n------------\n\n```\nRoku ECP Wrapper: A Kotlin wrapper/client for the Roku External Control API.\n\nCopyright 2025 William Seemann\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwseemann%2Froku-ecp-wrapper-kotlin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwseemann%2Froku-ecp-wrapper-kotlin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwseemann%2Froku-ecp-wrapper-kotlin/lists"}