Skip to content

Commit

Permalink
blind actor started
Browse files Browse the repository at this point in the history
  • Loading branch information
pa-pa committed Dec 18, 2017
1 parent 731804f commit 3ec5ede
Show file tree
Hide file tree
Showing 10 changed files with 815 additions and 20 deletions.
2 changes: 1 addition & 1 deletion AskSinPP.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#define memcmp_P(src,dst,count) memcmp((src),(dst),(count))
#else
#ifdef ARDUINO_ARCH_ATMEGA32
inline uint8_t digitalPinToInterrupt(uint8_t pin) { return pin == 11 ? 1 : 0; } // D2 -> 0 && D3 -> 1
inline uint8_t digitalPinToInterrupt(uint8_t pin) { return pin == 11 ? 1 : ( pin == 10 ? 0 : NOT_AN_INTERRUPT); } // D2 -> 0 && D3 -> 1
#endif
// if we have no EnableInterrupt Library - and also no PCINT - use polling
#ifndef EnableInterrupt_h
Expand Down
Loading

0 comments on commit 3ec5ede

Please sign in to comment.