Skip to content

Commit

Permalink
fixed some minor typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Bannsaenger committed Apr 26, 2024
1 parent 6623cc5 commit 284721e
Show file tree
Hide file tree
Showing 7 changed files with 2,005 additions and 4,782 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021-2023 Bannsaenger <bannsaenger@gmx.de>
Copyright (c) 2021-2024 Bannsaenger <bannsaenger@gmx.de>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ There a two acepted commands:
Placeholder for the next version (at the beginning of the line):
### **WORK IN PROGRESS**
-->
### **WORK IN PROGRESS**
* (Bannsaenger) fixed some minor typos
* (Bannsaenger) updated dependencies
* (Bannsaenger)

### 0.6.5 (2023-12-30)
* (Bannsaenger) add CHANGELOG_OLD.md

Expand Down
2 changes: 1 addition & 1 deletion lib/character_mapping.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"D": 94,
"E": 121,
"F": 113,
"G": 59,
"G": 61,
"H": 116,
"I": 17,
"J": 14,
Expand Down
13 changes: 13 additions & 0 deletions lib/objects_templates.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,19 @@
"def": 0
},
"native": {}
},
{
"_id": "deviceLocked",
"type": "state",
"common": {
"role": "value",
"name": "if set to true the device will go to the locked state, i.e. no operation of the device is possible",
"type": "boolean",
"read": true,
"write": true,
"def": false
},
"native": {}
}
],
"deviceGroup": {
Expand Down
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* iobroker x-touch Adapter
*
* Copyright (c) 2020-2023, Bannsaenger <bannsaenger@gmx.de>
* Copyright (c) 2020-2024, Bannsaenger <bannsaenger@gmx.de>
*
* MIT License
*
Expand Down Expand Up @@ -57,7 +57,7 @@ class XTouch extends utils.Adapter {
// mapping of the encoder modes to LED values
this.encoderMapping = JSON.parse(fs.readFileSync(__dirname + '/lib/encoder_mapping.json', 'utf8'));
// mapping of the characters in timecode display to 7-segment
// coding is in Siekoo-Alphabet (https://fakoo.de/siekoo/posible-siekoo.gif)
// coding is in Siekoo-Alphabet (https://fakoo.de/siekoo.html)
// not as described in Logic Control Manual
this.characterMapping = JSON.parse(fs.readFileSync(__dirname + '/lib/character_mapping.json', 'utf8'));

Expand Down
Loading

0 comments on commit 284721e

Please sign in to comment.