mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-21 10:26:06 +03:00
Accept both named constant and ADC channel number in analogRead (#1766)
This commit is contained in:
parent
652703ef41
commit
5227b32531
@ -26,8 +26,10 @@
|
|||||||
#include "pins_arduino.h"
|
#include "pins_arduino.h"
|
||||||
|
|
||||||
|
|
||||||
extern int __analogRead(uint8_t pin) {
|
extern int __analogRead(uint8_t pin)
|
||||||
if(pin == 17){
|
{
|
||||||
|
// accept both A0 constant and ADC channel number
|
||||||
|
if(pin == 17 || pin == 0) {
|
||||||
return system_adc_read();
|
return system_adc_read();
|
||||||
}
|
}
|
||||||
return digitalRead(pin) * 1023;
|
return digitalRead(pin) * 1023;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user