Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 301 Bytes

File metadata and controls

17 lines (13 loc) · 301 Bytes

MAX1415

This is arduino code for the MAX1415 ADC Chip. It allows for simply interfacing with that chip.

Chip/Code setup

Include the header file

const int ChipSelect = 53;
const int DataReady = 2;

ChipSetup(ChipSelect, DataReady);

Reading the value

volt = GetReading();