tenbaht / sduino

An Arduino-like programming API for the STM8
http://tenbaht.github.io/sduino/
GNU Lesser General Public License v2.1
347 stars 213 forks source link

Cannot get PC5 to be high #149

Open rasil1127 opened 1 year ago

rasil1127 commented 1 year ago

I have repeatedly tried to make PC5 high and it's not working.. other pins function properly.

`

include

void setup() { pinMode(7, OUTPUT); }

void loop(){ digitalWrite(7, HIGH); } `