Skip to content

Commit

Permalink
release 0.6.0 with CEN/CEN+
Browse files Browse the repository at this point in the history
  • Loading branch information
mvalla committed Oct 16, 2021
1 parent bbc8879 commit 5c409c8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
5 changes: 1 addition & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
# Changelog

## [0.6.0-SNAPSHOT] - 2021-??-??

### Changed
- todo
## [0.6.0] - 2021-10-16

### Added
- Support for CEN and CEN+ (WHO=15/25)
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Supported frames:
* `WHO=2` Automation
* `WHO=4` Thermoregulation
* `WHO=13` Gateway Management
* `WHO=15 & 25` CEN/CEN+ scenarios
* `WHO=18` Energy Management

Supported Open Web Net gateways:
Expand All @@ -30,7 +31,7 @@ Supported Open Web Net gateways:
- Add other `WHOs`
- [x] Energy
- [x] Thermo (standalone mode)
- [ ] CEN/CEN+
- [x] CEN/CEN+
- [ ] Thermo (systems with 4 and 99 Central Units)
- [ ] AUX
- [ ] add sendHighPriority with priority queue
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>io.github.openwebnet4j</groupId>
<artifactId>openwebnet4j</artifactId>
<version>0.6.0-SNAPSHOT</version>
<version>0.6.0</version>
<packaging>jar</packaging>

<name>openwebnet4j OpenWebNet Java library</name>
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/org/openwebnet4j/message/CENPlusScenario.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ public static CENPlusScenario requestStatus(String where) {
* Verify OpenWebNet message if Dry Contact/IR is ON (WHAT=31).
*
* @return true if Dry Contact/IR is ON
* @throws FrameException in case of invalid frame
*/
public boolean isOn() throws FrameException {
if (getWhat() == null) {
Expand All @@ -140,6 +141,7 @@ public boolean isOn() throws FrameException {
* Verify OpenWebNet message if Dry Contact/IR is OFF (WHAT=32).
*
* @return true if Dry Contact/IR is OFF
* @throws FrameException in case of invalid frame
*/
public boolean isOff() throws FrameException {
if (getWhat() == null) {
Expand Down

0 comments on commit 5c409c8

Please sign in to comment.