mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
17 lines
226 B
Python
17 lines
226 B
Python
import PikaStdLib
|
|
import STM32G0
|
|
|
|
time = STM32G0.Time()
|
|
adc1 = STM32G0.ADC()
|
|
|
|
adc1.init()
|
|
adc1.setPin('PA1')
|
|
adc1.enable()
|
|
|
|
while True:
|
|
val = adc1.read()
|
|
print('adc1 value:')
|
|
print(val)
|
|
time.sleep_ms(500)
|
|
|