Skip to content

Commit 5227b32

Browse files
committed
Accept both named constant and ADC channel number in analogRead (#1766)
1 parent 652703e commit 5227b32

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed
+11-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/*
1+
/*
22
analog.c - analogRead implementation for esp8266
33
44
Copyright (c) 2015 Hristo Gochkov. All rights reserved.
55
This file is part of the esp8266 core for Arduino environment.
6-
6+
77
This library is free software; you can redistribute it and/or
88
modify it under the terms of the GNU Lesser General Public
99
License as published by the Free Software Foundation; either
@@ -17,20 +17,22 @@
1717
You should have received a copy of the GNU Lesser General Public
1818
License along with this library; if not, write to the Free Software
1919
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20-
21-
20+
21+
2222
18/06/2015 analogRead bugfix by Testato
2323
*/
2424

2525
#include "wiring_private.h"
2626
#include "pins_arduino.h"
2727

2828

29-
extern int __analogRead(uint8_t pin) {
30-
if(pin == 17){
31-
return system_adc_read();
32-
}
33-
return digitalRead(pin) * 1023;
29+
extern int __analogRead(uint8_t pin)
30+
{
31+
// accept both A0 constant and ADC channel number
32+
if(pin == 17 || pin == 0) {
33+
return system_adc_read();
34+
}
35+
return digitalRead(pin) * 1023;
3436
}
3537

3638
extern int analogRead(uint8_t pin) __attribute__ ((weak, alias("__analogRead")));

0 commit comments

Comments
 (0)