example: print power factor

This commit is contained in:
Thomas Kolb 2020-01-19 17:46:55 +01:00
parent 01cc1ed9b7
commit 2f13d6f6a5
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ while True:
socket.getStatus()
socket.setStatus(True)
print("=== {} ({}) ===".format(socket.mac_address, "on" if socket.powered else "off"))
print("\t{}V {}A → {}W@{}Hz".format(socket.voltage, socket.current, socket.power, socket.frequency))
print("\t{}V {}A → {}W@{}Hz (PF: {})".format(socket.voltage, socket.current, socket.power, socket.frequency, socket.power_factor))
except (SEMSocket.NotConnectedException, bluepy.btle.BTLEDisconnectError):
print("Restarting...")
if socket != None: