Previous:
Final - proposal & feature tests (week 8-9)
Input Sequence Escape Room Puzzle
Escape Room Object Placement Puzzle using Arduino/RFID
detect a certain tag and trigger an action(LED lights for 1s in this test, super)
Arduino提高篇21—RFID模块门禁设计_ardunio uno读取uid标签-CSDN博客
correct tag
wrong tag
drawer test
Need appx. a 7V initial volt to actively move the solenoid, but at 6V it needs some physical push(as the back of the drawer does)
NOV28: Now using the code:
int arr[] = {0, 0, 0, 0, 0, 0};
void setup() {
Serial.begin(9600);
randomSeed(analogRead(0));
for (int i = 0; i < 6; ++i){
arr[i] = rand() % 4 + 1;
}