Skip to content

Commit

Permalink
fix: fixes retrieving pin history
Browse files Browse the repository at this point in the history
  • Loading branch information
Russell Green committed Jun 6, 2023
1 parent bc70842 commit f9c4767
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""
__author__ = "Russell Green"
__license__ = "MIT"
__version__ = "1.1.0"
__version__ = "1.0.1"
__maintainer__ = "Russell.Green"
__email__ = "me@rusty.green"
__status__ = "Production"
Expand Down Expand Up @@ -241,15 +241,15 @@ def set_get_pin_value(pin, value):


def get_pin_history(pin):
return gpio_pin_history[pin] or {"lastValue": None}
if pin in gpio_pin_history[pin]:
return gpio_pin_history[pin]
else:
return {"lastValue": None}


def set_pin_history(pin):
history = {"lastChange": datetime.datetime.now()}
if not gpio_pin_history[pin]:
gpio_pin_history[pin] = history

record = gpio_pin_history[pin]
record = get_pin_history(pin)
record.update(history)


Expand Down

0 comments on commit f9c4767

Please sign in to comment.