Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Fork of WaG by
analog.h
- Committer:
- phn10
- Date:
- 2018-03-23
- Revision:
- 40:4e82369f337c
- Parent:
- 38:57af77435ae1
- Child:
- 49:80d4ffabec16
File content as of revision 40:4e82369f337c:
/******************************************************************************
* EECS 397
*
* Assignment Name: Lab 6: WaG
*
* Authors: Sam Morrison and Phong Nguyen
* File name: analog.h
* Purpose: Header for analog functions
*
* Created: 03/20/2018
* Last Modified: 03/20/2018
*
******************************************************************************/
#ifndef ANALOG_H
#define ANALOG_H
#include "mbed.h"
#include "io_pins.h"
#define MUX_CHANS 16
void ana_init();
void ana_scan_mux(float * an_array, int no_of_channels);
void test_phototransistors ();
#endif
