Update NeoUtil.h (#730)

This commit is contained in:
Michael Miller
2023-08-12 08:20:58 -07:00
committed by GitHub
parent 46b24fec9a
commit 7d2a5d2580

View File

@@ -46,6 +46,16 @@ License along with NeoPixel. If not, see
#define countof(array) (sizeof(array)/sizeof(array[0]))
#endif
// some platforms do not define this standard pin name for some reason and use alternatives
//
#ifndef NOT_A_PIN
#ifdef PIN_NOT_A_PIN
#define NOT_A_PIN PIN_NOT_A_PIN
#endif
#endif
class NeoUtil
{
private: