void test(uint8_t aTest){
Serial.print("Test value uint8_t - ");
Serial.println(aTest);
(void)aTest;
Serial.print("Test value void - ");
Serial.println(aTest);
}
void testCh(char* aChTest){
Serial.print("Test value char* - ");
Serial.println(aChTest);
(void)aChTest;
Serial.print("Test value void - ");
Serial.println(aChTest);
}
void setup() {
Serial.begin(115200);
String Test = "la"
test(5);
testCh("Test char -> void");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}