I used getMilliVolts() function to read voltage of DIFF_0_1 and it works well but it needs totally 257ms. ???
Does this function need long execution time?
How can I use getMilliVoltsNoWait() function ?
I can't understand parameters, (uint8_t pin_drdy, double &volts)
double Vtc1 = 0;
int drdy = 50; // PB3
bool b_return = getMilliVoltsNoWait(drdy, &Vtc1); // it makes error in compiling.
Hello~
Arduino mega (ATmega2560)
I used getMilliVolts() function to read voltage of DIFF_0_1 and it works well but it needs totally 257ms. ??? Does this function need long execution time?
How can I use getMilliVoltsNoWait() function ? I can't understand parameters, (uint8_t pin_drdy, double &volts)
double Vtc1 = 0; int drdy = 50; // PB3 bool b_return = getMilliVoltsNoWait(drdy, &Vtc1); // it makes error in compiling.
Anybody help~