Skip to content

Commit 659b8fc

Browse files
remove artifical delay
1 parent 941f29e commit 659b8fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

PicoAnalogCorrection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ void PicoAnalogCorrection::returnCalibrationValues() {
5353

5454
int PicoAnalogCorrection::analogRead(size_t pin) {
5555
digitalWrite(PS_PIN, HIGH); // Disable power-saving
56-
delayMicroseconds(2); // Cooldown, maybe useless?
56+
//delayMicroseconds(2); // Cooldown for the converter to stabilize?
5757

5858
int value = ::analogRead(pin); // Use normal Arduino analogRead func
5959

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=PicoAnalogCorrection
2-
version=1.2.0
2+
version=1.2.1
33
author=Phoenix1747
44
maintainer=Phoenix1747
55
sentence=Arduino library to calibrate and improve ADC measurements with the Raspberry Pi Pico.

0 commit comments

Comments
 (0)