본문 바로가기

RaspberryPi/RP2350

[RP2350_ W6100] ADS1120 16bit ADC테스트

16-bit AD/DA 모듈 ADS1120 (2-kSPS, 4-ch, low-power, small-size delta-sigma ADC with PGA)을 이용하여 16비트 ADC 데이터를 수집하는 테스트를 진행해 보았다.

 

Arduino IDE의 장점인 다양한 라이브러리를 이용해서 쉽고 빨리 테스트 해볼수 있다.

https://github.com/rwagoner/ADS1120-Library

 

확장 테스트보드의 Arduino 핀맵은 아래와 같다. SPI CS는 GP17에 연결된다.

 

기본 예제로 AD1120의 내부 온도값을 읽어 보는 예제를 테스트 해보자

#include "ADS1120.h"

#define LED 25
int sensorValue = 0;  // value read from the pot
int outputValue = 0;  // value output to the PWM (analog out)

#define CS      17
#define DRDY    14

#define Led1On()        digitalWrite(LED, 1)
#define Led1Off()       digitalWrite(LED, 0)

// Creating an ADS1120 object
ADS1120 ads1120;

void setup() {
  pinMode(LED, OUTPUT);
  Led1On();

  Serial.begin(115200);
  while (!Serial)
  {

  }
  Led1Off();
  
  Serial.println("ADS1120 Start");

    // Initialize the ADS1120
    ads1120.begin(CS, DRDY);
    ads1120.setGain(1);               // 1 (default)
    ads1120.setDataRate(0x00);        // 20 SPS
    ads1120.setOpMode(0x00);          // Normal mode (default)
    ads1120.setConversionMode(0x01);  // Single shot (default)
    ads1120.setVoltageRef(0);         // Internal 2.048 V (default)   
    ads1120.setTemperatureMode(1);    // Enables temperature sensor
}



void loop() 
{
    Serial.printf("Int Temp: %0.2f C\n", ads1120.readADC_SingleTemp());
    delay(500);
}

 

 

 

 

16bit ADC 값을 읽어 오는 예제를 테스트 해보면 값은 잘 읽어 오는데... 채널간 전환 속도가 느리다. ADC 읽어 오는 속도를 출력 해보자.

void setup()
{
    pinMode(outputPin1, OUTPUT);

    Serial.begin(115200);
    while (!Serial);

  	ads1120.begin(CS_PIN, DATA_READY_PIN);
  	ads1120.setVoltageRef(0);         // Internal 2.048 V (default)
	ads1120.setGain(1);				 //Set gain 1.  Possible values are 1, 2, 4, 8, 16, 32, 64, 128.
	ads1120.setOpMode(0x00);		 // Set Normal Mode
	ads1120.setDataRate(0x05);		 // Set Data rate 101.  In normal mode = 600sps
	ads1120.setConversionMode(0x01); // 1=Continous Mode
  	ads1120.setMultiplexer(0x09);	 // Set AIN0  & AIN1 (differential)
}


void loop()
{
	long test = 0;
	int samples = 0;
	unsigned long tiempoInicial = millis();

	while (millis() - tiempoInicial < 1000)
	{
		if (digitalRead(DATA_READY_PIN) == LOW)
		{
			test = ads1120.readADC();
			samples++;
		}
	}
	Serial.print("Samples per Seconds = ");
	Serial.println(samples);
	Serial.print("Last read value = ");
	Serial.println(test);
	Serial.println();
}

 

 

Samples per Seconds = 589
Last read value = 32768

Samples per Seconds = 588
Last read value = 32768

Samples per Seconds = 589
Last read value = 32768

 

 

테스트 결과 1채널에 대해서는 설정한 샘플 타임으로 읽어 오는데... 채널 전환하면 속도가 느려진다.

다채널을 고속으으로 데이터를 수집해야 한다면 고려야해 알것 같다.

 

반응형