Skip to content

Arduino library for Analog Devices AD5144 digital potentiometer via SPI.

License

Notifications You must be signed in to change notification settings

ffschm/Arduino-AD5144-library

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AD5144 Arduino library

This driver interfaces the microcontroller with Analog Devices AD5144 digital potentiometer via SPI.

Usage

#include "AD5144.h"

AD5144 poti;

void setup() {
  poti.begin();
  Serial.begin(9600);
}

void loop() {
  poti.set_value(0, (millis() / 1000) % 256);
  Serial.println(poti.get_value(0));

  delay(1000);
}

License

This library is licensed under the GNU Lesser General Public License v3.0 or later.

About

Arduino library for Analog Devices AD5144 digital potentiometer via SPI.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 100.0%