mirror of
https://github.com/DashyFox/StackSport.git
synced 2025-05-04 15:20:16 +00:00
18 lines
313 B
C
18 lines
313 B
C
/*
|
|
* ShiftReg.h
|
|
*
|
|
* Created on: Aug 25, 2024
|
|
* Author: DashyFox
|
|
*/
|
|
|
|
#ifndef SRC_SHIFTREG_H_
|
|
#define SRC_SHIFTREG_H_
|
|
|
|
#include "stm32f1xx_hal.h"
|
|
|
|
void SetShiftReg_inline (unsigned char b1, unsigned char b2, unsigned char b3);
|
|
void SetShiftReg (unsigned char shiftreg[3]);
|
|
|
|
|
|
#endif /* SRC_SHIFTREG_H_ */
|