Raspberry Pi. Урок 13. Регулировка мощности

Raspberry Pi — отличный вариант для домашнего автоматического контроллера. Но чтобы быть по-настоящему полезным, он должен включать и выключать электрические устройства. Это значит, что нужно безопасное управление с 110В.

learn_raspberry_pi_overview.jpg

В этом уроке мы будем использовать пассивный инфракрасный сенсор из Урока 12 и модуль Powerswitch Tail 2, чтобы автоматически переключать что-либо при фиксировании движения.

Детали

Для этого проекта Вам потребуются следующие детали:

learn_raspberry_pi_pirsensor_MED.jpg

Пассивный инфракрасный датчик
learn_raspberry_pi_powerswitchtail2_MED.jpg

Power Switch Tail 2

learn_raspberry_pi_cobbler.jpg

Pi Cobbler

learn_raspberry_pi_breadboard_half_web.jpg

Макетная плата размера 0,5

learn_raspberry_pi_pi.jpg

Raspberry Pi

learn_raspberry_pi_jumpers_web.jpg

Набор джамперов

Аппаратное обеспечение

Powerswitch Tail 2 выглядит как электрический провод 110В с коробкой посредине.

Если у Вас сеть 220В, то этот урок не для Вас.
If you have 220V mains, this tutorial wont work for you — If we knew of an equivalent 220V controller like the PST we would have a link to it here
learn_raspberry_pi_powerswitchtail2_MED.jpg

The box is actually an opto-isolated solid-state relay. The opto-ilsolation bit means that there is no actual electrical connection between the low voltage switching circuit and the 100V mains. This makes it extremely safe and removes any chance of accidentally frying your Pi.

What is more the control input consumes just 3 mA of current at 3.3V, which means we can control it directly from one of the Pi’s output pins.

The PIR sensor is connected to a different pin from lesson 12, so be sure to move the yellow lead.

learn_raspberry_pi_breadboard.png

The Powerswitch Tail comes with a little indicator LED that shows when it is on, so you do not need to connect anything high voltage to it yet.

Software

This project is possible the most over-engineered automatic light switch ever created. You really do not need a Raspberry Pi to turn on the Powerswitch, but the example can easily be adapted for other purposes. For example, you could use a combination of temperature, humidity, light, and perhaps some internet data on weather forecasts to turn on or off a heater, fan or humidifier.

import time

import RPi.GPIO as io

io.setmode(io.BCM)

 

pir_pin = 24

power_pin = 23

 

io.setup(pir_pin, io.IN)

io.setup(power_pin, io.OUT)

io.output(power_pin, False)

 

while True:

if io.input(pir_pin):

print(«POWER ON»)

io.output(power_pin, True)

time.sleep(20);

print(«POWER OFF»)

io.output(power_pin, False)

time.sleep(5)

time.sleep(1)

The program first sets up the two GPIO pins that are used, one as an input to the PIR sensor and one as an output for the Powerswitch Tail.

The main loop then just waits for the PIR sensor to sense movement and then prints a message and turns on the Powerswitch tail, waits 20 seconds then turns it off again.

It the output was turned on, it waits for 5 seconds to prevent immediate retriggering.

There is also always a 1 seconds delay each time around the loop.

Configure and Test

There are lots of ways to get the sketch from the listing below onto your Raspberry Pi. Perhaps the easiest is to connect to your Pi using SSH (See Lesson 6) opening an editor using the command below:

nano powerswitch.py

and then pasting in the code , before saving the files using CTRL-x.

learn_raspberry_pi_nano.png

To start with, cover the PIR sensor with something, so that it is not activated until you are ready.

Run the program as superuser using the command:

sudo python powerswitch.py

Uncover the PIR sensor and you should see a message saying ‘POWER ON’ and the little LED on the Powerswitch Tail should light, then turn itself off after 20 seconds.

Now this is all working, you can try attaching a lamp or some electrical appliance to the Powerswitch Tail.

Do not write code that turns the power on and off very rapidly. Many kinds of appliance, including lamps will be damaged by high frequency switching. This type of setup should turn things on for a few seconds minimum.

Работа магазина приостановлена. Заказы не принимаются.