Search results

  1. H

    Teensy 2++ and AD5293 DigiPot

    i finally got it working!! The magic is that the AD5293 uses SPI Mode 1 (CPOL=0, CPHA=1). So i simply had to add SPI.setDataMode(SPI_MODE1); Finally the working code Looks as followed: const byte AD_CS_PIN = 20; //Start SPI Stuff pinMode(AD_CS_PIN,OUTPUT); // SPI - CS SPI.begin()...
  2. H

    Teensy 2++ and AD5293 DigiPot

    [SOLVED] - Teensy 2++ and AD5293 DigiPot Hi @all, i'm currently working on a Project using the AD5293 DigiPot (http://www.analog.com/en/digital-to-analog-converters/digital-potentiometers/ad5293/products/product.html). I connected the Teensy 2++ as followed: Teensy 2++ <-> AD5293 B0 <->...
Back
Top