summaryrefslogtreecommitdiff
path: root/tests/pyb/dac.py
blob: ca68ec7098c5dcd01221041c7ec6cd0337a19e54 (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)