From d6869d1ec4bd24cd2c3eafa534f0849b25ec5607 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 28 Feb 2019 17:04:22 -0500 Subject: added basic code --- .../digital_potentiometer.ino | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100755 arduino/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino (limited to 'arduino/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino') diff --git a/arduino/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino b/arduino/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino new file mode 100755 index 0000000..38da1c5 --- /dev/null +++ b/arduino/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino @@ -0,0 +1,39 @@ +// I2C Digital Potentiometer +// by Nicholas Zambetti +// and Shawn Bonkowski + +// Demonstrates use of the Wire library +// Controls AD5171 digital potentiometer via I2C/TWI + +// Created 31 March 2006 + +// This example code is in the public domain. + +// This example code is in the public domain. + + +#include + +void setup() +{ + Wire.begin(); // join i2c bus (address optional for master) +} + +byte val = 0; + +void loop() +{ + Wire.beginTransmission(44); // transmit to device #44 (0x2c) + // device address is specified in datasheet + Wire.write(byte(0x00)); // sends instruction byte + Wire.write(val); // sends potentiometer value byte + Wire.endTransmission(); // stop transmitting + + val++; // increment value + if(val == 64) // if reached 64th position (max) + { + val = 0; // start over from lowest value + } + delay(500); +} + -- cgit v1.2.3