FS1000A 433mHz Tx & Rx RF Radio Module

SKU: EK465 Category: Tag:

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

50,00 EGP

7 People watching this product now!

Payment Methods:

Description

<p>This is FS1000A 433mHz Tx RF Radio Module. This RF module comprises an RF Transmitter and an RF Receiver. The transmitter/receiver (Tx/Rx) pair operates at a frequency of 433 MHz. An RF transmitter receives serial data and transmits it wirelessly through RF through its antenna connected at pin4.</p> <p>The transmission occurs at the rate of 1Kbps – 10Kbps. The transmitted data is received by an RF receiver operating at the same frequency as that of the transmitter.</p> <p>This low-cost RF transmitter can be used to transmit signals up to 100 meters (the antenna design, working environment, and supply voltage will seriously impact the effective distance). It’s good for a short distance, battery power device development. 433 MHz is the operating frequency for transmitter and receiver pair.</p> <hr /> <h4><strong>Features :</strong></h4> <ol> <li>Wide input supply (2.5 V to 12V)</li> <li>Easy to integrate (V+, GND, and Data)</li> <li>The device in deep sleep mode when Data pin is grounded</li> <li>Very small dimension.</li> </ol> <hr /> <h5><strong>Receiver Module specification</strong></h5> <p><a href=""https://robu.in/wp-content/uploads/2016/05/FS1000A-433mHz-Receiver-ROBU.IN_.jpg""><img class=""size-full wp-image-188299 aligncenter"" src=""https://robu.in/wp-content/uploads/2016/05/FS1000A-433mHz-Receiver-ROBU.IN_.jpg"" alt=""FS1000A 433mHz Receiver -ROBU.IN"" width=""266"" height=""178"" /></a></p> <p>Operation voltage: DC5V<br />Static Current: 4MA<br />Receiver frequency: 433.92MHZ; 315 Mhz<br />Sensitivity:-105DB<br />Dimension:30*14*9mm<br />External Antenna:32CM signal wire,spiral</p> <p> </p> <h5><strong>Transmitter Module Specification</strong></h5> <p><a href=""https://robu.in/wp-content/uploads/2016/05/FS1000A-433mHz-Transmitter-ROBU.IN_.jpg""><img class=""size-full wp-image-188305 aligncenter"" src=""https://robu.in/wp-content/uploads/2016/05/FS1000A-433mHz-Transmitter-ROBU.IN_.jpg"" alt=""FS1000A 433mHz Transmitter – ROBU.IN"" width=""174"" height=""178"" /></a></p> <p>Operating voltage: 3-12V<br />Operating frequency: 433.92MHz; 315Mhz<br />Standby current: 0mA<br />Operating current :20-28mA<br />Transmission distance:> 500m (open to receiving plate sensitivity at-103dBm distance of more than)<br />Output Power: 16dBm (40mW)<br />Transfer rate: <10Kbps<br />Modulation mode: OOK (Amplitude Modulation)<br />Operating Temperature: -10 ℃ ~ +70 ℃<br />Size: 19 × 19 × 8mm</p> <hr /> <h4><strong>Package Includes :</strong></h4> <p>1 x FS1000A 433mHz Transmitter.</p> <p>1 x FS1000A 433mHz Receiver.</p>

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
FS1000A TXVCC/GND/DATA5V / GND / board digital pin
📟
FS1000A 433mHz Tx & Rx RF Radio Module
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
FS1000A 433mHz Tx & Rx RF Radio Module - Arduino Uno
FS1000A 433mHz Tx & Rx RF Radio Module - Arduino Nano
FS1000A 433mHz Tx & Rx RF Radio Module - Arduino Mega
FS1000A 433mHz Tx & Rx RF Radio Module - ESP32
FS1000A 433mHz Tx & Rx RF Radio Module - ESP8266
FS1000A 433mHz Tx & Rx RF Radio Module - STM32
FS1000A 433mHz Tx & Rx RF Radio Module - Raspberry Pi Pico
📄 File: fs1000a_433mhz_tx_&_rx_rf_radio_module_-_arduino_uno.inoArduino Uno
414 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Data pin 11 on Arduino Uno (simple ASK/OOK transmitter - pairs with an FS1000A/XY-MK-5V receiver on the other end)
6#include <RCSwitch.h>
7
8RCSwitch mySwitch = RCSwitch();
9
10void setup() {
11 mySwitch.enableTransmit(11);
12}
13
14void loop() {
15 mySwitch.send(5393, 24); // an arbitrary 24-bit code - match to your receiver/remote's real code
16 delay(1000);
17}
📄 File: fs1000a_433mhz_tx_&_rx_rf_radio_module_-_arduino_nano.inoArduino Nano
415 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Data pin 11 on Arduino Nano (simple ASK/OOK transmitter - pairs with an FS1000A/XY-MK-5V receiver on the other end)
6#include <RCSwitch.h>
7
8RCSwitch mySwitch = RCSwitch();
9
10void setup() {
11 mySwitch.enableTransmit(11);
12}
13
14void loop() {
15 mySwitch.send(5393, 24); // an arbitrary 24-bit code - match to your receiver/remote's real code
16 delay(1000);
17}
📄 File: fs1000a_433mhz_tx_&_rx_rf_radio_module_-_arduino_mega.inoArduino Mega
415 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Data pin 11 on Arduino Mega (simple ASK/OOK transmitter - pairs with an FS1000A/XY-MK-5V receiver on the other end)
6#include <RCSwitch.h>
7
8RCSwitch mySwitch = RCSwitch();
9
10void setup() {
11 mySwitch.enableTransmit(11);
12}
13
14void loop() {
15 mySwitch.send(5393, 24); // an arbitrary 24-bit code - match to your receiver/remote's real code
16 delay(1000);
17}
📄 File: fs1000a_433mhz_tx_&_rx_rf_radio_module_-_esp32.inoESP32
408 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Data pin 17 on ESP32 (simple ASK/OOK transmitter - pairs with an FS1000A/XY-MK-5V receiver on the other end)
6#include <RCSwitch.h>
7
8RCSwitch mySwitch = RCSwitch();
9
10void setup() {
11 mySwitch.enableTransmit(17);
12}
13
14void loop() {
15 mySwitch.send(5393, 24); // an arbitrary 24-bit code - match to your receiver/remote's real code
16 delay(1000);
17}
📄 File: fs1000a_433mhz_tx_&_rx_rf_radio_module_-_esp8266.inoESP8266
410 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Data pin D8 on ESP8266 (simple ASK/OOK transmitter - pairs with an FS1000A/XY-MK-5V receiver on the other end)
6#include <RCSwitch.h>
7
8RCSwitch mySwitch = RCSwitch();
9
10void setup() {
11 mySwitch.enableTransmit(D8);
12}
13
14void loop() {
15 mySwitch.send(5393, 24); // an arbitrary 24-bit code - match to your receiver/remote's real code
16 delay(1000);
17}
📄 File: fs1000a_433mhz_tx_&_rx_rf_radio_module_-_stm32.inoSTM32
410 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Data pin PA6 on STM32 (simple ASK/OOK transmitter - pairs with an FS1000A/XY-MK-5V receiver on the other end)
6#include <RCSwitch.h>
7
8RCSwitch mySwitch = RCSwitch();
9
10void setup() {
11 mySwitch.enableTransmit(PA6);
12}
13
14void loop() {
15 mySwitch.send(5393, 24); // an arbitrary 24-bit code - match to your receiver/remote's real code
16 delay(1000);
17}
📄 File: fs1000a_433mhz_tx_&_rx_rf_radio_module_-_raspberry_pi_pico.inoRaspberry Pi Pico
420 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Data pin 19 on Raspberry Pi Pico (simple ASK/OOK transmitter - pairs with an FS1000A/XY-MK-5V receiver on the other end)
6#include <RCSwitch.h>
7
8RCSwitch mySwitch = RCSwitch();
9
10void setup() {
11 mySwitch.enableTransmit(19);
12}
13
14void loop() {
15 mySwitch.send(5393, 24); // an arbitrary 24-bit code - match to your receiver/remote's real code
16 delay(1000);
17}
Simple ASK/OOK 433MHz transmitter (paired with a matching receiver module).

نظرة عامة ومواصفات المنتج — بالعربية

FS1000A 433mHz Tx & Rx RF Radio Module متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم IoT and Wireless، بسعر 50,00 EGP. كود المنتج لدينا: EK465. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

أهم المواصفات الفنية:

  • الوزن: 1 g

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من IoT and Wireless في إكوسترا.

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm

Customer Reviews