mirror of
https://github.com/thelsing/knx.git
synced 2025-01-21 00:05:43 +01:00
Datapoints ending in .0 are invalid (#91)
Change the datapoints types to 1.1, 1.2 or 1.3 to match the requirements (no dpt *.0) in dpt.cpp
This commit is contained in:
parent
aabc61dc3b
commit
241e04330d
@ -39,9 +39,9 @@ void setup()
|
||||
{
|
||||
// register callback for reset GO
|
||||
goSwitch.callback(switchCallback);
|
||||
goSwitch.dataPointType(Dpt(1, 0));
|
||||
goBlock.dataPointType(Dpt(1, 0));
|
||||
goStatus.dataPointType(Dpt(1, 0));
|
||||
goSwitch.dataPointType(Dpt(1, 1));
|
||||
goBlock.dataPointType(Dpt(1, 3));
|
||||
goStatus.dataPointType(Dpt(1, 2));
|
||||
}
|
||||
|
||||
// start the framework. Will get wifi first.
|
||||
|
Loading…
Reference in New Issue
Block a user