Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MB7369 fixup #57

Merged
merged 2 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
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 library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=CLAIRE
version=0.1.14
version=0.1.15
author=Falke Carlsen <[email protected]>
maintainer=Falke Carlsen <[email protected]>
sentence=API to interface with CLAIRE water management demonstrator at DEIS-AAU.
Expand Down
2 changes: 1 addition & 1 deletion py_driver/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

IMMEDIATE_OUTPUT = True
TAG = "DRIVER:"
CLAIRE_VERSION = "v0.1.14"
CLAIRE_VERSION = "v0.1.15"
CLAIRE_READY_SIGNAL = "CLAIRE-READY"
TUBE_MAX_LEVEL = 900
DEBUG = True
Expand Down
2 changes: 1 addition & 1 deletion src/Claire.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ bool Claire::begin() {
if (sensors[i].pin == -1) {
Serial.println("ERROR: Sensor PWM pin unset for resource: " + String(sensors[i].name) + " pin: " + String(sensors[i].pin));
} else {
pinMode(sensors[i].pin, INPUT);
pinMode(sensors[i].pin, INPUT_PULLUP);
}

}
Expand Down
2 changes: 1 addition & 1 deletion src/Claire.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <Arduino.h>
#include <EEPROM.h>

#define VERSION "0.1.14"
#define VERSION "0.1.15"

#define OUTPUT_GPIO_MIN 2
#define OUTPUT_GPIO_MAX 7
Expand Down
Loading