Skip to content

Commit

Permalink
Fix typos and import inconsistency
Browse files Browse the repository at this point in the history
  • Loading branch information
Simsso committed Dec 20, 2019
1 parent e738d8d commit a68f49f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/ShiftRegister74HC595.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#pragma once

#include "Arduino.h"
#include <Arduino.h>

template<uint8_t Size>
class ShiftRegister74HC595
Expand Down Expand Up @@ -35,4 +35,4 @@ class ShiftRegister74HC595
uint8_t _digitalValues[Size];
};

#include "ShiftRegister74HC595.hpp"
#include "ShiftRegister74HC595.hpp"
4 changes: 2 additions & 2 deletions src/ShiftRegister74HC595.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
ShiftRegister74HC595.cpp - Library for simplified control of 74HC595 shift registers.
ShiftRegister74HC595.hpp - Library for simplified control of 74HC595 shift registers.
Created by Timo Denk (www.timodenk.com), Nov 2014.
Additional information is available at http://shiftregister.simsso.de/
Released into the public domain.
Expand Down Expand Up @@ -54,7 +54,7 @@ void ShiftRegister74HC595<Size>::setAll_P(const uint8_t * digitalValuesProgmem)
#endif

// Retrieve all states of the shift registers' output pins.
// The returned array's length is equal to the numbe of shift registers.
// The returned array's length is equal to the number of shift registers.
template<uint8_t Size>
uint8_t * ShiftRegister74HC595<Size>::getAll()
{
Expand Down

0 comments on commit a68f49f

Please sign in to comment.