1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-04-24 05:51:20 +02:00

Compare commits

..

1 Commits

View File

@ -145,7 +145,7 @@ int * ADCee::analogvals = NULL;
int16_t ADCee::ADCmax()
{
return 4095;
return 1023;
}
AdvancedADC adc;
@ -155,8 +155,8 @@ int num_active_pins = 4;
const int samples_per_round = 512;
int ADCee::init(uint8_t pin) {
adc.stop();
if (pin >= A0 && pin <= A3) adc.begin(AN_RESOLUTION_12, 16000, 1, samples_per_round, num_active_pins, active_pins);
else if (pin >= A4 && pin <= A7) adc.begin(AN_RESOLUTION_12, 16000, 1, samples_per_round, num_active_pins, active_pinsB);
if (pin >= A0 && pin <= A3) adc.begin(AN_RESOLUTION_10, 16000, 1, samples_per_round, num_active_pins, active_pins);
else if (pin >= A4 && pin <= A7) adc.begin(AN_RESOLUTION_10, 16000, 1, samples_per_round, num_active_pins, active_pinsB);
return 123;
}