"Puzzling Paintings" Escape Room Puzzle Tutorial

Поделиться
HTML-код
  • Опубликовано: 3 июл 2024
  • This is a tutorial for an escape room puzzle in which players must rotate paintings on a wall to depict the correct subjects. When all the images are rotated to the correct orientation (as determined by a magnet embedded in the side edge of the frame, detected by a magnetic sensor in the back board), an Arduino activates a relay to release a maglock.
    Timings
    00:00:00 - 00:01:27 Introduction and Demonstration
    00:01:28 - 00:04:12 Hardware Overview
    00:04:13 - 00:05:38 Wiring
    00:05:39 - 00:14:30 Arduino Code
    00:14:31 - 00:15:33 Wrapup
    For more information on this build, or to access the resources used in this and any of the other escape room projects featured on this channel, please see / playfultech
  • НаукаНаука

Комментарии • 19

  • @lwo7736
    @lwo7736 Месяц назад +5

    God bless reed switches, theyre so useful for escape room puzzles.

    • @robertedlund6357
      @robertedlund6357 Месяц назад

      I agree but….they are fragile. I built a table with challenge to set the table correctly for the guests. But the small glass tubes broke.
      Hall Effect sensors are an option to consider.

  • @electronics.unmessed
    @electronics.unmessed Месяц назад

    Nice project! Thx for sharing your ideas that are pretty unconventional.

  • @Scarabete
    @Scarabete Месяц назад +1

    Amazing !

  • @ytfp
    @ytfp Месяц назад

    what a wonderful little project and artistic too.

  • @andywoodward3097
    @andywoodward3097 Месяц назад

    Amazing job on this one. So many ideas here!

  • @robertedlund6357
    @robertedlund6357 Месяц назад +1

    As always excellent vid. Very good that you cover the whole range … from screws, holes, all the way to coding.
    Suggestion of alternative is to use illustrations that actually does not depict things but rather shapes. Then you can integrate the pictures in a story of solving a geometric puzzle.

  • @bobbybain2576
    @bobbybain2576 Месяц назад +1

    3:00 How were you able to center the lazy susan around the point you chose, and the center of the object? I have just been eyeballing it, to not very good results
    ...

  • @Alas_Sombrias
    @Alas_Sombrias Месяц назад

    Good video. Could you make more unity AR tutorials?

  • @josephvanclersson7906
    @josephvanclersson7906 Месяц назад

    Please how Can i add a sound effects and light when door opened ❤❤

  • @Yulkry15
    @Yulkry15 21 день назад

    Hi, i'm a French Game Master and i'm about to open my own Escape Game in like 1 or 2 months. One of my friend (who is also a GM) told me about you and your channel (that i already discover by myself before) and i'm asking myself if u can maybe help me with commands. I mean that i think that with your tutorials i can set up my puzzle but i don't really what to buy and in how much quantity. Is there any space to text with u ? Do you have any advise to send to me ?
    Have a nice day.

  • @medo67041
    @medo67041 Месяц назад

    How to get painting i can't find them

    • @PlayfulTechnology
      @PlayfulTechnology  Месяц назад

      Explained here: ruclips.net/video/KxiQRMe2BN4/видео.html

  • @konstantinsirotkin3430
    @konstantinsirotkin3430 Месяц назад +1

    Clearly this can be done with a 4-input AND chip (well, maybe with a Schmitt trigger to buffer the inputs). So why did you choose Arduino? For consistency with other projects and expandability?

    • @IAmZamuel
      @IAmZamuel Месяц назад +2

      He explains why at 6:00

    • @PlayfulTechnology
      @PlayfulTechnology  Месяц назад

      Yes, I explain this in the video. ruclips.net/video/I7XbusTNlRY/видео.html

    • @konstantinsirotkin3430
      @konstantinsirotkin3430 Месяц назад

      Sorry, missed that

    • @jaycee1980
      @jaycee1980 Месяц назад +1

      You can do it with 74 series logic but by the time you've laid out such things with schmit ttriggering to avoid false sensing, and a set/reset latch to drive the mag lock, you may as well use a cheap microcontroller. Additionally the microcontroller can be programmed for any combination you like, and its much easier to change than discrete logic
      I've gone down this rabbit hole myself and yeah, "throw a microcontroller at it" is quite a valid solution now, both in terms of flexibility and cost.

    • @konstantinsirotkin3430
      @konstantinsirotkin3430 Месяц назад

      @@jaycee1980 That was basically what I wanted to know: whether it makes sense to make self-contained component using discrete logic that is guaranteed to work (taking "guaranteed" with a grain of salt, of course) versus making it infinitely versatile with a microcontroller.