Closed schweigel closed 4 years ago
The problem is that javascript uses 0...11 for the month and Wolf uses 1...12 for the month. Das Problem ist das javascript für den Monat 0...11 verwendet und Wolf verwendet 1...12 für den Monat.
File/Datei: decoder.js
function/Funktion: Decoder.prototype.decodeDPT11 = function (buffer)
Solution/Lösung:
var mon = buffer[1] & 0xf - 1; // month 0...11
Fixed
All values with format DPT_Date have a wrong interpreted month. Alle Werte mit dem Format DPT_Date haben einen falsch interpretierten Monat.