Skip to content

Commit

Permalink
Capitalize “TV”
Browse files Browse the repository at this point in the history
  • Loading branch information
dnicolson committed Oct 24, 2023
1 parent 344fc59 commit f09eece
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,37 +225,37 @@ You need to put the PSK entered in your tv also in your config.json.

| **Attributes** | **Required** | **Usage** | **Default** | **Options** |
|----------------|--------------|-----------|-------------|-------------|
| inputs.name | **X** | Name for the channel to display in the tv inputs list
| inputs.name | **X** | Name for the channel to display in the TV inputs list
| inputs.identifier | **X** | Exact name of the input (eg HDMI 1)
| inputs.source | **X** | Type of the tv input | | `cec`, `component`, `composite`, `hdmi`, `scart`, `widi`

## Options TV Apps

| **Attributes** | **Required** | **Usage** | **Default** | **Options** |
|----------------|--------------|-----------|-------------|-------------|
| apps.name | **X** | Name for the application to display in the tv inputs list
| apps.name | **X** | Name for the application to display in the TV inputs list
| apps.identifier | **X** | Exact name of the Application

## Options TV Channels

| **Attributes** | **Required** | **Usage** | **Default** | **Options** |
|----------------|--------------|-----------|-------------|-------------|
| channels.name | **X** | Name for the channel to display in the tv inputs list
| channels.name | **X** | Name for the channel to display in the TV inputs list
| channels.channel | **X** | Number of the channel as seen on the TV.
| channels.source | **X** | Source of the channel. | | `dvbt`, `dvbc`, `dvbs`, `isdbt`, `isdbc`, `atsct`, `isdbs`, `analog`

## Options TV Commands

| **Attributes** | **Required** | **Usage** | **Default** | **Options** |
|----------------|--------------|-----------|-------------|-------------|
| commands.name | **X** | Name for the command to display in the tv inputs list
| commands.name | **X** | Name for the command to display in the TV inputs list
| commands.value | **X** | IRCC code or name of the command to display in Apple Home. (eg. "AAAAAQAAAAEAAABgAw==" or "PowerOff")

## Options TV Macros

| **Attributes** | **Required** | **Usage** | **Default** | **Options** |
|----------------|--------------|-----------|-------------|-------------|
| macros.name | **X** | Name for the macro to display in the tv inputs list
| macros.name | **X** | Name for the macro to display in the TV inputs list
| macros.delay | | Delay between sending commands (in ms). (Default 1000ms)
| macros.commands | **X** | An array of IRCC codes/names to perform the macro

Expand Down
8 changes: 4 additions & 4 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
"name": {
"title": "Name",
"type": "string",
"description": "Name for the channel to display in the tv inputs list",
"description": "Name for the channel to display in the TV inputs list",
"required": true
},
"identifier": {
Expand Down Expand Up @@ -216,7 +216,7 @@
"name": {
"title": "Name",
"type": "string",
"description": "Name for the application to display in the tv inputs list",
"description": "Name for the application to display in the TV inputs list",
"required": true
},
"identifier": {
Expand All @@ -238,7 +238,7 @@
"name": {
"title": "Name",
"type": "string",
"description": "Name for the channel to display in the tv inputs list",
"description": "Name for the channel to display in the TV inputs list",
"required": true
},
"channel": {
Expand Down Expand Up @@ -300,7 +300,7 @@
"name": {
"title": "Name",
"type": "string",
"description": "Name for the command to display in the tv inputs list",
"description": "Name for the command to display in the TV inputs list",
"required": true
},
"value": {
Expand Down
4 changes: 2 additions & 2 deletions homebridge-ui/ui/src/mixins/homebridge.mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default {
name: {
title: 'Name',
type: 'string',
description: 'Name for the channel to display in the tv inputs list',
description: 'Name for the channel to display in the TV inputs list',
required: true,
},
channel: {
Expand Down Expand Up @@ -256,7 +256,7 @@ export default {
name: {
title: 'Name',
type: 'string',
description: 'Name for the channel to display in the tv inputs list',
description: 'Name for the channel to display in the TV inputs list',
required: true,
},
identifier: {
Expand Down
8 changes: 4 additions & 4 deletions homebridge-ui/ui/src/utils/config.schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export default {
name: {
title: 'Name',
type: 'string',
description: 'Name for the input to display in the tv inputs list',
description: 'Name for the input to display in the TV inputs list',
required: true,
},
identifier: {
Expand All @@ -178,7 +178,7 @@ export default {
name: {
title: 'Name',
type: 'string',
description: 'Name for the application to display in the tv inputs list',
description: 'Name for the application to display in the TV inputs list',
required: true,
},
identifier: {
Expand All @@ -201,7 +201,7 @@ export default {
name: {
title: 'Name',
type: 'string',
description: 'Name for the channel to display in the tv inputs list',
description: 'Name for the channel to display in the TV inputs list',
required: true,
},
identifier: {
Expand All @@ -224,7 +224,7 @@ export default {
name: {
title: 'Name',
type: 'string',
description: 'Name for the command to display in the tv inputs list',
description: 'Name for the command to display in the TV inputs list',
required: true,
},
value: {
Expand Down

0 comments on commit f09eece

Please sign in to comment.