Skip to content

Commit

Permalink
Update Play/Pause status to Player channel widget (openhab#15662)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com>
  • Loading branch information
mlobstein authored and pat-git023 committed Oct 13, 2023
1 parent ff99fde commit 4dd1470
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 3 additions & 1 deletion bundles/org.openhab.binding.oppo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,9 @@ String oppo_remote_button "Remote Button [%s]" { channel="oppo:player:myoppo:rem
secondsformat.js:

```javascript
(function(totalSeconds) {
(function(timestamp) {
var totalSeconds = Date.parse(timestamp) / 1000

if (isNaN(totalSeconds)) {
return '-';
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -324,11 +324,11 @@ public void handleCommand(ChannelUID channelUID, Command command) {
}
break;
default:
logger.warn("Unknown Command {} from channel {}", command, channel);
logger.debug("Unknown command {} from channel {}", command, channel);
break;
}
} catch (OppoException e) {
logger.warn("Command {} from channel {} failed: {}", command, channel, e.getMessage());
logger.debug("Command {} from channel {} failed: {}", command, channel, e.getMessage());
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR, "Sending command failed");
closeConnection();
scheduleReconnectJob();
Expand Down Expand Up @@ -492,6 +492,8 @@ public void onNewMessageEvent(OppoMessageEvent evt) {
updateChannelState(CHANNEL_SUBTITLE_TYPE, UNDEF);
}
updateChannelState(CHANNEL_PLAY_MODE, playStatus);
updateState(CHANNEL_CONTROL,
PLAY.equals(playStatus) ? PlayPauseType.PLAY : PlayPauseType.PAUSE);

// ejecting the disc does not produce a UDT message, so clear disc type manually
if (OPEN.equals(playStatus) || NO_DISC.equals(playStatus)) {
Expand Down Expand Up @@ -716,7 +718,7 @@ private void schedulePollingJob() {
}

} catch (OppoException | InterruptedException e) {
logger.warn("Polling error: {}", e.getMessage());
logger.debug("Polling error: {}", e.getMessage());
}

// if the last event received was more than 1.25 intervals ago,
Expand Down Expand Up @@ -835,7 +837,7 @@ private void handleControlCommand(Command command) throws OppoException {
connector.sendCommand(OppoCommand.REWIND);
}
} else {
logger.warn("Unknown control command: {}", command);
logger.debug("Unknown control command: {}", command);
}
}

Expand Down

0 comments on commit 4dd1470

Please sign in to comment.