#include "Shift_Register.h"
int DS = 5;
int SH = 3;
int ST = 4;
bool bits[] = {true,false,true,false,true,false,true,false};
Shift_Register_74HC595 SR (DS, SH, ST);
void setup() {
pinMode(SH, OUTPUT);
pinMode(ST, OUTPUT);
pinMode(DS, OUTPUT);
}
void loop() {
SR.entrarbitss(bits);
SR.mostra();
}