Robbie Huey / Mbed 2 deprecated baseline

Dependencies:   mbed wave_player 4DGL-uLCD-SE MMA8452

Revision:
0:95264f964374
Child:
1:4421c1e849e9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compost_pile.cpp	Mon Mar 29 21:17:26 2021 -0400
@@ -0,0 +1,40 @@
+//=================================================================
+// The 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.
+//==================================================================
+
+#include "compost_pile_private.h"
+
+COMPOST compost_record[NUM_PILE];
+int tallest_pile_height;
+
+
+// See the comments in compost_pile_public.h
+void compost_pile_init() {
+
+}
+
+COMPOST compost_get_info(int index){
+
+}
+
+void compost_add(int index) {
+
+}
+
+void draw_compost(void){
+
+}
+
+int get_compost_tallest_height() {
+
+}
+
+int get_compost_height(int index) {
+
+}
\ No newline at end of file