This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //including headers Nick Nahrwold and Addison Painting | |
| #include "FEHUtility.h" | |
| #include "FEHLCD.h" | |
| #include "FEHImages.h" | |
| #include "FEHKeyboard.h" | |
| #include <FEHRandom.h> | |
| #include <stdio.h> | |
| #include "FEHSound.h" | |
| //Creating a class so all the data can be shared |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "FEHUtility.h" | |
| #include "FEHLCD.h" | |
| #include "FEHImages.h" | |
| #include "FEHKeyboard.h" | |
| #include <FEHRandom.h> | |
| void Game(); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "HX711.h" | |
| #include <Wire.h> | |
| #include <Adafruit_GFX.h> | |
| #include <Adafruit_SSD1306.h> | |
| // HX711 wiring | |
| const int LOADCELL_DOUT_PIN = 2; | |
| const int LOADCELL_SCK_PIN = 3; | |
| HX711 scale; |