Created
September 6, 2011 23:12
-
-
Save rakasaka/1199266 to your computer and use it in GitHub Desktop.
Revisions
-
rakasaka renamed this gist
Sep 6, 2011 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
rakasaka revised this gist
Sep 6, 2011 . 1 changed file with 12 additions and 11 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -7,29 +7,30 @@ HashType<int,int> hashRawArray[HASH_SIZE]; HashMap<int,int> hashMap = HashMap<int,int>( hashRawArray , HASH_SIZE ); void setup(){ Serial.print("reset"); Serial.begin(9600); } void loop(){ for (int thisPin = mini; thisPin < maxi; thisPin++) { int val = analogRead(thisPin); if (val > 200){ int curHit = hashMap.getValueOf(thisPin); if ((curHit+1) > 3) { hashMap[thisPin](thisPin,0); Serial.print("#"); Serial.print(thisPin); Serial.print("#"); } else { hashMap[thisPin](thisPin,curHit+1); } } else { hashMap[thisPin](thisPin,0); } delay(5); } Serial.println(); } -
rakasaka created this gist
Sep 6, 2011 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,35 @@ #include <HashMap.h> int mini = 0; int maxi = 16; const byte HASH_SIZE = 16; HashType<int,int> hashRawArray[HASH_SIZE]; HashMap<int,int> hashMap = HashMap<int,int>( hashRawArray , HASH_SIZE ); void setup(){ Serial.print("reset"); Serial.begin(9600); } void loop(){ for (int thisPin = mini; thisPin < maxi; thisPin++) { int val = analogRead(thisPin); if (val > 200){ int curHit = hashMap.getValueOf(thisPin); if ((curHit+1) > 3) { hashMap[thisPin](thisPin,0); Serial.print("#"); Serial.print(thisPin); Serial.print("#"); } else { hashMap[thisPin](thisPin,curHit+1); } } else { hashMap[thisPin](thisPin,0); } delay(5); } Serial.println(); }