summaryrefslogtreecommitdiff
path: root/tests/ports/stm32/dac.py
blob: 506cf272b3179c579a9cec8f12c424b12e856ce2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import pyb

if not hasattr(pyb, "DAC"):
    print("SKIP")
    raise SystemExit

dac = pyb.DAC(1)
print(dac)
dac.noise(100)
dac.triangle(100)
dac.write(0)
dac.write_timed(bytearray(10), 100, mode=pyb.DAC.NORMAL)
pyb.delay(20)
dac.write(0)

# test buffering arg
dac = pyb.DAC(1, buffering=True)
dac.write(0)