Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Jey-Cee committed Sep 10, 2021
1 parent 2d939b0 commit 962d586
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,13 @@ To test telegram handling create a channel with name development and in this cha
## Changelog

### **WORK IN PROGRESS**
* added EEP A5-38-08
* added Kessel Staufix Control
* added Thermokon SR-MDS Solar
* added Omnio WS-CH-102
* added PENTAIR Transmitter FTJP
* split datapoint PAE for D2-06-10 & 11 to EPA und PAE


### 0.5.3 (2021-08-08)
* fix context for sendData when called from packet handler
* fix teachin method
Expand Down
25 changes: 24 additions & 1 deletion lib/definitions/devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -1115,7 +1115,7 @@
}
}
},
"FSR61-230V": {
"FSR61-230V (>10/14)": {
"EEP": [
"TF-01-02",
"TF-14-02"
Expand All @@ -1134,6 +1134,29 @@
}
}
},
"FSR61-230V (<10/14)": {
"EEP": [
"TF-01-02",
"TF-14-02"
],
"autocreate": false,
"teachin_method": "none",
"id_offset": true,
"help": {
"en": {
"1": "Enter device ID.",
"2": "Click on 'Add Device'.",
"3": "Start teach-in mode on FSR61-230V. For more information, please read the FSR61-230V manual.",
"4": "Switch to the objects and send the command (CMD) 'Teach-in (1)', number 3."
},
"de": {
"1": "Geräte ID eintragen.",
"2": "Auf 'Gerät Hinzufügen' klicken.",
"3": "Anlernmodus am FSR61-230V starten. Für weitere informationen bitte die Anleitung des FSR61-230V lesen.",
"4": "Zu den Objekten Wechseln und den Befehl (CMD) 'Teach-in (1)', nummer 3, senden."
}
}
},
"FSR61NP-230V": {
"EEP": [
"TF-01-02",
Expand Down
2 changes: 1 addition & 1 deletion lib/tools/Packet_handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ class handleTeachIn{
await this.sendData(this.adapter, data, optionalData, 0x01);

this.adapter.log.info(`EEP A5-${FUNC}-${TYPE} detected for device with ID ${this.senderID}, manufacturer: ${MANUFACTURER}`);
new predefinedDeviceTeachIn(this.adapter, this.info.name, this.info.mfr, this.senderID)
new predefinedDeviceTeachIn(this.adapter, this.info.name, this.info.mfr, this.senderID);
//await createObjects(this, `A5-${FUNC}-${TYPE}`, MANUFACTURER);
this.adapter.setState('gateway.teachin', {val: false, ack: true});
} else if (teachinData.LRNtype === 0) {
Expand Down

0 comments on commit 962d586

Please sign in to comment.