У меня есть пример кода, и я хочу напечатать переменные в журнале, в частности, переменную с именем &results
Я написал строку в коде в конце void loop()
, чтобы напечатать переменную для последовательной печати. вне.
Это не полный код, а большой сегмент, по крайней мере.
{
Serial.begin(9600);
Serial.println("IR Receiver Button Decode");
irrecv.enableIRIn(); // Start the receiver
}/*--(end setup )---*/
void loop() /*----( LOOP: RUNS CONSTANTLY )----*/
{
if (irrecv.decode(&results)) // have we received an IR signal? &results is
the variable
Serial.println(&results) //<-- My line of code
{
translateIR();
irrecv.resume(); // receive the next value
}
}/* --(end main loop )-- */
Я ожидал, что вывод будет содержимым переменной, но во время компиляции он выдох no matching function for call to "println(decode_results*)"
.