/MAX1415

Arduino library for the ADC chip MAX1415

Primary LanguageC++

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();