Calculate power factor #10

Merged
sqozz merged 4 commits from cfr34k/sem6000:power_factor into master 2020-01-20 21:09:36 +01:00
Showing only changes of commit 2f13d6f6a5 - Show all commits

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: