Simsso/ShiftRegister74HC595

Compability with other modules

Closed this issue · 1 comments

The demo works standalone, but In a script with si4703 radio module and TFT display ili9488, any command to the shiftregister appears not to reach it.
Libraries in my script are:
#include "WifiPass.h"
#include <WiFi.h>
#include <NTPClient.h> //NTPClient by Arduino
#include <WiFiUdp.h>
#include "FS.h"
#include <SPI.h>
#include <string.h>
#include <Wire.h>
#include <EEPROM.h>
#include "EEPROMAnything.h"
#include "time.h"
#include <ShiftRegister74HC595.h>
#include <TFT_eSPI.h>
#include <Adafruit_Sensor.h>
#include <RDSParser.h> // listen to RDS
#include <si4703.h> //driver for the radio
#include <radio.h>
#include <IRremote.h>

Solved. Moved a pin to the RX2 pin.
// Define Connections to 74HC595
#include <ShiftRegister74HC595.h>
// ST_CP pin 14
const int latchPin = 14;
// SH_CP pin 11
const int clockPin = 16;
// DS pin 14
const int serialDataPin = 12;