Page 1 of 1

STM32F103C8 Input Capture

Posted: Fri Aug 07, 2020 2:34 am
by fliozzi
Hello, could you help me with configuring input capture modules on STM32 blue pill using STM32duino. Thank you.

Re: STM32F103C8 Input Capture

Posted: Fri Aug 07, 2020 4:05 am
by ag123
there is a good ADC on stm32

Code: Select all

uint16_t value = analogRead(PA0);
Serial.print("read value: ");
Serial.println(value);