Skip to content
This repository was archived by the owner on Dec 23, 2021. It is now read-only.

Bug Fix for different values of Pressure on Python and React-side #322

Merged
merged 2 commits into from
Apr 13, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/clue/adafruit_clue.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def __init__(self):
self.__state[CONSTANTS.CLUE_STATE.PROXIMITY] = 0
self.__state[CONSTANTS.CLUE_STATE.GESTURE] = ""
self.__state[CONSTANTS.CLUE_STATE.HUMIDITY] = 0
self.__state[CONSTANTS.CLUE_STATE.PRESSURE] = 0
self.__state[CONSTANTS.CLUE_STATE.PRESSURE] = 1013
self.__state[CONSTANTS.CLUE_STATE.PIXEL] = neopixel.NeoPixel(
pin=CONSTANTS.CLUE_PIN, n=1, pixel_order=neopixel.RGB
)
Expand Down