Skip to content

Commit

Permalink
Use more sound channels on the Gamebuino META, and show how many in t…
Browse files Browse the repository at this point in the history
…he debug output.
  • Loading branch information
alxm committed May 25, 2018
1 parent 87b5384 commit fce9746
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DefendPluto/config-gamebuino.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define FOLDER_NAME "DefendPluto"
#define DISPLAY_MODE DISPLAY_MODE_RGB565
#define SOUND_CHANNELS 2
#define SOUND_CHANNELS 32
#define SOUND_FREQ 11025
2 changes: 2 additions & 0 deletions DefendPluto/platform_meta.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ void loop(void)
gb.display.print(gb.getCpuLoad(), DEC);
gb.display.setCursor(2, 8);
gb.display.print(gb.getFreeRam(), DEC);
gb.display.setCursor(2, 14);
gb.display.print(SOUND_CHANNELS, DEC);
#endif
}

Expand Down

0 comments on commit fce9746

Please sign in to comment.