Skip to content

Commit

Permalink
Update m5stickc-listener.ino
Browse files Browse the repository at this point in the history
Final touch before PR.
  • Loading branch information
Jocke4f committed Jan 24, 2025
1 parent 0401336 commit be89ed1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions listener_clients/m5stickc-listener/m5stickc-listener.ino
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,21 @@
#if defined(STICK_C_PLUS2)
#include <M5StickCPlus2.h>
#if defined(STICK_C) || defined(STICK_C_PLUS)
#error "Multiple board defines"
#error "Multiple m5stick boards types defined"
#endif
#endif

#if defined(STICK_C_PLUS)
#include <M5StickCPlus.h>
#if defined(STICK_C) || defined(STICK_C_PLUS2)
#error "Multiple board defines"
#error "Multiple m5stick boards types defined"
#endif
#endif

#if defined(STICK_C)
#include <M5StickC.h>
#if defined(STICK_C_PLUS) || defined(STICK_C_PLUS2)
#error "Multiple defboard definesines"
#error "Multiple m5stick boards types defined"
#endif
#endif

Expand Down

0 comments on commit be89ed1

Please sign in to comment.