| batterylevel | Number | State of the battery in % | Yes |
| batterystatusupdated | DateTime | Timestamp of the last battery status update | Yes |
| chargingmode | String | Charging mode. always_charging or schedule_mode | No |
+| pause | Switch | Pause the charge. | No |
| chargingstatus | String | Charging status | Yes |
| chargingremainingtime | Number:Time | Charging time remaining | Yes |
| plugstatus | String | Status of charging plug | Yes |
The "hvactargettemperature" is used by the hvacstatus ON command for pre-conditioning the car.
This seams to only allow values 19, 20 and 21 or else the pre-conditioning command will not work.
+The 'pause' and 'chargingmode' may not work on some cars.
+As an example, 'chargingmode' does not work on Dacia Spring cars.
+
The Kamereon API Key changes periodically, which causes a communication error.
To fix this error update the API Key in the bindings configuration.
The new key value can hopefully be found in the renault-api project: [KAMEREON_APIKEY value](https://github.com/hacf-fr/renault-api/blob/main/src/renault_api/const.py) or in the openHAB forums.
Default icon="poweroutlet" item=RenaultCar_PlugStatus
Default icon="switch" item=RenaultCar_ChargingStatus
Selection icon="switch" item=RenaultCar_ChargingMode mappings=[SCHEDULE_MODE="Schedule mode",ALWAYS_CHARGING="Instant charge"]
+ Default icon="switch" item=RenaultCar_Pause
Default item=RenaultCar_ChargingTimeRemaining
Default icon="pressure" item=RenaultCar_EstimatedRange
Default icon="pressure" item=RenaultCar_Odometer
public static final String CHANNEL_BATTERY_LEVEL = "batterylevel";
public static final String CHANNEL_BATTERY_STATUS_UPDATED = "batterystatusupdated";
public static final String CHANNEL_CHARGING_MODE = "chargingmode";
+ public static final String CHANNEL_PAUSE = "pause";
public static final String CHANNEL_CHARGING_STATUS = "chargingstatus";
public static final String CHANNEL_CHARGING_REMAINING_TIME = "chargingremainingtime";
public static final String CHANNEL_ESTIMATED_RANGE = "estimatedrange";
private boolean disableHvac = false;
private boolean disableLockStatus = false;
+ private boolean pausemode = false;
private ChargingStatus chargingStatus = ChargingStatus.UNKNOWN;
private ChargingMode chargingMode = ChargingMode.UNKNOWN;
private PlugStatus plugStatus = PlugStatus.UNKNOWN;
return chargingMode;
}
+ public boolean getPauseMode() {
+ return pausemode;
+ }
+
public @Nullable Integer getChargingRemainingTime() {
return chargingRemainingTime;
}
}
}
+ public void setPauseMode(boolean pausemode) {
+ this.pausemode = pausemode;
+ }
+
private @Nullable JsonObject getAttributes(JsonObject responseJson)
throws IllegalStateException, ClassCastException {
if (responseJson.get("data") != null && responseJson.get("data").getAsJsonObject().get("attributes") != null) {
"{\"data\":{\"type\":\"ChargeMode\",\"attributes\":{\"action\":\"" + apiMode + "\"}}}");
}
+ public void actionPause(boolean mode)
+ throws RenaultForbiddenException, RenaultNotImplementedException, RenaultActionException {
+
+ final String apiMode = mode ? "pause" : "resume";
+ final String path = "/commerce/v1/accounts/" + kamereonaccountId + "/kamereon/kcm/v1/vehicles/" + config.vin
+ + "/charge/pause-resume?country=" + getCountry(config);
+ postKamereonRequest(path,
+ "{\"data\":{\"type\":\"ChargePauseResume\",\"attributes\":{\"action\":\"" + apiMode + "\"}}}");
+ }
+
private void postKamereonRequest(final String path, final String content)
throws RenaultForbiddenException, RenaultNotImplementedException, RenaultActionException {
Request request = httpClient.newRequest(this.constants.getKamereonRootUrl() + path).method(HttpMethod.POST)
}
}
break;
+ case RenaultBindingConstants.CHANNEL_PAUSE:
+ if (command instanceof RefreshType) {
+ reschedulePollingJob();
+ } else if (command instanceof OnOffType) {
+ try {
+ MyRenaultHttpSession httpSession = new MyRenaultHttpSession(this.config, httpClient);
+ try {
+ boolean pause = OnOffType.ON == command;
+ httpSession.initSesssion(car);
+ httpSession.actionPause(pause);
+ car.setPauseMode(pause);
+ updateState(CHANNEL_PAUSE, OnOffType.from(command.toString()));
+ } catch (InterruptedException e) {
+ logger.warn("Error My Renault Http Session.", e);
+ Thread.currentThread().interrupt();
+ } catch (RenaultForbiddenException | RenaultNotImplementedException | RenaultActionException
+ | RenaultException | RenaultUpdateException | ExecutionException | TimeoutException e) {
+ logger.warn("Error during action set pause.", e);
+ updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR, e.getMessage());
+ }
+ } catch (IllegalArgumentException e) {
+ logger.warn("Invalid Pause Mode {}.", command.toString());
+ return;
+ }
+ }
+ break;
default:
if (command instanceof RefreshType) {
reschedulePollingJob();
channel-type.renault.chargingmode.state.option.UNKNOWN = Unknown
channel-type.renault.chargingmode.state.option.SCHEDULE_MODE = Schedule mode
channel-type.renault.chargingmode.state.option.ALWAYS_CHARGING = Instant charge
+channel-type.renault.pause.label = Pause
channel-type.renault.chargingremainingtime.label = Charging Time Remaining
channel-type.renault.chargingstatus.label = Charging Status
channel-type.renault.chargingstatus.state.option.NOT_IN_CHARGE = Not charging
<channel id="plugstatus" typeId="plugstatus"/>
<channel id="chargingstatus" typeId="chargingstatus"/>
<channel id="chargingmode" typeId="chargingmode"/>
+ <channel id="pause" typeId="pause"/>
<channel id="chargingremainingtime" typeId="chargingremainingtime"/>
<channel id="estimatedrange" typeId="estimatedrange"/>
<channel id="odometer" typeId="odometer"/>
</options>
</state>
</channel-type>
+ <channel-type id="pause">
+ <item-type>Switch</item-type>
+ <label>Pause Charge</label>
+ <description>Pause or resume the charge.</description>
+ <state readOnly="false"></state>
+ </channel-type>
<channel-type id="chargingremainingtime">
<item-type>Number:Time</item-type>
<label>Charging Time Remaining</label>