AdSense

Monday, July 10, 2017

6 - Arduino: Relay


ARDUINO: RELAY

- Layout for this exercise:




1 - Introduction

A relay is an electromechanical switch that can control much more voltage and current than an Arduino pin.

- For instance, a relay could be useful to connect an Arduino to a device like a lamp or any other electrical machine of 120 V.

- A relay consists of a coil of wire and switch contacts. When power is applied to the coil it becomes magnetized and pulls the switch contacts closed. 

 A transistor is used to handle the current because in this case much more power is needed than an Arduino can provide.

-  There are 3 contact pins used to connect the device handled by the relay:

  • COM = common            <- connected to power
  • NC = Normally Closed  <- connected to the yellow LED
  • NO = Normally Open    <- connected to the red LED

- Also, there are 2 more pins for the coil used to control the relay. One side is connected to the collector of the transistor and the other one to 5 V.




- The relay can be in 2 different modes:

  • OFF = COM is connected to NC
  • ON = COM is connected to NO

- Also, a diode is used to protect the transistor from the voltage spike generated when power is disconnected from the coil, what could damage the transistor. One leg of the diode is connected to the transistor collector and the other to the coil.


2 - Code

- Arduino sketch:




- Let's analyze the code.


- First of all, the transistor base is assigned to the Arduino pin 4 in output mode:



- Now, the transistor base drives current (pin 4 is set to HIGH) energizing the coil and the switch contacts are closed. As a consequence COM connects to NO and the relay is ON for 2 seconds (the red LED lights). 






- Then, when the transistor base is LOW the COM connects to NC and the relay puts into OFF mode for another 2 seconds (the yellow LED lights):



3 - Testing the circuit and the code

- In this video the circuit and the code are tested. The 2 LEDs light alternatively every two seconds and the relay contacts "click" is heard very clearly:






Thursday, July 6, 2017

5 - Arduino: Water level sensor


ARDUINO: WATER LEVEL SENSOR

- Layout for this exercise:




- The goal of this exercise is to use a water level sensor with an Arduino board that could be useful for detecting water level presence in different scenarios like a basement or facility flood, outdoor rain sensors, etc ...

- As seen in the picture the water sensor has got 3 pins connected to the Arduino board in this way:

  • VCC = 5 V
  • GND = GND
  • S (sensor) = A0 (Arduino analog input) 


- Code for the circuit:




- The code takes the reading from the sensor S what is directly connected to the Arduino analog input A0.

- According with the reading value the calibration goes from 0 to more than 700 dividing into four different intervals.

- Starting from "No water" (the sensor is not in contact with water), and after introducing the sensor into a vessel filled with water, the serial output indicates the change immediately and the corresponding water level height:





- Testing the circuit:

























Wednesday, July 5, 2017

4 - Arduino: Hygrometer for sensing soil moisture


ARDUINO: HYGROMETER FOR SENSING SOIL MOISTURE

- Layout for this exercise:




- The goal of this exercise is to build an Arduino circuit able to detect moisture levels, for instance it could be used for a pot of plants.

- The circuit will trigger a couple of alarms (buzzer sound and red LED) whenever the moisture level is under a moisture threshold specified at the Arduino sketch.

- There are several moisture sensor available in the market, for instance the HL-69, YL-69, FC-28, ..., all of them compatible with the Arduino board.

- A moisture sensor consists of two parts: a prong sensor and a controller.

- On one side the controller is directly connected to the sensor, on the other side it is connected to the Arduino board:

  • AO (Analog Output) -> A0
  • DO (Digital Output) -> not used
  • GND (Ground) -> GND
  • VCC -> +5 V


- Code:




- Let's analyze the code.

- First of all, the readings are taken from the analog A0 pin connected to the controller:






- Because the range of digital conversion at the analog input A0 is from 0 to 1023, let's calibrate the reading so that 0 corresponds to 100% and 1023 to 0% of moisture:




- When moisture is below 20% the two alarms are triggered: a buzzer produces a sound of 2000 Hz and a red LED blinks:




- Also, the serial ouput prints the moisture level on the screen every 2 seconds, whenever a new reading is made. In this picture the % of moisture varies abruptly when the sensor detects water:




- Testing the circuit, when the sensor is touching dry soil the buzzer beeps and the red LED blinks. However, if water is added to the soil both the beep and red light stop. Also, a message is printed through the serial monitor displaying the increase in humidity level:

























Saturday, July 1, 2017

3 - Arduino: setting alarms for a Temperature Sensor


ARDUINO: SETTING ALARMS FOR A TEMPERATURE SENSOR

- Layout for this exercise:




1 - Introduction

- The goal of this exercise is to trigger 3 alarms when a temperature threshold is exceeded.

- For that purpose an Arduino microcontroller is connected to 4 electronic devices:

a) TMP36: precision temperature sensor that measures the temperature of the environment
b) red LED: blinks when the temperature goes above a limit
c) serial monitor: prints messages on the serial terminal
d) buzzer or piezo element: beeps when the temperature goes above a limit


2 - Code

- This is the code used in this exercise:




3 - Analysis of the code

- The temperature sensor is connected to the input analog A0 pin which converts the voltage output of the sensor to digital values, and finally translating into Farenheit degrees:






- Setting a temperature threshold, three events happen if the threshold is exceeded:



a) a beep of 2000 Hz and 500 ms:




b) a red LED blinks:




c) a warning message is printed at the serial monitor:








- The serial monitor is initialized to 9600 bauds:




- The series of Farenheit temperatures is normally displayed at the monitor, until a warning message (WARNING, VERY HOT !!) is triggered when the temperature goes above 100.00 F:




4 - Testing the circuit

- In this video it can be checked how the 3 alarms (red LED, buzzer beep and monitor message) go off when a hot air jet from a hair dryer is blown over the circuit, increasing the temperature above 100 F:











2 - Arduino: piezoelectric buzzer playing Jingle Bells


ARDUINO: PIEZOELECTRIC BUZZER PLAYING JINGLE BELLS

1 - Introduction

-  A buzzer is an electromechanical component that can be used to make noise or even play music.

- Inside the buzzer there is a coil of wire and a small magnet. When current flows through the coil it becomes magnetized and pulls towards the magnet creating a tiny "click". When the click is played thousands of times per second tones are created.
  
- The Arduino has a built-in command called tone() which clicks the buzzer at a certain frequency. 

- Frequencies used in this exercise and their corresponding notes:

x (g for a lower octave) = 196 Hz
y (a for a lower octave) = 220 Hz
c = 261 Hz
d = 293 Hz
e = 329 Hz
f = 349 Hz
g = 392 Hz
a = 440 Hz


2 - Layout schematics

 - The buzzer has two pins, one positive (marked by a "+" symbol) and the other negative.

 - In this example the positive pin is connected to Arduino digital pin 9 (optionally through a resistor of 330 Ohms), and the negative pin is connected to GND.





3 - Running the Arduino sketch

- The code used in this Arduino sketch:



- Running the code over the circuit (the resistor of the previous schematics has been removed to obtain louder sound from the buzzer):






1 - Arduino: Servo and DC Spinning motors


ARDUINO: SERVO AND DC SPINNING MOTORS

1 - Servomotor

- Layout for this exercise:




- The goal of this exercise is to make rotate a servo motor back and forth through the full range of motion, what is  180 degrees.

- A servo motor include feedback circuitry that allows it to be commanded to specific positions, what makes it very useful in robotics. 

- The servo has got 3 wires that can be connected with jumper wires: black goes to ground, red goes to 5 V and yellow goes to the Arduino 6 digital pin.


- Code:




- Let's analysis the code.

- First of all the servo library is included, so that all servo functions can be easily accessed. Also, a servo object called "s" is defined:




- Now, the servo object is attached to the Arduino 6 digital pin:




- The movement goes from 0 to 180 degrees:




- The first rotation takes 100 ms delay between each move, stepping 1 degree:




- 1 second of delay between the two rotations:




- The second rotation is faster because there is just 20 milliseconds between each move:



- Testing the circuit:




















2 - DC Spinning Motor

- Layout for this exercise:





- The goal of this exercise is to connect a DC motor to an Arduino circuit so that the motor starts spinning and accelerating up to a maximum speed and then decelerates until stopping.

- Two electronic components are used:

a) Transistor: it helps to run the DC motor, because the motor needs more current (even  100 or 250 mA) than provided by the Arduino pins (40 mA). The transistor has 3 pins (Collector: connected to the motor, Base: connected to the resistor, Emitter: connected to GND).

 b) Diode: when the motor is spinning and suddenly turned off, the magnetic field inside it collapses, generating a voltage spike that can damage the transistor. To prevent this, a diode is used, diverting the voltage spike away from the transistor. The diode has 2 pins (Cathode: connected to 5 V, Anode: connected to the transistor)


- Code:




- Let's analyse the code.

- The 10 pin is assigned as the motorPin and oputput mode. Also, the serial monitor is initialized with 9600 bauds, inviting the user to enter a speed inside the 0 to 255 interval:









- The analogWrite() function pulses the motorPin using the PWM(Pulse Width Modulation) technique,  varying the width of the pulse from 0% to 100%. 

- The motor accelerates with 10 milliseconds delay between each move:




- Same thing for the decelerating process:




- Once uploaded the sketch to the board the user enters the rotation speed through the serial monitor interface:





- Testing the circuit:








Friday, May 26, 2017

14 - Hacking the KANKUN SMART PLUG


HACKING THE KANKUN SMART PLUG

- Layout for this exercise:




- In this exercise we will use a Phyton script written by 0x00string. It is available here:

https://github.com/0x00string/kankuncontroller/blob/master/kkeps_controller.py





- The Python script allows to control the Kankun Smart Plug form a computer connected to the same network (OK_SP3) created by the plug. 

- The script takes advantage of the AES key used by Kankun and discovered in the previous post.

- Let's open the script kkeps_controller.py:






- For the purpose of hacking the plug we need its MAC address:





- That MAC address must be introduced into the script as the variable RMAC:




- The usage of the script requires the parameter -a --action:


















- Now, lets use kkeps_controller.py with -a on:




- The red light goes on and the connected lamp turns on: 





- Using kkeps_controller.py with -a off:




- The red light goes off and the connected lamp turns off: