-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from Protocentral/v1.1
Merged new library re-write with v1.1
- Loading branch information
Showing
5 changed files
with
373 additions
and
343 deletions.
There are no files selected for viewing
89 changes: 89 additions & 0 deletions
89
examples/ADS1220_Read_Sequential/ADS1220_Read_Sequential.ino
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
////////////////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Demo code for the ADS1220 24-bit ADC breakout board | ||
// | ||
// Author: Ashwin Whitchurch | ||
// Copyright (c) 2018 ProtoCentral | ||
// | ||
// This example sequentially reads all 4 channels in continuous conversion mode | ||
// | ||
// Arduino connections: | ||
// | ||
// |ADS1220 pin label| Pin Function |Arduino Connection| | ||
// |-----------------|:--------------------:|-----------------:| | ||
// | DRDY | Data ready Output pin| D6 | | ||
// | MISO | Slave Out | D12 | | ||
// | MOSI | Slave In | D11 | | ||
// | SCLK | Serial Clock | D13 | | ||
// | CS | Chip Select | D7 | | ||
// | DVDD | Digital VDD | +5V | | ||
// | DGND | Digital Gnd | Gnd | | ||
// | AN0-AN3 | Analog Input | Analog Input | | ||
// | AVDD | Analog VDD | - | | ||
// | AGND | Analog Gnd | - | | ||
// | ||
// This software is licensed under the MIT License(http://opensource.org/licenses/MIT). | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT | ||
// NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | ||
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
// | ||
// For information on how to use, visit https://github.com/Protocentral/Protocentral_ADS1220 | ||
// | ||
///////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
#include "Protocentral_ADS1220.h" | ||
#include <SPI.h> | ||
|
||
#define PGA 1 // Programmable Gain = 1 | ||
#define VREF 2.048 // Internal reference of 2.048V | ||
#define VFSR VREF/PGA | ||
#define FULL_SCALE (((long int)1<<23)-1) | ||
|
||
#define ADS1220_CS_PIN 7 | ||
#define ADS1220_DRDY_PIN 6 | ||
|
||
Protocentral_ADS1220 pc_ads1220; | ||
int32_t adc_data; | ||
|
||
void setup() | ||
{ | ||
Serial.begin(9600); | ||
|
||
pc_ads1220.begin(ADS1220_CS_PIN,ADS1220_DRDY_PIN); | ||
|
||
pc_ads1220.set_data_rate(DR_330SPS); | ||
pc_ads1220.set_pga_gain(PGA_GAIN_1); | ||
|
||
pc_ads1220.set_conv_mode_single_shot(); //Set Single shot mode | ||
} | ||
|
||
void loop() | ||
{ | ||
adc_data=pc_ads1220.Read_SingleShot_SingleEnded_WaitForData(MUX_SE_CH0); | ||
Serial.print("\n\nCh1 (mV): "); | ||
Serial.print(convertToMilliV(adc_data)); | ||
delay(100); | ||
|
||
adc_data=pc_ads1220.Read_SingleShot_SingleEnded_WaitForData(MUX_SE_CH1); | ||
Serial.print("\nCh2 (mV): "); | ||
Serial.print(convertToMilliV(adc_data)); | ||
delay(100); | ||
|
||
adc_data=pc_ads1220.Read_SingleShot_SingleEnded_WaitForData(MUX_SE_CH2); | ||
Serial.print("\nCh3 (mV): "); | ||
Serial.print(convertToMilliV(adc_data)); | ||
delay(100); | ||
|
||
adc_data=pc_ads1220.Read_SingleShot_SingleEnded_WaitForData(MUX_SE_CH3); | ||
Serial.print("\nCh4 (mV): "); | ||
Serial.print(convertToMilliV(adc_data)); | ||
delay(100); | ||
} | ||
|
||
float convertToMilliV(int32_t i32data) | ||
{ | ||
return (float)((i32data*VFSR*1000)/FULL_SCALE); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.