Lesson 1

Today we are going to begin building this lovely box!

Schematic

It's mate of laser cut wood.

It's guts are made of electronics.

When we hold our RFID card (like an Octopus card) up to it, it'll flash a happy green light, play a happy sound, and happily open for us.

If we hold the wrong RFID card it'll show an angry red light, play an angry sound and angrily refuse to open for us.

First Connections!

First Code

Now we can upload our card and try it out, if it's working properly a large amount of information should be dumped over the serial connection when we show a readable card to the card reader

HINT: In case you forgot, you can listen to the Arduino serial connection with the Serial Monitor in Tools->Serial Monitor or by clicking the magnifying class at the top right of the Arduino IDE

Next we need to adjust our code so it checks just the card ID and compares it to a card ID we have stored, you can pick one of the card ID's that you've scanned and enter the numbers into your storedCard[] object at the start of your code.

Second Code

One Last Thing!