Category Archives: Raspberry Pi

One Of My Favorite Raspberry Pi Projects Ever – Dakboard With LogitechMediaServer

Easiest Raspberry Pi Wall Calendar Yet

What you need:

– Raspberry Pi Zero (or better)

– SD Card

– TV with at least one HDMI input

– Wall mounting bracket for TV

– HDMI Cable

– 1.5 amp power brick

– WiFi dongle (not needed if using a Pi 3 with onboard wifi)

– Micro HMDI to HDMI adapter (only needed if not using a Pi2 or 3)

– Micro USB to USB adapter (only needed if not using a Pi2 or 3)

Inexpensive 433 MHz Motion Sensor for HomeAssistant

Inexpensive 433 MHz Motion Sensor for HomeAssistant

3 Replies

Last week I showed you how you can capture the remote codes for cheap radio controlled electrical outlets and this week the theme is 433 MHz MOTION SENSORS.  With a properly configured motion detector you can then trigger that outlet.  For example……..when you open the pantry door the light comes on………when you walk in the laundry room, the light comes on……..when someone presses the smart doorbell, the lights come on.  Pretty handy stuff.

Most home automation motion sensors send TWO signals. One when they are tripped and one when they reset.  Most of them will stay tripped for a predetermined amount of time.  Usually for 2-4 minutes or so.   Good idea to know the state of the motion detector BEFORE you buy it.

For example I have a motion detector with a 4 minute reset on it in my garage and laundry closet. That means that both of those lights that get triggered are staying on for 4 minutes whether I like it or not (unless I write some crazy code).

But some of these cheap sensors send ONE signal.  “I’m ON” and that’s it.  They don’t reset.  That provides a challenge.  This is one such sensor I bought (and DEFEATED).

433 MHz Motion Sensor

It costs about $12 now and you can get them even cheaper.  I got this for an outside sensor.

Anyway it does have some user control as inside there are two DIP switches.  One sets the sensor state for 5 seconds or 5 minutes and the other one turns the LED indication it has been tripped on or off.

If you want to be stealthy, turn off the LED.  I personally like the bad guys to know they got got.

Anyway before you can do this you must capture the code with a program called RTL_433.  I discussed this in another blog.   

RTL_433 And Home Assistant Set Up

MQTT 433 MHz Motion Sensor

Once your hardware is set up (an RTL-SDR device) you run this command on that pi to send THIS code below.  The last part would only be necessary if your mosquitto MQTT server is on another device.  Mine is.

rtl_433 -F json -M utc | mosquitto_pub -t home/rtl_433 -l -h 192.168.XX.X

Now that will take all the messages it receives from the SDR device (on 433.920 MHz) then it publishes a message on your MQTT server that looks like this:

{"time" : "2019-01-24 00:26:07", "model" : "Kerui Security", "id" : 924442, "cmd" : 10, "state" : "motion"}

Now we have to extract that data to make sure we hone in on this device (because I have multiple devices on this same MQTT Topic).  In your HomeAssistant configuration.yaml file you add the following to create a binary sensor.

binary_sensor:
- state_topic: home/rtl_433
name: Garage Motion
value_template: >
{% if value_json is defined and value_json.id == 924442 %}
{{ value_json.state }}
{% endif %}
payload_on: 'motion'
off_delay: 5
qos: 1

Whew!  You can see I have it so it only takes information from sensor id #924442 and when the “state” = “motion” then it triggers the binary sensor.  Then the line with:

off_delay: 10

Sets the sensor back to the OFF position after 10 seconds.  So with a ONE signal sensor I can turn the state to OFF after how ever many seconds I want.   That garage light will now go out after 1 minute or 2 minutes or 2 seconds……..whatever I want.

Well……It works PERFECTLY.  Here’s what the tripped state looks like:

Now I can start making some automations to use with my $10 motion sensor.  Open the pantry door……..the light comes on……….hence the name “Pantry Motion”.

Automations For 433 MHz Motion Sensor

So what I did here was to make an automation to turn on one of my inexpensive outlets.  Eventually this will be tied to a smart light or smart switch.  Right at this moment I have no smart light nor have installed a smart switch in the pantry.  Changing the line of the entity_id in the action part of the code can turn basically any device on or off.   Because the code above leaves the sensor state on for 10 seconds, running the automation means the “light” (in this case outlet) will be on for 1 minute.  Pretty cool, huh?

automation 21:
  alias: Den Outlet Motion Sensor
  trigger:
    platform: state
    entity_id: binary_sensor.pantry_motion
    to: 'on'
#  condition:
#      condition: state
#      entity_id: sun.sun
#      state: below_horizon
  action:
    service: switch.turn_on
    entity_id: switch.den_outlet
automation 22:
- alias: Den Outlet Motion Sensor Off
  trigger:
    platform: state
    entity_id: binary_sensor.pantry_motion
    to: 'off'
    for: '00:00:50'
  action:
    service: switch.turn_off
    entity_id: switch.den_outlet

Notice that I have # marks in front of the condition statements.   In many cases you wouldn’t want a light to come on until after dark.  I left that in there to easily change it back if I find I don’t need the light on in the daytime, but hey, it is essentially a windowless closet.

Here’s a video of how it all works.  I shortened the sensor time for the purpose of the video.

And Bob is your Uncle.

Connect an RF 433 MHz Transmitter and Receiver to a Raspberry Pi

I’ve been dabbling with 433 MHz devices over the past few days and tying those devices in with my home automation software named HomeAssistant.  A decent transmitter receiver kit will set you back a whopping $10 or so.  I opted for this one.

It performs extremely well in a home environment and has great specs.

One of the gotchas of this device though is it comes with ABSOLUTELY NO DOCUMENTATION WHATSOEVER.  You’d be hard pressed to find much useful on line as well. So that’s where I come in.

Fortunately the wiring is pretty basic and the pins are clearly marked on the back side of the circuit boards.

Continue reading

RpiTX Replay Attack on GE MySelectSmart Remote Control Outlet

Was walking around Target and saw an inexpensive remote outlet which I was pretty sure I could perform the Replay Attack on.

The Replay Attack  is when you record a signal from something and transmit it back to perform the operation.

These devices typically transmit around 433 MHz and have no encryption of any kind whatsoever.  Just a simple transmit burst for on and off functions.

Continue reading

OP25 Raspberry Pi Audio Sucks A Big DAC

Ok I’ve been on a roll playing with OP25 and Raspberry Pi and one thing I can tell you is that the onboard audio from the bcm2835 chip is somewhat inadequate.  Oh, it works but you’re going to need a powered speaker or really efficient headphones, and even then it is a bit light.

What to do?

Add a USB Digital to Analog converter (DAC).  Depicted here is a HiFiMeDIY USB DAC.  This is a tad bit expensive for this project but I have like 4 of these things laying around the house.  They are ridiculously good.   If you like music slap one of these bad boys on your laptop in the hotel room and the quality of your music will improve ten fold.

That’s not what we’re doing here though.

There are a LOT of USB DAC’s out there and some cost just a few dollars.  HiFiMeDIY makes some cheaper ones as well that are way more than enough for improving your OP25 sound.

 

 

The Phat DAC costs $15 but you’ll have to solder header pins on yourself.  That may be the cheapest, and best route.  It has the form factor for the Raspberry Pi Zero but it works on all the Pi’s.

 

 

Continue reading

OP25 on a Raspberry Pi (part 3)

In my last part I set the Pi up to stream to Broadcastify.  In this one we are just going to pump audio out through the headphone jack.

I’m doing this with an old generic black RTL-SDR and it works and it works fine but it is kind of susceptible to heat and cold and the ppm correction drifts a bit.  I really recommend getting a v3 RTL-SDR or a NESDR Smart as they seem more stable.  At any rate it doesn’t matter, you’ll just have to deal with the drift if you have any.

My assumption here is that you have Raspbian installed on at least a Pi 3.  I haven’t tried it on a lesser Pi but I had it on a Pi 3 B + and then I found a couple Pi 3 B’s laying around and figured I’d reclaim my B+ for another project on another day.  OP25 runs fine on the Pi 3.

Continue reading

OP25 Raspberry Pi Streaming Part 2

So I finally figured out OP25 and I have this brand new Raspberry Pi 3 B + laying around doing nothing.  In this segment we’ll install OP25 on Raspberry Pi and then take our police scanner feed and send it to the internet on Broadcastify.

As someone pointed out to me yesterday, “There’s an app for that” they are indeed correct.  You can get Police Scanner Apps for IOS and Android.   Guess where the feeds in those apps comes from?  If you said Broadcastify you’d be correct.  So if no one is feeding your municipality   then there will be no feed in the app.  We will be that feed.

So the assumption is that you have a Pi with Raspbian installed and you kind of know how to use it.

Continue reading