// File : Cascade165.ino
//
// Version 1, 5 August 2021, by Koepel
// Initial version.
// Version 2, 5 August 2021, by Koepel
// Layout of the wiring made better.
// Version 3, 13 August 2021, by Koepel
// Changed 'SCK' to 'clockPin'.
// Version 4, 17 January 2025, by Koepel
// Added pinMode( dataPin, INPUT);
// Added a few text labels for the switches.
//
// Cascade of four 74HC165 shift-in registers.
// Only three pins are used on the Arduino board, to read 32 switches.
//
// Using the 74HC165 is safe, because a pulse to the Latch pin
// ('PL' on the 74HC165) will make a new start every time.
// In case of an error or a wrong clock pulse by noise,
// it synchronizes the data when inputs are read the next time.
//
// Based on:
// (1)
// Demo sketch to read from a 74HC165 input shift register
// by Nick Gammon, https://www.gammon.com.au/forum/?id=11979
// (2)
// 74HC165 Shift register input example
// by Uri Shaked, https://wokwi.com/arduino/projects/306031380875182657
//
//
const byte latchPin = 9; // to latch the inputs into the registers
const byte clockPin = 13; // I choose the SCK pin
const byte dataPin = 12; // I choose the MISO pin
uint32_t oldOptionSwitch = 0; // previous state of all the inputs
const int pulseWidth = 10; // pulse width in microseconds
void setup ()
{
Serial.begin( 115200);
Serial.println( "Turn on and off the switches");
Serial.println( "Top row is switch 0 (right) to switch 7 (left)");
Serial.println( "Second row is 8 to 15, and so on");
pinMode( dataPin, INPUT); // read data
pinMode( clockPin, OUTPUT); // clock signal, idle LOW
pinMode( latchPin, OUTPUT); // latch (copy input into registers), idle HIGH
digitalWrite( latchPin, HIGH);
}
void loop ()
{
// Give a pulse to the parallel load latch of all 74HC165
digitalWrite( latchPin, LOW);
delayMicroseconds( pulseWidth);
digitalWrite( latchPin, HIGH);
// Reading one 74HC165 at a time and combining them into a 32 bit variable
// The last 74HC165 is at the bottom, but the switches start numbering
// at the top. So the first byte has to be shifted into the highest place.
uint32_t optionSwitch = 0;
for( int i=24; i>=0; i-=8)
{
optionSwitch |= ((uint32_t) ReadOne165()) << i;
}
for( int i = 0; i<32; i++)
{
if( bitRead( optionSwitch, i) != bitRead( oldOptionSwitch,i))
{
Serial.print( "Switch ");
if( i < 10)
Serial.print( " ");
Serial.print( i);
Serial.print( " is now ");
Serial.println( bitRead( optionSwitch, i) == 0 ? "down ↓" : "up ↑");
}
}
oldOptionSwitch = optionSwitch;
delay( 25); // slow down the sketch to avoid switch bounce
}
// The ReadOne165() function reads only 8 bits,
// because of the similar functions shiftIn() and SPI.transfer()
// which both use 8 bits.
//
// The shiftIn() can not be used here, because the clock is set idle low
// and the shiftIn() makes the clock high to read a bit.
// The 74HC165 require to read the bit first and then give a clock pulse.
//
byte ReadOne165()
{
byte ret = 0x00;
// The first one that is read is the highest bit (input D7 of the 74HC165).
for( int i=7; i>=0; i--)
{
if( digitalRead( dataPin) == HIGH)
bitSet( ret, i);
digitalWrite( clockPin, HIGH);
delayMicroseconds( pulseWidth);
digitalWrite( clockPin, LOW);
}
return( ret);
}
uno:A5.2
uno:A4.2
uno:AREF
uno:GND.1
uno:13
uno:12
uno:11
uno:10
uno:9
uno:8
uno:7
uno:6
uno:5
uno:4
uno:3
uno:2
uno:1
uno:0
uno:IOREF
uno:RESET
uno:3.3V
uno:5V
uno:GND.2
uno:GND.3
uno:VIN
uno:A0
uno:A1
uno:A2
uno:A3
uno:A4
uno:A5
in1:PL
in1:CP
in1:D4
in1:D5
in1:D6
in1:D7
in1:Q7_N
in1:GND
in1:Q7
in1:DS
in1:D0
in1:D1
in1:D2
in1:D3
in1:CE
in1:VCC
in2:PL
in2:CP
in2:D4
in2:D5
in2:D6
in2:D7
in2:Q7_N
in2:GND
in2:Q7
in2:DS
in2:D0
in2:D1
in2:D2
in2:D3
in2:CE
in2:VCC
in3:PL
in3:CP
in3:D4
in3:D5
in3:D6
in3:D7
in3:Q7_N
in3:GND
in3:Q7
in3:DS
in3:D0
in3:D1
in3:D2
in3:D3
in3:CE
in3:VCC
in4:PL
in4:CP
in4:D4
in4:D5
in4:D6
in4:D7
in4:Q7_N
in4:GND
in4:Q7
in4:DS
in4:D0
in4:D1
in4:D2
in4:D3
in4:CE
in4:VCC
sw00:1
sw00:2
sw00:3
sw01:1
sw01:2
sw01:3
sw02:1
sw02:2
sw02:3
sw03:1
sw03:2
sw03:3
sw04:1
sw04:2
sw04:3
sw05:1
sw05:2
sw05:3
sw06:1
sw06:2
sw06:3
sw07:1
sw07:2
sw07:3
sw10:1
sw10:2
sw10:3
sw11:1
sw11:2
sw11:3
sw12:1
sw12:2
sw12:3
sw13:1
sw13:2
sw13:3
sw14:1
sw14:2
sw14:3
sw15:1
sw15:2
sw15:3
sw16:1
sw16:2
sw16:3
sw17:1
sw17:2
sw17:3
sw20:1
sw20:2
sw20:3
sw21:1
sw21:2
sw21:3
sw22:1
sw22:2
sw22:3
sw23:1
sw23:2
sw23:3
sw24:1
sw24:2
sw24:3
sw25:1
sw25:2
sw25:3
sw26:1
sw26:2
sw26:3
sw27:1
sw27:2
sw27:3
sw30:1
sw30:2
sw30:3
sw31:1
sw31:2
sw31:3
sw32:1
sw32:2
sw32:3
sw33:1
sw33:2
sw33:3
sw34:1
sw34:2
sw34:3
sw35:1
sw35:2
sw35:3
sw36:1
sw36:2
sw36:3
sw37:1
sw37:2
sw37:3
0
1
2
3
4
5
6
7
16
24
31
8