ECE2035 Project 2

Dependencies:   mbed mbed-rtos SDFileSystem

Committer:
kwengryn3
Date:
Wed Apr 07 13:26:44 2021 +0000
Revision:
4:8e15742ebcc6
Parent:
0:bff8b9020128
Child:
5:b9b7993823e1
update;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
kwengryn3 0:bff8b9020128 1 //=================================================================
kwengryn3 0:bff8b9020128 2 // The header file is for module "compost pile"
kwengryn3 0:bff8b9020128 3 //
kwengryn3 0:bff8b9020128 4 // Copyright 2020 Georgia Tech. All rights reserved.
kwengryn3 0:bff8b9020128 5 // The materials provided by the instructor in this course are for
kwengryn3 0:bff8b9020128 6 // the use of the students currently enrolled in the course.
kwengryn3 0:bff8b9020128 7 // Copyrighted course materials may not be further disseminated.
kwengryn3 0:bff8b9020128 8 // This file must not be made publicly available anywhere.
kwengryn3 0:bff8b9020128 9 //=================================================================
kwengryn3 0:bff8b9020128 10 #ifndef COMPOST_PILE_PRIVATE_H
kwengryn3 0:bff8b9020128 11 #define COMPOST_PILE_PRIVATE_H
kwengryn3 0:bff8b9020128 12
kwengryn3 0:bff8b9020128 13 #include "mbed.h"
kwengryn3 0:bff8b9020128 14 #include "globals.h"
kwengryn3 0:bff8b9020128 15 #include "compost_pile_public.h"
kwengryn3 0:bff8b9020128 16
kwengryn3 0:bff8b9020128 17 //==== [private type] ====
kwengryn3 0:bff8b9020128 18 // N/A
kwengryn3 0:bff8b9020128 19
kwengryn3 0:bff8b9020128 20
kwengryn3 0:bff8b9020128 21 //==== [private function] ====
kwengryn3 0:bff8b9020128 22 // N/A
kwengryn3 0:bff8b9020128 23
kwengryn3 0:bff8b9020128 24
kwengryn3 0:bff8b9020128 25 //==== [private macros] ====
kwengryn3 0:bff8b9020128 26
kwengryn3 0:bff8b9020128 27
kwengryn3 0:bff8b9020128 28 //==== [private settings] ====
kwengryn3 0:bff8b9020128 29 // You could modify these settings, but try to keep them be used only inside compost_pile.cpp
kwengryn3 0:bff8b9020128 30 // Here are the settings to define the looking of your compost pile
kwengryn3 0:bff8b9020128 31 #define COMPOST_TO_SCREEN_MARGIN 25 // pixel on the screen
kwengryn3 0:bff8b9020128 32 #define COMPOST_WIDTH 121 // pixel on the screen
kwengryn3 0:bff8b9020128 33 #define PILE_WIDTH 11 // pixel on the screen
kwengryn3 0:bff8b9020128 34 #define NUM_PILE (COMPOST_WIDTH/PILE_WIDTH)
kwengryn3 0:bff8b9020128 35
kwengryn3 0:bff8b9020128 36 #endif //COMPOST_PILE_PRIVATE_H