I am trying to recode a 433MHz signal (two: garage door opener and roller shutter/opener). I bought a simple chinese Model: MX-FS-03V and installed RFSniffer as well as piscope (using pigpiod). I cannot decode any signal because there is too much noise. RFSniffer does not output anything. Therefore, I added two 100muF and two condensators (following https://dmohankumar.wordpress.com/2015/ ... n-note-13/) and still have without pressing any buttons on the sender the picture below
Since I am living in the countryside I suspect that to be noise, in particular because RFSniffer does not output anything (without and with lamda/4 antenne attached to the receiver).
Does anybody has an idea what is going on here? I tried this on a RPi3 with jessie (newest version) and RPi2 with wheezy.
Noise with 433MHz receiver [Completely solved]
Last edited by andies on Fri Jan 13, 2017 5:42 pm, edited 6 times in total.
raspberry B, Noir camera, Mac Book Air, iPhone, Bezzera
Re: Noise with 433MHz receiver
OK, I managed to kill much of the noise using a 1kOhm (between Data and GRD). But now I have a constant high
and putting my sender about 1cm close to the receiver gives nothing.raspberry B, Noir camera, Mac Book Air, iPhone, Bezzera
Re: Noise with 433MHz receiver
Have you tried http://abyz.co.uk/rpi/pigpio/examples.html#pdif2__433D ?
It should be a lot better at rejecting noise (and use a lot less CPU).
Get rid of the resistor.
It should be a lot better at rejecting noise (and use a lot less CPU).
Get rid of the resistor.
Re: Noise with 433MHz receiver
Yes, I tried that - to no avail. My problem seems to be that there is a constant HIGH on data (or too much noise) and in particular nothing if I press the button of my sender.
raspberry B, Noir camera, Mac Book Air, iPhone, Bezzera
Re: Noise with 433MHz receiver
Have you removed the resistor?
Could you capture a few milliseconds of the received data and show the piscope display?
Could you capture a few milliseconds of the received data and show the piscope display?
Re: Noise with 433MHz receiver
The picture above was without the resistor (entire length is 1000ms, as in the default piscope setup). The picture below (my second post) was with resistor.
raspberry B, Noir camera, Mac Book Air, iPhone, Bezzera
Re: Noise with 433MHz receiver
(Maybe the receiver is broken?)
raspberry B, Noir camera, Mac Book Air, iPhone, Bezzera
Re: Noise with 433MHz receiver
I'd get rid of any signal conditioning (capacitors and resistors) so we can see the actual signal - noise and all.
A fob message will be about 40 ms long (see http://abyz.co.uk/videos/433MHz.webm to get some idea).
A fob message will be about 40 ms long (see http://abyz.co.uk/videos/433MHz.webm to get some idea).
Re: Noise with 433MHz receiver
Thanks for your patience. Here is the raw signal without any resistors or capacitors.
raspberry B, Noir camera, Mac Book Air, iPhone, Bezzera
Re: Noise with 433MHz receiver
Okay, there may be a signal there.
Try filtering out short edges to see if it can be cleaned up.
Try pigs fg 17 150 from the command line. Increase the 150 figure to filter more aggressively.
Try filtering out short edges to see if it can be cleaned up.
Try pigs fg 17 150 from the command line. Increase the 150 figure to filter more aggressively.
Re: Noise with 433MHz receiver
I just crashed my Pi. Uhmpfg. It will take some time ;-(
raspberry B, Noir camera, Mac Book Air, iPhone, Bezzera
Re: Noise with 433MHz receiver
I think I have fooled myself: My RPi has rpimonitor installed. This uses port 8888 that is also occupied by PiGPIO. Both seem to interact and this stoped my RPi.
I have now deinstalled rpimonitor. Everything is fine besides I only get a constant high on GPIO 27, no noise nor any signal. Maybe it was rpimonitor that produced the "noise"? And also it seems that the receiver is broken? I have ordered two new receivers and can check in a few weeks.
I have now deinstalled rpimonitor. Everything is fine besides I only get a constant high on GPIO 27, no noise nor any signal. Maybe it was rpimonitor that produced the "noise"? And also it seems that the receiver is broken? I have ordered two new receivers and can check in a few weeks.
raspberry B, Noir camera, Mac Book Air, iPhone, Bezzera
Re: Noise with 433MHz receiver
OK, the new receiver arrived ("433Mhz Superheterodyne Wireless Receiver RXB8 3.3V-5.5V Steady for Arduino/AVR"). I also set up a competely new RPi3, just to be sure that nothing is disturbing. Unfortunately, I have no reaction if I
with GPIO 2 (PIN 27 according to https://www.raspberrypi.org/documentati ... nd-raspi2/). Now that I have checked two receivers and in fact two raspberries I am more or less finished. Any idea anyone?
(No RPi-Monitor installed.)
Code: Select all
./_433D -r2
(No RPi-Monitor installed.)
raspberry B, Noir camera, Mac Book Air, iPhone, Bezzera
- davidcoton
- Posts: 6747
- Joined: Mon Sep 01, 2014 2:37 pm
- Location: Cambridge, UK
Re: Noise with 433MHz receiver
GPIO2 is not on pin 27 according to my reading of the link. It should be on pin 3. See also http://pinout.xyzandies wrote: GPIO 2 (PIN 27 according to https://www.raspberrypi.org/documentati ... nd-raspi2/)
Location: 345th cell on the right of the 210th row of L2 cache
Re: Noise with 433MHz receiver
GPIO 2 is connected to pin 3. Pin 27 is connected to GPIO 0.
Do you have an aerial attached to the receiver? Are you powering the receiver from 3V3 or 5V? If 5V are you cutting the receiver output to a Pi safe 3V3? Have you connected the receiver ground to a Pi ground?
A photo of your set-up will be useful.
You could use piscope to confirm you are using the correct GPIO. Connect it to ground and then to 3V3 at you should see the signal on piscope.
Do you have an aerial attached to the receiver? Are you powering the receiver from 3V3 or 5V? If 5V are you cutting the receiver output to a Pi safe 3V3? Have you connected the receiver ground to a Pi ground?
A photo of your set-up will be useful.
You could use piscope to confirm you are using the correct GPIO. Connect it to ground and then to 3V3 at you should see the signal on piscope.
Re: Noise with 433MHz receiver
Sorry for the misunderstanding. I connected Data tojoan wrote:GPIO 2 is connected to pin 3. Pin 27 is connected to GPIO 0.
Physical pin 13 / BCM pin 27 / Wiring Pi pin 2.
No, but the distance is <1cm.joan wrote:Do you have an aerial attached to the receiver?
5 V.joan wrote:Are you powering the receiver from 3V3 or 5V?
No. Is this necessary?joan wrote:If 5V are you cutting the receiver output to a Pi safe 3V3?
Yes, I did. And: Thank you all!joan wrote: Have you connected the receiver ground to a Pi ground?
Attached are two pictures of the setup.
- Attachments
-
- The setup
- IMG_7225.jpg (47.12 KiB) Viewed 12208 times
raspberry B, Noir camera, Mac Book Air, iPhone, Bezzera
Re: Noise with 433MHz receiver
I can't make out the connections at the Pi end. I'll assume they are GPIO 25, 5V and ground.
If you power the receiver from 5V it is likely to output 5V on its output (unless the datasheet says otherwise). 5V frd into a Pi GPIO can damage the GPIO and the Pi. It is safest to use a pair of resistors as a voltage divider to drop the 5V to a Pi safe 3V3.
I can't see anything wrong with your set-up. Are you sure the transmitter is working?
If you power the receiver from 5V it is likely to output 5V on its output (unless the datasheet says otherwise). 5V frd into a Pi GPIO can damage the GPIO and the Pi. It is safest to use a pair of resistors as a voltage divider to drop the 5V to a Pi safe 3V3.
I can't see anything wrong with your set-up. Are you sure the transmitter is working?
Re: Noise with 433MHz receiver
I will use the other GPIOs to check (I am using GPIO 27 currently). If one GPIO is destroyed, are the other still working?
This is the third receiver I am using.
This is the third receiver I am using.
raspberry B, Noir camera, Mac Book Air, iPhone, Bezzera
Re: Noise with 433MHz receiver
I doubt the GPIO is destroyed. Because something can happen doesn't mean it will.andies wrote:I will use the other GPIOs to check (I am using GPIO 27 currently). If one GPIO is destroyed, are the other still working?
This is the third receiver I am using.
I'm not sure if I have already pointed to a test, http://abyz.co.uk/rpi/pigpio/faq.html#H ... ed_my_GPIO
Re: Noise with 433MHz receiver
Thank you for the test. Result:
Code: Select all
Skipped non-user gpios: 0 1 28 29 30 31
Tested user gpios: 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
Failed user gpios: None
raspberry B, Noir camera, Mac Book Air, iPhone, Bezzera
Re: Noise with 433MHz receiver
I have now put a complete new jessie light on my RPi3 with nothing on it except wiringPi: No result. Then I added PiScope (with all the dependencies) and connected the GPIOs with two different receivers. I do not get any result. I have two 433-utils (garage opener and shutters mover) - nothing happens in PiScope.
Does anyone have an idea where I get search for the error? Maybe buying an ardino? I have seen on the web that some people have used exactly the garage opener that I am using and were able to sniff the signal. Why do I see nothing at all?
Does anyone have an idea where I get search for the error? Maybe buying an ardino? I have seen on the web that some people have used exactly the garage opener that I am using and were able to sniff the signal. Why do I see nothing at all?
raspberry B, Noir camera, Mac Book Air, iPhone, Bezzera
Re: Noise with 433MHz receiver
I have no ideas. I'd expect the receiver to pick up a signal even if it's just static. I do have a 16 cm aerial soldered to my receivers and transmitters though.andies wrote:I have now put a complete new jessie light on my RPi3 with nothing on it except wiringPi: No result. Then I added PiScope (with all the dependencies) and connected the GPIOs with two different receivers. I do not get any result. I have two 433-utils (garage opener and shutters mover) - nothing happens in PiScope.
Does anyone have an idea where I get search for the error? Maybe buying an ardino? I have seen on the web that some people have used exactly the garage opener that I am using and were able to sniff the signal. Why do I see nothing at all?
Re: Noise with 433MHz receiver
Noise could be coming from many sources - Wireless Sensor on Central Heating, Harmonic from cell phone, even the processor on a PC, If you have other wireless devices try switching them off and seeing if the signal goes away. Some old BT adaptors also cause the problem as do some routers
Not saying this is the cause but you can't be certain.
Not saying this is the cause but you can't be certain.
Name is Mike, Radio Ham and Weather Nut.
Total Beginner with Rpi Zero
Total Beginner with Rpi Zero
Re: Noise with 433MHz receiver
The problem isn't noise per se, it's the absence of any signal, even noise.UK_Ham wrote:Noise could be coming from many sources - Wireless Sensor on Central Heating, Harmonic from cell phone, even the processor on a PC, If you have other wireless devices try switching them off and seeing if the signal goes away. Some old BT adaptors also cause the problem as do some routers
Not saying this is the cause but you can't be certain.