/* MM74C925N.h - Library for controlling up to 4 seven segment displays with a MM74C925N chip Created by Gabriel LT. Ralph, September 26, 2015. Released into the public domain. */ #ifndef MM74C925N_h #define MM74C925N_h #include "Arduino.h" class MM74C925N { public: MM74C925N(int clockPin, int latchPin, int resetPin); void print(int num); private: int counter = 0; int clock; int latch; int reset; }; #endif