hello, i'm kind of new to wireless communication and arduino so i'm a little bit confused about some things..
the project that i was interested of making involves the use of HC-SR04, an lcd, and an arduino uno. initially, the plan was to use the arduino and the ultrasonic sensor(HC-SR04) to compute and display the distance in the lcd. however, i was asked to make the sensor and the lcd located at different locations which made my project a little bit complicated.
so i found this 433 MHz module which uses ASK modulation which from my understanding, transmits high frequency modulated by digital signals. so i thought since the output of the sensor is digital, is it possible to just directly connect it to the transmitter module and then connect the arduino uno at the receiver side to use pulseIn for the computation of distance and the display for the lcd?
The ASK modules can turn the transmitter on and off, that is not even a real "modulation".
The receivers have automatic gain control, they receive noise when nothing is transmitted.
What you want to do might work a little at a distance of 50 cm.
If you have enough time, you could do a test. But instead of using a 555, use an Arduino board, and transmit the HC-04 pulse directly with the TX module. Trigger the HC-04 perhaps 10 times a second. You should be able to receive that pulse. It will be only for short distances and it is unreliable. Maybe it will be good enough for a quick demonstration ?
I was actually browsing through other threads and it seems that the ask module doesn't really modulate any digital data instead it waits for binary data to be modulated. And with my sensor,the output isn't binary but something like a pulse width variation or something. Anyway thanks for the replies.