Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed wave_player 4DGL-uLCD-SE MMA8452
Diff: compost_pile.cpp
- 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