baseline features - a little buggy

Dependencies:   mbed wave_player 4DGL-uLCD-SE MMA8452

Revision:
0:95264f964374
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compost_pile_private.h	Mon Mar 29 21:17:26 2021 -0400
@@ -0,0 +1,37 @@
+//=================================================================
+// The header file is for module "compost pile"
+//
+// Copyright 2020 Georgia Tech.  All rights reserved.
+// The materials provided by the instructor in this course are for
+// the use of the students currently enrolled in the course.
+// Copyrighted course materials may not be further disseminated.
+// This file must not be made publicly available anywhere.
+//=================================================================
+#ifndef COMPOST_PILE_PRIVATE_H
+#define COMPOST_PILE_PRIVATE_H
+
+#include "mbed.h"
+#include "globals.h"
+#include "compost_pile_public.h"
+
+//==== [private type] ====
+// N/A
+
+
+//==== [private function] ====
+// N/A
+
+
+//==== [private macros] ====
+
+
+//==== [private settings] ====
+// You could modify these settings, but try to keep them be used only inside compost_pile.cpp
+// Here are the settings to define the looking of your compost pile
+#define COMPOST_TO_SCREEN_MARGIN 25 // pixel on the screen
+#define COMPOST_WIDTH 121 // pixel on the screen
+#define PILE_WIDTH 11 // pixel on the screen
+#define NUM_PILE (COMPOST_WIDTH/PILE_WIDTH)
+#define PILE_COLOR 0x00FF00
+
+#endif //COMPOST_PILE_PRIVATE_H
\ No newline at end of file