Skip to content

Commit 968cf7f

Browse files
authored
feat: do not save current to eeprom on older firmware
2 parents f3cdbba + ff5a139 commit 968cf7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openevsehttp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ async def set_current(self, amps: int = 6) -> None:
542542
else:
543543
# RAPI commands
544544
_LOGGER.debug("Setting current via RAPI")
545-
command = f"$SC {amps}"
545+
command = f"$SC {amps} N"
546546
response = await self.send_command(command)
547547
_LOGGER.debug("Set current response: %s", response[1])
548548

0 commit comments

Comments
 (0)