-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added: Arduino sketch aimed at writing uniques to tags
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#include <avr/pgmspace.h> | ||
#include "/home/mike/compile/nfc-voting/unique-string-gen/uniqueSet.h" | ||
// the setup routine runs once when you press reset: | ||
void setup() { | ||
// initialize serial communication at 9600 bits per second: | ||
Serial.begin(9600); | ||
} | ||
|
||
unsigned int uniqInt; | ||
unsigned int counter = 0; | ||
// the loop routine runs over and over again forever: | ||
void loop() { | ||
|
||
Serial.println("Hello World!"); | ||
delay(1000); // delay in between reads for stability | ||
|
||
uniqInt = pgm_read_word_near(uniqueSet + counter); | ||
Serial.println(uniqInt); | ||
Serial.println("hackaday.com/LA2014?" + String(uniqInt, HEX)); | ||
|
||
if (++counter >= uniqueSetLen) { counter = 0; } | ||
|
||
} |