error
)
})
- const txUpdatedInterval = this.getTxUpdatedInterval(chargingStation)
+ const txUpdatedInterval = OCPP20ServiceUtils.getTxUpdatedInterval(chargingStation)
chargingStation.startTxUpdatedInterval(connectorId, txUpdatedInterval)
}
}
for (const [cId, connector] of evseStatus.connectors) {
if (connector.transactionId == null) continue
hasSentTransactionEvent = true
- const txUpdatedInterval = this.getTxUpdatedInterval(chargingStation)
+ const txUpdatedInterval = OCPP20ServiceUtils.getTxUpdatedInterval(chargingStation)
const meterValue = buildMeterValue(
chargingStation,
cId,
chargingStation,
fallbackEvseId > 0 ? fallbackEvseId : 1,
0,
- this.getTxUpdatedInterval(chargingStation)
+ OCPP20ServiceUtils.getTxUpdatedInterval(chargingStation)
) as OCPP20MeterValue
} catch {
meterValue = {
return state
}
- private getTxUpdatedInterval (chargingStation: ChargingStation): number {
- return OCPP20ServiceUtils.getTxUpdatedInterval(chargingStation)
- }
-
private handleConnectorChangeAvailability (
chargingStation: ChargingStation,
evseId: number,