Previous:

Final - proposal & feature tests (week 8-9)

Untitled

Input Sequence Escape Room Puzzle

Escape Room Object Placement Puzzle using Arduino/RFID

RFID test

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

correct tag

wrong tag

wrong tag

drawer test

IMG_7740.MOV

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)

New plan for drawer cabinet

Screen Shot 2023-11-28 at 11.06.20 AM.png

Buttons

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;
  }