Authors: Noel Negron, Robert Pendergrast, Samuel Thomason, Derek Martinez
Galactic Laser Hunt is an engaging gaming experience that combines C and C++ programming on Arduino hardware. Players immerse themselves in an arcade-style challenge, using a laser-pointer-powered "blaster" to shoot beams of light at moving targets. These targets, equipped with laser sensors, react when the blaster hits, triggering a motor to knock them down. The player aims at the blaster, emitting a laser beam to hit moving targets equipped with sensors. Upon successful hits, the targets react by falling over, triggering the motor. An LCD screen displays the player's score in real-time. LED lights illuminate upon each successful hit, adding visual excitement.
C and C++ programming languages will be utilized to create the game logic, controls, and interactions between the player's blaster, targets, sensors, motors, and other electronic components.
//SHIP 2//
seconds = random(1000, 1000); // Delayed for 3 - 10 seconds
int lux2 = analogRead(PHOTORESISTOR_PIN2);
bool ship2Dead = false;
ship2.write(0);Various components of the game, including the targets, blaster, and supporting structures, will be designed using 3D modeling software. These models will be used for visualization, prototyping, and possibly for 3D printing physical parts.
- Laser Diodes: Integrated within the blaster to emit the light beam.
- Photoresistors: Embedded in the targets to detect when hit by the blaster's light.
- Servo Motors: Actuating the falling motion of the targets upon detection of the blaster's beam.
- LED Lights: Installed in tandem with each target, providing visual feedback to the player upon successful hits.

