Skip to content

Commit

Permalink
Merge pull request #14 from robindiddams/master
Browse files Browse the repository at this point in the history
Fix typos in example code
  • Loading branch information
cyrusbuilt authored Oct 28, 2024
2 parents fe5bdc4 + edeed63 commit 5bb6205
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,15 @@ void setup() {
}

// Create the reader and attach it to the system.
reader1 = HidProxWeigand.addReader(PIN_DATA0, PIN_DATA1, cardReadHandler);
reader1 = HidProxWiegand.addReader(PIN_DATA0, PIN_DATA1, cardReadHandler);

// Attach interrupt handlers for reader 1.
HidProxWiegand_AttachReaderInterrupts(PIN_DATA0, PIN_DATA1, handleInterrupt0, handleInterrupt1);
}

void loop() {
// Process any cards that have been read.
HidProxWeigand.loop();
HidProxWiegand.loop();
}
```
Expand Down

0 comments on commit 5bb6205

Please sign in to comment.