GroupA / Mbed 2 deprecated WaG_final

Dependencies:   mbed

Fork of Lab_6_WaG by GroupA

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers laser.h Source File

laser.h

00001 /******************************************************************************
00002 * EECS 397
00003 *
00004 * Assignment Name: Lab 6: WaG
00005 * 
00006 * Authors: Sam Morrison and Phong Nguyen 
00007 * File name: laser.h
00008 * Purpose: Header for laser functions
00009 *
00010 * Created: 03/29/2018
00011 * Last Modified: 03/29/2018
00012 *
00013 ******************************************************************************/
00014 #ifndef LASER_H
00015 #define LASER_H
00016 
00017 #include "mbed.h"
00018 #include "io_pins.h"
00019 
00020 void lzr_off();
00021 void lzr_on();
00022 void lzr_init();
00023 
00024 #endif