Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

ffschm/Arduino-AD5144-library

Open more actions menu
 
 

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%
Morty Proxy This is a proxified and sanitized view of the page, visit original site.