mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
144e1d7e02
+ set I2C -> 100KHz
98 lines
1.8 KiB
C++
98 lines
1.8 KiB
C++
//
|
|
// FILE: mcp4725_test.ino
|
|
// AUTHOR: Rob Tillaart
|
|
// VERSION: 0.1.00
|
|
// PURPOSE: test mcp4725 lib
|
|
// DATE: 2013-11-24
|
|
// URL:
|
|
//
|
|
// Released to the public domain
|
|
//
|
|
|
|
#include <Wire.h>
|
|
#include "MCP4725.h"
|
|
|
|
MCP4725 DAC(0x62); // 0x62 or 0x63
|
|
|
|
void setup()
|
|
{
|
|
Serial.begin(115200);
|
|
|
|
Serial.println("MCP4725 test program: ");
|
|
Serial.println(MCP4725_VERSION);
|
|
|
|
DAC.begin();
|
|
|
|
Serial.print("Value:\t");
|
|
Serial.println(DAC.getValue());
|
|
|
|
Serial.println("setValue(100)");
|
|
Serial.println(DAC.setValue(100));
|
|
Serial.print("Value:\t");
|
|
Serial.println(DAC.getValue());
|
|
|
|
Serial.println("setValue(200)");
|
|
Serial.println(DAC.setValue(200));
|
|
Serial.print("Value:\t");
|
|
Serial.println(DAC.getValue());
|
|
|
|
Serial.println("smooth2Value(100, 10)");
|
|
Serial.println(DAC.smooth2Value(100, 10));
|
|
Serial.print("Value:\t");
|
|
Serial.println(DAC.getValue());
|
|
|
|
Serial.println("smooth2Value(200, 10)");
|
|
Serial.println(DAC.smooth2Value(200, 10));
|
|
Serial.print("Value:\t");
|
|
Serial.println(DAC.getValue());
|
|
|
|
|
|
//////////////////////////////////////////////////
|
|
Serial.println("\n\nPERFORMANCE\n");
|
|
|
|
uint32_t start = micros();
|
|
for (int i=0; i< 1000; i++)
|
|
{
|
|
volatile int x = DAC.getValue();
|
|
}
|
|
uint32_t end = micros();
|
|
Serial.print("1000x DAC.getValue():\t");
|
|
Serial.println(end - start);
|
|
|
|
start = micros();
|
|
for (int i=0; i< 1000; i++)
|
|
{
|
|
DAC.setValue(i);
|
|
}
|
|
end = micros();
|
|
Serial.print("1000x DAC.setValue(i):\t");
|
|
Serial.println(end - start);
|
|
|
|
start = micros();
|
|
for (int i=0; i< 100; i++)
|
|
{
|
|
DAC.smooth2Value(i*10, 10);
|
|
}
|
|
end = micros();
|
|
Serial.print("100x DAC.smooth2Value(i*10, 10):\t");
|
|
Serial.println(end - start);
|
|
|
|
}
|
|
|
|
void loop()
|
|
{
|
|
for (int i=0; i< 4096; i++)
|
|
{
|
|
DAC.setValue(i);
|
|
delay(10);
|
|
}
|
|
for (int i=0; i< 4096; i++)
|
|
{
|
|
DAC.setValue(4096 - i);
|
|
delay(10);
|
|
}
|
|
}
|
|
|
|
|
|
|