News:

PROTON pic BASIC Compilers for PIC, PIC24, dsPIC33

Main Menu

LED indicator for 74HC595

Started by tolyan249, Today at 03:14 AM

Previous topic - Next topic

tolyan249

There's this LED indicator based on the 74HC595 — has anyone worked with them?
I just don't know how to work with them.
I have a PIC16F628; they say you can use it via SPI.
Maybe someone has some experience with it?
Thank you.

ken_k

The chips are 8 bit serial input shift registers.The data sheet explains how they work.
My guess is you will clock in a bit for each 7 segments and then enable the output.
I did something similar years ago and it worked very well.

ken_k

Here is a link to the PCB.

https://aqtronic.com/product/static-drive-3-bit-7-segment-led-display-module-with-74hc595/

The link below shows how the displays may be connected to the IC. Although written for Arduino the description may help you.

https://wiki.geeetech.com/index.php/Arduino_7_segment_LED_timer_with_74HC595_module

A friend of mine made a very long PCB with a lot of 7 segment displays on it (side by side) with a 74HC595 for each display. If a certain number of 7 seg displays were required the PCB could be broken off at the required spot.
 
These displays don't strobe so they look good when taking a video of them.

I guess you will have to write your own code.
I once drive 45 relays using this method using similar IC's. I simply bit bashed three pins to the relay PCB.
 


Frizie

Very easy to use with Positron's SHOUT instruction ;D
Ohm sweet Ohm | www.picbasic.nl

tolyan249

Thank you all for your help; I'll try to write a program for it.