It would appear that something is awry with AnalogOut on current master for the Metro M4 rev. B as well as my SAMD51G19 based board.
import analogio
import digitalio
import board
d12 = digitalio.DigitalInOut(board.D12)
d12.direction = digitalio.Direction.OUTPUT
d12.value = True
dac = analogio.AnalogOut(board.A0)
dac.value = 65535
The above should result in 3.3v on D12 and A0 however A0 shows 0v
It would appear that something is awry with AnalogOut on current master for the Metro M4 rev. B as well as my SAMD51G19 based board.
The above should result in 3.3v on D12 and A0 however A0 shows 0v