Robbie Huey / Mbed 2 deprecated baseline

Dependencies:   mbed wave_player 4DGL-uLCD-SE MMA8452

compost_pile.cpp

Committer:
DCchico
Date:
2021-03-29
Revision:
0:95264f964374
Child:
1:4421c1e849e9

File content as of revision 0:95264f964374:

//=================================================================
// 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) {

}