{
  "id": "6lx7yWgnHoT5GHq3",
  "createdBy": "15sg55K8KHkN",
  "dateCreated": 1689064662293,
  "name": "Arduino - Blink (BlockDuino)",
  "meta": {
    "logo": "https://raw.githubusercontent.com/edrys-labs/lab-arduino-basics/main/media/blockduino.jpg",
    "description": "Discover the exciting world of electronics with our Arduino blink tutorial! This beginner-friendly guide is designed for 5th graders and above, introducing students to the basics of programming and physical computing using an Arduino board. Follow step-by-step instructions to create your first LED blink project, learn to communicate with your computer using serial input and output, and solve a coding challenge to reinforce your understanding. Start your journey into the fascinating realm of coding and electronics today!",
    "selfAssign": true,
    "defaultNumberOfRooms": 0,
    "id": "79sFHo6ONB1S25cTN7emXmOibQ2HNWb2G9X3Xn2x"
  },
  "members": {
    "teacher": [],
    "student": []
  },
  "modules": [
    {
      "url": "https://edrys-labs.github.io/module-markdown-it/index.html",
      "config": "### Introduction to Arduino and Physical Computing\n**What is Arduino?**\nArduino is a popular open-source platform used for building electronics projects. It consists of both a physical programmable circuit board (often referred to as a microcontroller) and a piece of software, or IDE (Integrated Development Environment), which runs on your computer. You use this software to write and upload computer code to the physical board.\n**What is Physical Computing?**\nPhysical computing involves designing and building interactive physical systems through the use of software and hardware that can sense and respond to the world around them. With Arduino, you can read inputs – light on a sensor, a finger on a button, or a Twitter message – and turn it into an output – activating a motor, turning on an LED, publishing something online. You can tell your board what to do by sending a set of instructions to the microcontroller on the board.\n",
      "studentConfig": "",
      "teacherConfig": "## Welcome for Teachers\n\n> This can be used as a base laboratory to create further and more elaborate labs with [edrys-Lite](https://edrys-labs.github.io).\n> You are currently in the Lobby. If there is a station available you can switch to it and try out the terminal.\n> Otherwise, if you are in teacher-mode you can share a lab by clicking onto `setting` >> `station` and then by clicking the presented link,\n> which is the same as the current link, but only with the word `station` instead of `classroom`.",
      "stationConfig": "",
      "showInCustom": "lobby",
      "width": "full",
      "height": "huge"
    },
    {
      "url": "https://edrys-labs.github.io/module-blockly-duino-v2/index.html",
      "config": {
        "runCommand": "execute",
        "board": "arduino_mega"
      },
      "studentConfig": "",
      "teacherConfig": "",
      "stationConfig": "",
      "showInCustom": "station",
      "width": "full",
      "height": "huge"
    },
    {
      "url": "https://raw.githubusercontent.com/edrys-labs/module-markdown-it/2.0.0/index.html",
      "config": "# Arduino Tutorial\n## Step 1: Your First Project - The Blinking LED\n\n**Objective**: To make an LED blink on and off every second.\n\n1. **Program Your Arduino**:\n\n   - Open your Arduino IDE.\n   - Modify your Blockduino, so that it looks like the following code:\n\n     ![Blink example](https://raw.githubusercontent.com/edrys-labs/lab-arduino-basics/main/media/blink.png)\n  \n   - Click on the \"Run Code\" button to send your code to the Arduino.\n\n2. **See the Magic**: Once uploaded, the LED on your breadboard should start blinking.\n\n## Step 2: Adding Serial Communication\n\n**Objective**: To control the LED blinking with a command from your computer.\n\n1. **Modify Your Code**:\n\n    - Add the following to enable serial communication:\n\n       ![Serial Communication](https://raw.githubusercontent.com/edrys-labs/lab-arduino-basics/main/media/serial.png)\n\n2. **Test Your Setup**:\n\n    - Open the Serial Monitor in the Arduino IDE.\n    - Type `1` to turn the LED on and `0` to turn it off.\n\n### Wrap-Up\n\nCongratulations! You have successfully completed the Arduino blink tutorial, mastered basic serial communication. Now, you're ready to explore more complex projects and dive deeper into the world of physical computing!",
      "studentConfig": "",
      "teacherConfig": "",
      "stationConfig": "## Instructions for Station-Sharing \n\nYou are currently responsible for sharing a station of this lab.\nYou have multiple options to share a or your terminal.\nTherefor we use the pyxtermjs - terminal server from:\n\nhttps://github.com/edrys-labs/module-pyxtermjs\n\n### Using Docker\n\nIf you haven't done it so far, install [docker](https://docs.docker.com/engine/install/).\nOr, follow one of the instruction-videos for your system:\n\n<details>\n<summary>Install Docker on Linux</summary>  \n<iframe\n  style=\"width: 100%; aspect-ratio: 16 / 9\"\n  src=\"https://www.youtube.com/embed/cqbh-RneBlk?si=juvUM5d2OSZ28WBv\"\n  title=\"YouTube video player\"\n  frameborder=\"0\"\n  allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\"\n  referrerpolicy=\"strict-origin-when-cross-origin\"\n  allowfullscreen></iframe>\n</details>\n\n<details>\n<summary>Install Docker on Windows</summary>\n<iframe\n  style=\"width: 100%; aspect-ratio: 16 / 9\"\n  src=\"https://www.youtube.com/embed/WDEdRmTCSs8?si=X0agStn1akNcZLGu\"\n  title=\"YouTube video player\"\n  frameborder=\"0\"\n  allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\"\n  referrerpolicy=\"strict-origin-when-cross-origin\"\n  allowfullscreen></iframe>\n</details>\n\n<details>\n<summary>Install Docker on MacOS</summary>\n<iframe\n  style=\"width: 100%; aspect-ratio: 16 / 9\"\n  src=\"https://www.youtube.com/embed/-EXlfSsP49A?si=OZ_l4_2hDKb6ULQ_\"\n  title=\"YouTube video player\"\n  frameborder=\"0\"\n  allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\"\n  referrerpolicy=\"strict-origin-when-cross-origin\"\n  allowfullscreen></iframe>\n</details>\n\nThen the only thing that is required is to run the following command:\n\n```bash\ndocker run -it -p 5000:5000 --device=/dev/ttyACM0:/dev/ttyACM0 crosslab/edrys_pyxtermjs_arduino\n```\n\nThis will download the pyxtermjs terminal-server from docker-hub and run it in a secure environment.\n### Using Python\n\nYou can also share your terminal directly via Python, visit the following project\n\nhttps://github.com/edrys-labs/module-pyxtermjs\n\n... the easiest way is to perform the following steps:\n\n``` bash\n# 1. clone the repository or download the folder manually\ngit clone https://github.com/edrys-labs/module-pyxtermjs\n\n# 2. install all required sources\npip3 install -r requirements.txt\n\n# 3. run the terminal-server\npython3 -m pyxtermjs --cors True --command bash --port 5000\n```",
      "showInCustom": "station",
      "width": "full",
      "height": "huge"
    },
    {
      "url": "https://edrys-labs.github.io/module-station-stream/index.html",
      "stationConfig": {
        "video": true,
        "audio": false
      },
      "showInCustom": "station",
      "width": "half",
      "height": "medium"
    },
    {
      "url": "https://edrys-labs.github.io/module-pyxtermjs/index.html",
      "stationConfig": {
        "server": "http://localhost:5000/pty",
        "execute": "execute",
        "script": "echo $CODE | base64 --decode > Blink.ino\narduino-cli sketch new Blink\nolddir=$(pwd)\nmv Blink.ino Blink\ncd Blink\narduino-cli board attach -p /dev/ttyACM0 -b arduino:avr:uno\ncd $olddir\narduino-cli compile Blink && arduino-cli upload -p /dev/ttyACM0 Blink && arduino-cli monitor -p /dev/ttyACM0\n",
        "enable": {
          "teacher": true,
          "student": true
        }
      },
      "showInCustom": "station",
      "width": "half",
      "height": "medium"
    }
  ]
}