We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1926426 commit baec51dCopy full SHA for baec51d
1 file changed
Arduino/hitaguino/hitaguino.ino
@@ -12,15 +12,13 @@
12
/* 4MHz clock output for PCF7991 ABIC */
13
#if defined(__AVR_ATmega328P__) // Setting for Arduino Nano and Pro Mini
14
const int CLKOUT = 3;
15
-#elif(__AVR_ATmega2560__) // Setting for Arduino Nano and Pro Mini
+#elif(__AVR_ATmega2560__) // Setting for Arduino Mega 2560
16
const int CLKOUT = 9;
17
#endif
18
19
const int SCK_pin = 6;
20
const int dout_pin = 7;
21
-//const int din_pin = 21; // Arduino Mega2560 original value 21 Mega2560 can also use 2
22
-const int din_pin = 2; //Use with Arduino Nano
23
-//Note: din_pin must have external interrupt feature!
+const int din_pin = 2; //Note: din_pin must have external interrupt feature!
24
const int test_pin = 4;
25
26
const char hitagerVersion[] = {"211"}; // Major Version, Minor Version, Fix
0 commit comments