Skip to content

Commit

Permalink
Change default values to numeric.
Browse files Browse the repository at this point in the history
Fixes #98
Add output folder to .gitignore.
  • Loading branch information
MiSchroe committed Nov 8, 2022
1 parent 5601093 commit 45711d5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,6 +2,7 @@
.idea
node_modules
nbproject
build/

# Sourcemaps
maps/
Expand Down
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -217,6 +217,7 @@ The following devices are defined:
- (Michael Schroeder) Upgrade dependencies, switch to Typescript 4.6, compatibility check with js-controller 4.x
- (Michael Schroeder) [#12](https://github.com/MiSchroe/ioBroker.klf200/issues/12) Support silent mode in scenes
- (Michael Schroeder) [#44](https://github.com/MiSchroe/ioBroker.klf200/issues/44) Add advanced SSL configuration settings
- (Michael Schroeder) [#98](https://github.com/MiSchroe/ioBroker.klf200/issues/98) Fix default values

### 1.0.1 (2020-07-20)

Expand Down
9 changes: 4 additions & 5 deletions src/setup.ts
Expand Up @@ -203,7 +203,7 @@ export class Setup implements Disposable {
name: "HardwareVersion",
role: "value",
type: "number",
def: "",
def: 0,
read: true,
write: false,
desc: "Hardware version number",
Expand All @@ -219,7 +219,7 @@ export class Setup implements Disposable {
name: "ProductGroup",
role: "value",
type: "number",
def: "",
def: 0,
read: true,
write: false,
desc: "Product group",
Expand All @@ -235,7 +235,7 @@ export class Setup implements Disposable {
name: "ProductType",
role: "value",
type: "number",
def: "",
def: 0,
read: true,
write: false,
desc: "Product type",
Expand Down Expand Up @@ -308,8 +308,7 @@ export class Setup implements Disposable {
type: "boolean",
read: false,
write: true,
desc:
"Reboot the gateway (this one only works, if there is still a connection to the gateway possible)",
desc: "Reboot the gateway (this one only works, if there is still a connection to the gateway possible)",
},
{},
false,
Expand Down

0 comments on commit 45711d5

Please sign in to comment.