analogdevicesinc / arduino-max326xx

Arduino core for Maxim's MAX326xx series boards
Other
0 stars 0 forks source link

How to change pin voltage of MAX32630FTHR? #16

Closed idea--list closed 2 years ago

idea--list commented 3 years ago

Hi there,

I noticed most pins have a voltage of about 0.01V which is simply not enough to drive any wings. In Mbed OS i start all my programs by MAX32630FTHR pegasus(MAX32630FTHR::VIO_3V3); to set all the pins to 3.3V.

What is the equivalent for that line with this Arduino core?

khariya commented 3 years ago

useVDDIOH(pin) will set pin to 3.3v. Please see API page for details.

idea--list commented 2 years ago

Thanks!