mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-11 22:24:13 +01:00
9 lines
145 B
C++
9 lines
145 B
C++
|
void playMessage(prog_uchar* message){
|
||
|
|
||
|
maxStringSize = sizeof(message); // find message size
|
||
|
}
|
||
|
|
||
|
void loop() {
|
||
|
playMessage(signMessage);
|
||
|
}
|