Carro de la compra

No hay artículos en el carro

No hay artículos en el carro

QCCAN - Transmisor y receptor RF inalámbrico de 433 MHz con antena para pedir módulo de control remoto Kit de bricolaje para Arduino

Envío gratis en pedidos superiores a Mex $600.00

Mex $390.66

Mex $ 191 .00 Mex $191.00

En stock

Acerca de este artículo

  • Transmisor y receptor RF de 433 MHz Superheterodino UHF ASK Módulo de interruptor de control remoto para kit de bricolaje inalámbrico Arduino.
  • Compatible con modulación ASK / OOK, la sensibilidad del receptor de -108 dBm.
  • Rango de entrada de voltaje de red: 2,2 V-5 V; Frecuencia de funcionamiento: 433,92 MHz, ancho de banda de aproximadamente ± 150 KHz.
  • Rendimiento de baja potencia, junto con un alto rango dinámico (superior a 60 dB). El módulo utiliza chip altamente integrado, amplificador de bajo ruido frontal integrado, mezcladores, filtros, circuito sintetizador de frecuencia, etc., puede maximizar la optimización de la señal.
  • Aplicaciones: se puede utilizar para interruptor de alimentación inalámbrico, enchufe, interruptor de control remoto, módulo receptor, productos para el hogar inteligente, cortinas de control remoto, MP3 remoto, etc.



Descripción del producto

Transmisor y receptor RF inalámbrico de 433 MHz con antena para pedir módulo de control remoto

Transmisor y receptor RF inalámbrico de 433 MHz con antena para pedir módulo de control remoto

Características del producto:

Compatible con modulación ASK / OK, sensibilidad del receptor de -110 dBm; Frecuencia de funcionamiento: 433,92 MHz, ancho de banda de aproximadamente ± 150 KHz; rango de entrada de voltaje de la red: 3,0 V-5 V. Corriente de funcionamiento: Tipo: 5,0 mA (requisito: VDD=5 V) ; Tipo: 6,0 mA (requisito: VDD=3 V)Corriente quiescente: Consumo de energía de 1 uALow; buena selectividad y supresión de radiación espuria, y certificación internacional CE / FCC fácil de pasar; buena supresión de radiación de oscilador local, módulo receptor múltiple para trabajar (es decir, más de ingresos únicos) y no interferirá entre sí, utilizado juntos sin afectar la distancia de recepción; múltiples tasas de transmisión, el módulo general para 2 KHz, hasta 10 KHz. Rango de temperatura de 44. . 0-85 °C. Tamaño ultra pequeño de 30,25 × 8,5 × 1 (mm) (se puede personalizar según el cliente). Antena externa: Cable de un solo núcleo de 32 cm, enrollado en una espiral

Transmisor y receptor RF de 433 MHz Superheterodino UHF ASK módulo de interruptor de control remoto

Aplicaciones

Interruptor de alimentación inalámbrico, enchufe, interruptor de control remoto, módulo receptor, control de acceso, coches eléctricos, motocicletas, productos antirrobo de automóviles, abrelatas de puertas remotas, sistema de control de cierrapuertas de seguridad, sistemas de vigilancia, productos de seguridad para el hogar, puertas eléctricas, host de alarma, controles de habitaciones, puertas obturadoras, ventanas, toma de control remoto, control remoto LED, puertas retráctiles, puertas correderas, cortinas de control remoto, control remoto , MP3, MP3,

El paquete incluye:

Módulo receptor de 5 unidades

Módulo transmisor de 5 unidades

10 antena (antena corta para transmisor; antena larga para receptor)


James Cotter
Comentado en los Estados Unidos el 31 de marzo de 2025
I used ChatGPT to write an RX and TX sketch and they worked for a while and then quit. There must be some extra fine tuning involved because the sketch worked once. I can not recommend this product.
Mohammed
Comentado en Arabia Saudita el 3 de agosto de 2024
Not tested yet,,as they need soldering the antenna,, they seems work fine
The Reel Deal
Comentado en los Estados Unidos el 22 de marzo de 2024
I deleted my previous review; it just took some work to overcome those complaints. I settled on the RCSwitch.h library and modified some code to write a sniffer to read from my remotes. Once it worked, it was awesome!The codes that come in are integers, so use a binary converter to convert those into what were 19 bit binary codes for me, then add 5 zeros to the front (the receiver only likes 24 bit so far as I can tell, nothing else worked) and then do yourSwitchName.send(). Also be sure to know your interrupts, it's not pin based (well, it is) but interrupt based as far as initializing it: int0 is pin 2 and so on. Also, some of the code I found out there was manually powering the unit with VCC HIGH or LOW and GND LOW ... but I took that out so ended up with about 30 lines of code for a working sniffer.With the antenna soldered on, it's getting about 30 feet of range in a room with no obstructions. Have not tested it in other locations, but I will now that it's working.Happy tinkering!!
C. Stork
Comentado en los Estados Unidos el 4 de noviembre de 2024
These are much better quality than similar RF modules on amazon. Worked right out of the box and I'm impressed by the range. Getting very consistent results from several rooms away (in an office with metal studded walls).
Andrew
Comentado en los Estados Unidos el 17 de noviembre de 2024
I built a controller and remote controlled car on breadboards with PIC18 series PDIP packaged microcontrollers with the chips placed straight into the breadboard with control code I wrote myself. Since I had no radio modules at home to try out it was controlled by a long wire with UART running at 9600 baud with 3-byte commands transmitted every 20ms.I was practically able to drop these in place of the wired connection. Just raw uart pin from the controller mcu straight into the transmitter, raw reciever pin into the uart input on the robot's mcu. The only code I needed to change was the baud rate. After looking at the transmission on the receiving end under my oscilloscope I decided that 9600 wasn't going to work. 2400 was what I tried next, knowing that I was being both conservative on meeting deadlines in my code and on making the signal clear. For my application this left headroom on both ends and worked great. I tested various baud rates under the oscilloscope. At 4800 baud you may be able to get it to work with a resilient protocol but it's a bit fuzzy. 3600 seems to be the highest speed that's gives a consistently usable signal.Overall I appreciate how simple it is to use this module even outside of a hardware ecosystem like arduino.If you are on arduino you won't necessarily need to mess around with some library on github- just try hooking it straight up to uart.To clear up any pin related confusion, as I didn't find any datasheet for all this:Transmitter: Just leave the Enable pin disconnected as suggested by this store page.Receiver: Both data out pins are the same. Solder both antenna pins to the antenna. For some reason the store page suggests that one of those pins is ground; it is not. It's another antenna pin.(Both): Another review suggested that 5v power doesn't work, but it did for me.Also if it matters to you this probably isn't RoHS/lead free, you can tell by how shiny the solder is.
Productos recomendados

Mex $450.00

Mex $ 238 .00 Mex $238.00

4.9
Elegir