From 2329edcb70c64f3b07e2ffdc0029cfd2c6635924 Mon Sep 17 00:00:00 2001 From: "J.R. Marshall" Date: Sun, 20 Feb 2022 08:55:32 -0800 Subject: [PATCH] add missing curly brace --- SIK_circuit14_shiftRegister/SIK_circuit14_shiftRegister.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SIK_circuit14_shiftRegister/SIK_circuit14_shiftRegister.ino b/SIK_circuit14_shiftRegister/SIK_circuit14_shiftRegister.ino index 54fd643..076c66c 100644 --- a/SIK_circuit14_shiftRegister/SIK_circuit14_shiftRegister.ino +++ b/SIK_circuit14_shiftRegister/SIK_circuit14_shiftRegister.ino @@ -87,7 +87,7 @@ void loop() void shiftWrite(int desiredPin, boolean desiredState) - +{ // This function lets you make the shift register outputs // HIGH or LOW in exactly the same way that you use digitalWrite(). @@ -236,4 +236,4 @@ void binaryCount() // Delay so you can see what's going on: delay(delayTime); -} \ No newline at end of file +}