Page 1 of 1

ZUNO_SETUP_DEBUG_MODE() missing ?

Posted: 31 Oct 2017 15:30
by pjpankhurst
Hi

ZUNO_SETUP_DEBUG_MODE(DEBUG_ON);

produces the following error:

use of undeclared identifier 'ZUNO_SETUP_DEBUG_MODE'

I've checked through the header files and can only find ZUNO_DEBUG_ON()

Has the name of this changed, or is there a macro missing?

Cheers
Paul

Re: ZUNO_SETUP_DEBUG_MODE() missing ?

Posted: 02 Nov 2017 08:21
by p0lyg0n1
This have to work in the sketch file:

Code: Select all

// --- beginning of the file
ZUNO_SETUP_DEBUG_MODE(TRUE);
// ...
ZUNO_SETUP_CHANNELS(...);

Re: ZUNO_SETUP_DEBUG_MODE() missing ?

Posted: 02 Nov 2017 12:27
by pjpankhurst
I just tried adding the exact same line of code today and it compile fine - weird !