Skip to content

Commit

Permalink
enable playstation plugin to start PlayStation titles from the Home a…
Browse files Browse the repository at this point in the history
…pp (#75)

* bumped dependencies

* added parameter to debug better

* reduced log intensity

* added ability to start titles
  • Loading branch information
Robert Hänsel authored Oct 17, 2023
1 parent 57f9d7f commit de84154
Show file tree
Hide file tree
Showing 6 changed files with 2,417 additions and 1,384 deletions.
27 changes: 26 additions & 1 deletion config.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"pluginAlias": "playstation",
"pluginType": "platform",
"footerDisplay": "Homebridge plugin for Playstation 4/5 consoles.",
"singular": true,
"schema": {
"type": "object",
Expand All @@ -9,7 +10,31 @@
"title": "Poll Interval",
"type": "integer",
"default": 5000,
"description": "Determine how often should device informations be fetched (in milliseconds)"
"description": "Determine how often should device information be fetched (in milliseconds)"
},
"apps": {
"title": "List of applications you can control.",
"description": "A list of playstation games. You can find them here <a href=\"https://serialstation.com\" target=\"_blank\">serialstation.com</a> or use `playactor check` to get information about the running title.",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"title": "Title ID",
"type": "string",
"placeholder": "CUSA12345",
"required": true,
"minLength": 8
},
"name": {
"title": "Application Name",
"type": "string",
"placeholder": "Fortnite (shown in Home app)",
"required": true,
"minLength": 2
}
}
}
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions nodemon.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
"exec": "tsc && homebridge -I -D",
"signal": "SIGTERM",
"env": {
"NODE_OPTIONS": "--trace-warnings"
"NODE_OPTIONS": "--trace-warnings --inspect"
}
}
}
Loading

0 comments on commit de84154

Please sign in to comment.