USB EPROM/Flash Programmer
Public Types | Public Member Functions | Static Public Attributes | List of all members
HC595 Class Reference

74xx595 Shift Register Class. More...

#include <74hc595.hpp>

Public Types

typedef std::vector< uint8_t > TData
 Type of Data buffer. More...
 

Public Member Functions

 HC595 ()
 Constructor. More...
 
 HC595 (uint sinPin, uint clkPin=0xFF, uint clrPin=0xFF, uint rckPin=0xFF, uint oePin=0xFF, uint pulseTime=kDefaultPulseTime)
 Constructor. More...
 
void configure (uint sinPin=0xFF, uint clkPin=0xFF, uint clrPin=0xFF, uint rckPin=0xFF, uint oePin=0xFF, uint pulseTime=kDefaultPulseTime)
 Configures the HC595 class object. More...
 
void clear ()
 Clears the output of the HC595. More...
 
void outputEnable (bool value=true)
 Changes the Output Enable pin of the HC595. More...
 
void outputDisable (void)
 Disables the output (put its in tristate). More...
 
void writeByte (uint8_t value)
 Writes a byte to output of the HC595. More...
 
void writeWord (uint16_t value)
 Writes a word to outputs of two HC595 (in cascade). More...
 
void writeDWord (uint32_t value)
 Writes a double word to outputs of quad HC595 (in cascade). More...
 
void writeData (const uint8_t *buffer, uint size)
 Writes data to outputs of "n" HC595 (arbitrary units in cascade). More...
 
void setBit (uint bit, bool value=true)
 Sets a bit of any HC595 in cascade. More...
 
void resetBit (uint bit)
 Resets a bit of any HC595 in cascade. More...
 
void toggleBit (uint bit)
 Toggles a bit of any HC595 in cascade. More...
 
const TDatagetData (void) const
 Gets the data written in HC595 units. More...
 
const bool getBit (uint bit) const
 Gets a bit of data written in HC595 units. More...
 
const bool getOE (void) const
 Gets the Output Enable status. More...
 

Static Public Attributes

static constexpr uint kDefaultPulseTime = 1
 Default value to pulse time, in microseconds. More...
 

Detailed Description

74xx595 Shift Register Class.

The purpose of this class is to interface a 74xx595 Shift Register. Datasheet available on: https://tinyurl.com/5crbkb52.

Member Typedef Documentation

◆ TData

typedef std::vector<uint8_t> TData

Type of Data buffer.

Constructor & Destructor Documentation

◆ HC595() [1/2]

HC595 ( )

Constructor.

◆ HC595() [2/2]

HC595 ( uint  sinPin,
uint  clkPin = 0xFF,
uint  clrPin = 0xFF,
uint  rckPin = 0xFF,
uint  oePin = 0xFF,
uint  pulseTime = kDefaultPulseTime 
)

Constructor.

Constructs a new HC595 class object, and configures it.

Parameters
sinPinGPIO Pin number of Serial Data Input.
clkPinGPIO Pin number of Data Clock (default = 0xFF, no pin).
clrPinGPIO Pin number of ~Clear (default = 0xFF, no pin).
rckPinGPIO Pin number of Latch Clock (default = 0xFF, no pin).
oePinGPIO Pin number of Output Enable (default = 0xFF, no pin).
pulseTimePulse time, in microseconds (default = kDefaultPulseTime).

Member Function Documentation

◆ configure()

void configure ( uint  sinPin = 0xFF,
uint  clkPin = 0xFF,
uint  clrPin = 0xFF,
uint  rckPin = 0xFF,
uint  oePin = 0xFF,
uint  pulseTime = kDefaultPulseTime 
)

Configures the HC595 class object.

Parameters
sinPinGPIO Pin number of Serial Data Input (default = 0xFF, no pin).
clkPinGPIO Pin number of Data Clock (default = 0xFF, no pin).
clrPinGPIO Pin number of ~Clear (default = 0xFF, no pin).
rckPinGPIO Pin number of Latch Clock (default = 0xFF, no pin).
oePinGPIO Pin number of Output Enable (default = 0xFF, no pin).
pulseTimePulse time, in microseconds (default = kDefaultPulseTime).

◆ clear()

void clear ( )

Clears the output of the HC595.

◆ outputEnable()

void outputEnable ( bool  value = true)

Changes the Output Enable pin of the HC595.

Parameters
valueIf true, activate OE. Else, disables the output (put its in tristate).

◆ outputDisable()

void outputDisable ( void  )

Disables the output (put its in tristate).

◆ writeByte()

void writeByte ( uint8_t  value)

Writes a byte to output of the HC595.

Parameters
valueValue to write (bits 0..7).

◆ writeWord()

void writeWord ( uint16_t  value)

Writes a word to outputs of two HC595 (in cascade).

Parameters
valueValue to write (bits 0..15).

◆ writeDWord()

void writeDWord ( uint32_t  value)

Writes a double word to outputs of quad HC595 (in cascade).

Parameters
valueValue to write (bits 0..31).

◆ writeData()

void writeData ( const uint8_t *  buffer,
uint  size 
)

Writes data to outputs of "n" HC595 (arbitrary units in cascade).

Parameters
bufferPointer to values to write.
sizeSize of buffer.

◆ setBit()

void setBit ( uint  bit,
bool  value = true 
)

Sets a bit of any HC595 in cascade.

Parameters
bitNumber of bit (0..n).
valueValue to set (default = true).

◆ resetBit()

void resetBit ( uint  bit)

Resets a bit of any HC595 in cascade.

Parameters
bitNumber of bit (0..n).

◆ toggleBit()

void toggleBit ( uint  bit)

Toggles a bit of any HC595 in cascade.

Parameters
bitNumber of bit (0..n).

◆ getData()

const HC595::TData & getData ( void  ) const

Gets the data written in HC595 units.

Returns
Reference to "software stored" data buffer.

◆ getBit()

const bool getBit ( uint  bit) const

Gets a bit of data written in HC595 units.

Parameters
bitNumber of bit (0..n).
Returns
Value of bit ("software stored").

◆ getOE()

const bool getOE ( void  ) const

Gets the Output Enable status.

Returns
Value of Output Enable ("software stored").

Member Data Documentation

◆ kDefaultPulseTime

constexpr uint kDefaultPulseTime = 1
staticconstexpr

Default value to pulse time, in microseconds.


The documentation for this class was generated from the following files: