# Workshop 2 plan ###### tags: `planning` ## Introducing ourselves * Ruslan * Amer * Osama ## The Goal * The goal of the second workshop is to help solving problems with initial connection and sensors ## Connecting WiFi ## Connecting to PyBytes [Manual](https://docs.pycom.io/pybytes/connect/#app) [Video Tutorial by Fredrik] (https://www.youtube.com/watch?v=2THov7819GA) ## Sensors Connecting Electrokit sensors [DHT11 video tutorial by Ruslan](https://youtu.be/UaZBxinlZxM) ## Problems solving and Questions * Any problems so far? ## Hello World Application ```python print(“Hello World)” ``` ## Blink Application import pycom import time pycom.heartbeat(False) ```python while True: pycom.rgbled(0xFF0000) # Red time.sleep(1) pycom.rgbled(0xFF00FF) # MAGNETTA time.sleep(1) pycom.rgbled(0x0000FF) # Blue time.sleep(1) ``` ## Problems solving and Questions * Any problems so far?