Skip to content

Commit

Permalink
Added: Arduino sketch aimed at writing uniques to tags
Browse files Browse the repository at this point in the history
  • Loading branch information
szczys committed Dec 28, 2013
1 parent 6f2cd5c commit 3d554c1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions unique_write/unique_write.ino
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; }

}

0 comments on commit 3d554c1

Please sign in to comment.