Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
The test circuit is/was wired correctly but fails to work. WHY??
A bad chip is the least likely cause of your troubles. Did you watch the much clearer video I posted and follow the steps I suggested ?Still waiting for chips
Not if you want it to work. The QH' output is not the same as the QH output. Saving words that won't be read anyway, QH' is before the latch registers.Got to wonder if I used the output on pin#4-QE instead of pin #9-SQH as the overflow so I can use 5 outputs per instead of 8 per section
The shift register isn't a ring counter. Throw that thought away.back to designing for 8 outputs per shift register.
THEN stop at 60 and return to 0
You have to include the shift module:
Include "shift.bas"
The command will be either
OUT (MSB_FIRST,data,8)
Or
OUT (LSB_FIRST,data,8)
For I = 0 to 19
OUT (LSB_FIRST,LEDData(i),8)
Next
Note, as shown in the documentation, you must define the data (out) pin and the clock pin.