TestLib

Dependents:   STM32_Blink_LED

Committer:
jmatt
Date:
Wed Jan 09 22:26:43 2019 +0000
Revision:
0:1f1497d6e6fc
First Lib

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jmatt 0:1f1497d6e6fc 1 /** My HelloWorld class.
jmatt 0:1f1497d6e6fc 2 * Used for printing "Hello World" on USB serial.
jmatt 0:1f1497d6e6fc 3 */
jmatt 0:1f1497d6e6fc 4 class HelloWorld {
jmatt 0:1f1497d6e6fc 5 public:
jmatt 0:1f1497d6e6fc 6 /** Create HelloWorld instance */
jmatt 0:1f1497d6e6fc 7 HelloWorld();
jmatt 0:1f1497d6e6fc 8
jmatt 0:1f1497d6e6fc 9 /** Print the text */
jmatt 0:1f1497d6e6fc 10 // printIt(uint32_t delay = 0);
jmatt 0:1f1497d6e6fc 11 };