tenbaht / sduino

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

PS/2 Library for STM8 board #91

Closed tinkerBOY-git closed 4 years ago

tinkerBOY-git commented 4 years ago

First I want to thank the author of this library for STM8 boards! It works great! My only issue is that it won't compile with available PS/2 libraries.

PS2Keyboard.h:195: syntax error: token -> 'PS2Keyboard' ; column 17

tenbaht commented 4 years ago

SDuino is based on plain C, not on C++ as the original Arduino. Since most Arduino libraries are written as a C++ class they need to be modified for use with SDuino first. Often this is not very hard, but this depends on the specific implementation.

tinkerBOY-git commented 4 years ago

SDuino is based on plain C, not on C++ as the original Arduino. Since most Arduino libraries are written as a C++ class they need to be modified for use with SDuino first. Often this is not very hard, but this depends on the specific implementation.

Thank you!