/* STM32 Blue Pill project using the STM32 Arduino Core (stm32duino) */

void setup() {
  Serial.begin(115200);
  Serial.println("STM32 analogRead() on BluePill Example");
}

void loop() {
  Serial.println(analogRead(A0));
  delay(200);
}
Loading
stm32-bluepill