// Lighting Module for f-18 Fighter Jet Diorama
// V 1.0
// GOAL: Have the diorama show realistic lighting effects on the F-18 jet.
// The rotary encoder is used to make changes to the lighting via
// SSD1306 0.96" OLED display. The user navigates a menu system to
// make changes to each LED, such as On/Off, brightness, flashing at
// one-flash or two-flash rate. The settings should be automatically
// saved every 5 seconds. It should check for changes to variables
// and only save when changes are detected to lower read/write to EEPROM.
//
// LED 1 = Nose landing gear - white
// LED 2 = Cockpit - green
// LED 3 = Top of fuselage - red
// LED 4 = Left wing pylon - red
// LED 5 = Right wing pylon - green
// LED 6 = Left tail vertical stabilizer - red
//
// INCLUDES
#include <EncoderButton.h>
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}