Skip to content

Commit 9198bee

Browse files
committed
Remove remaining debug prints
1 parent 91b4984 commit 9198bee

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/components/analogIO/Wippersnapper_AnalogIO.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -211,13 +211,8 @@ void Wippersnapper_AnalogIO::deinitAnalogPin(
211211
uint16_t Wippersnapper_AnalogIO::getPinValue(int pin) {
212212
// get pin value
213213
uint16_t value = analogRead(pin);
214-
WS_DEBUG_PRINT("Analog Pin (#");
215-
WS_DEBUG_PRINT(pin);
216-
WS_DEBUG_PRINT(") read: ");
217-
WS_DEBUG_PRINTLN(value);
218214
// scale by the ADC resolution manually if not implemented by BSP
219215
if (scaleAnalogRead) {
220-
WS_DEBUG_PRINTLN("Scaling analog read value...");
221216
if (getADCresolution() > getNativeResolution()) {
222217
value = value << (getADCresolution() - getNativeResolution());
223218
} else {

0 commit comments

Comments
 (0)