| 653 | } |
| 654 | |
| 655 | uint16_t GoPiGo3::get_grove_analog(uint8_t pin){ |
| 656 | uint16_t value; |
| 657 | get_grove_analog(pin, value); |
| 658 | return value; |
| 659 | } |
| 660 | |
| 661 | int GoPiGo3::get_grove_analog(uint8_t pin, uint16_t &value){ |
| 662 | value = 0; |
nothing calls this directly
no test coverage detected