Skip to content

macafeeje/SN74LV8153

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

SN74LV8153

Arduino UNO library for Serial to Parallel Interface SN74LV8153 chip
ref. datasheet: https://www.ti.com/lit/ds/symlink/sn74lv8153.pdf


Example:
#include "SN74LV8153.h"

S2PI decoder;
const uint8_t serial_pin = 2;
const uint8_t reset_pin = 3;
const uint8_t device_address = 0;      //set by pin programming, ref. datasheet

void setup(){
  decoder.begin(serial_pin, reset_pin);
}

void loop(){
  uint8_t data = 0xff;    //8-bit data to send to chip

  decoder.output(device_address, data);

  while(1);
}

About

Serial to Parallel Interface SN74LV8153

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages