BC68F2130 FSK Application Example

Size: px
Start display at page:

Download "BC68F2130 FSK Application Example"

Transcription

1 BC68F2130 FSK Application Example D/N: AN0484E Introduction With a focus on the Sub-1GHz RF application area, Holtek has released a range of RF transmitter SoC Flash MCUs, the BC68F2130/BC68F2140 device series. These devices operate in the 315/433/868/915MHz frequency bands and support both OOK and FSK modulation types. The device series also includes a programmable output power function with a maximum power output value of 13dBm. These features make the devices especially suitable for all kinds of remote switches, office automation products and intelligent home wireless control applications. All devices in the series include an integrated frequency synthesizer, a transmission modulation circuit, an RF power amplifier and a Holtek 8-bit microcontroller, thus implementing a simplified wireless transmitter on a single chip. Device features include low power consumption, a high level of functional integration, high RF power and 16NSOP-EP and 24SSOP-EP package types, making them suitable for use in a wide range of related applications. This application example will introduce an FSK modulation signal transmitting using the BC68F2130. Through the program example, users will have a better understanding of how to use the BC68F2130 RF transmitter function library, showing how an FSK RF receiver can receive a data packet correctly. Operational Principle The BC68F2130 includes both an integrated RF transmitter and a Holtek 8-bit microcontroller. This application example mainly introduces the RF transmitter part. Refer to the BC68F2130/BC68F2140 datasheet for more details on the device s other functions. The BC68F2130 RF transmitter includes a frequency synthesizer, a modulator and an RF power amplifier whose structure details are shown in the following block diagram. XOSCIN XOSC FREQ SYNTH PA RFOUT Register Control Signal FIFO Modulator Figure 1 RF Transmitter Structure AN0484E V / 9 April 10, 2018

2 As shown in the above figure, the frequency synthesizer uses an external input frequency source as a reference. It is controlled by the modulator to synthesize the required frequency after which the frequency is amplified by the amplifier (PA) and output. It should be noted that the output pin external circuit should include an impedance matching circuit to the antenna to transmit the signal correctly and with maximum power. Functional Description After understanding the RF signal transmitter basic operational principles, the following will introduce what considerations are required for RF communication. It is important to take these considerations into account as ignoring them may cause communication failure. RF Output Power The RF output power indicates the RF signal intensity, which will affect the quality of the receiving signal. The signal intensity used in different applications may be different. The RF output power generally uses dbm as the measurement unit. The BC68F2130 supports three optional output power levels: 0, 10 and 13dBm. Operation Frequency The device supports two operation frequencies. One is the system frequency which is the crystal oscillator frequency used by the device. The device supports 12 MHz, 12.8 MHz, 16 MHz and 19.2MHz crystal oscillators. The other is the RF frequency, which is the frequency of the wireless communication. The RF frequency may be different for different countries and applications. This device supports 315MHz, 433MHz, 868MHz and 915MHz frequency bands. Modulation Mode There are several modulation modes for wireless communication. The modulation mode used in this example is Frequency Shift Key, abbreviated as FSK. The device outputs the signal state with a lower frequency for data 0 and a higher frequency for data 1 as shown in the following figure. DATA t Frequency Deviation Figure 2 FSK Modulation Mode In the FSK modulation mode, there are two frequencies, a lower frequency and a higher frequency. The frequency deviation is equal to the difference value between these two frequencies divided by 2. AN0484E V / 9 April 10, 2018

3 Transmission Data Rate The transmitting and receiving data rates need to be synchronized regardless of wired or wireless communication. The data rate is the amount of data transmitted per second. The unit is bps which is "bit/s". Data Packet Format In wireless transmission, the transmitted data will be packaged into a specific data packet format, thus reducing the error signal transmission. Different encoding methods can be used to increase successful data transmission. This application example adopts the transmission data packet format of the Sub-1GHz transceiver BC3601, which conforms to the Holtek development requirements. As shown in Figure 3, the transmitted data is composed of the Preamble, the SYNCWORD, the Trailer, the Data and the Cyclic Redundancy Check (CRC). Preamble (12-bit) 0101 / SYNCWORD (6-byte) S47~S40, S39~S32, S31~S24, S23~S16, S15~S8, S7~S0 Trailer (4-bit) 0101/1010 Data (1-byte) D7~D0 CRC (2-byte) C15~C8, C7~C0 Figure 3 Packet Format conforms to the BC3601 Hardware Description The following introduces the application circuits used in this application example, which users can refer to for their own applications. The BC68F2130 Demo Board: In addition to the BC68F2130 main RF transmitter application circuit, an impedance matching circuit and an antenna are also required as mentioned above. Figure 4 BC68F2130 Demo Board Circuit BCE-GENTX-XXX: Includes a battery holder, keys, power switch, power indicator, RF transmit indicator and a firmware update interface. AN0484E V / 9 April 10, 2018

4 Figure 5 BCE-GENTX-XXX Circuit The above two circuit boards are combined together, as shown in Figure 6. This will be convenient for user operation. Figure 6 BCE-GENTX-XXX and BC68F2130 Demo Board Program Example Description Use the HT-IDE3000 simulation development tool to open the program example projects which are provided in this application example. It mainly includes the following files. File Name main.c BC68F21X0_RF_Set.c BC68F21X0_RF_Set.h TX_EnCoder.asm TX_Encoder.inc vector.asm hal_button.c typedef.h Demo code main program Description RF control/initialization related subroutines RF parameter setup - power, external XTAL, FSK, frequency, data rate/fdev RF packet setup subroutine or FIFO mode transmission subroutine RF SYNCWORD parameter setup Interrupt vector table Key related subroutines Common variables and defined values AN0484E V / 9 April 10, 2018

5 The program example is divided into five parts to assist users in quickly understanding their usage. Part 1: BC68F2130 RF parameter setup Part 2: Packet format parameter setup Part 3: Program process introduction Part 4: Considerations Part 5: Receiver recommendations BC68F2130 RF Parameter Setup After the BC68F21X0_RF_Set.h file is opened, users will see that there are 4 defined variables, as shown in the figure. Figure 7 BC68F2130 Basic Parameter Setup 1. Set RF power: There are three optional output power levels: 0, 10, and 13dBm. The required output power defined value is set to 1 while the others are cleared to 0. The RF power default value is 0dBm. In addition, the level variable is used for fine tuning with a default value of 4. It is recommended to be left unchanged. 2. Set RF Freq: Xtal variable is used to set the BC68F2130 external crystal oscillator frequency. It can be set to 120, 128, 160, or 190, which means that the device uses an external crystal oscillator value of 12 MHz, 12.8 MHz, 16 MHz, or 19.2MHz. The Xtal default value is 160 which is 16MHz. The other variable, Freq, is used to set the RF frequency, in units of Hz. If a frequency of MHz is to be used then an input value of should be setup. 3. Set OOK/FSK: The FSKOOK value is set to 1 in this program example to select the FSK modulation mode. 4. Set data rate/fdev: The DATARATE_FDEV variable is used to set the data rate and the frequency deviation. There are five optional combinations in this program example, refer to the following table. Defined Value Data Rate - bps Frequency Deviation - Hz 1 2K 8K 2 5K 20K 3 10K 40K 4 25K 50K 5 50K 18.75K AN0484E V / 9 April 10, 2018

6 Packet Format Parameter Setup In the TX_Encoder.h file, users only need to set the 6 byte SYNCWORD in this program example, as shown in Figure 8. Figure 8 SYNCWORD Setup Values Refer to Figure 3 and following description for the packet format of this example: Preamble: The length is fixed at 12 bits. This is the example setting value. SYNCWORD: The length is fixed at 6 bytes. This is the example setting value. Trailer: The length is fixed at 4 bits. Data: The length is 1 byte, the external four key states are used as the Data low valid nibble and the high valid nibble is 0, together they form a complete byte. CRC16: The Data is operated using CRC16 which is stored in the CRC field. The program example already contains the calculation subprogram. Users do not need to execute another calculation program. The transmitted data will be added after calling the calculation subprogram. In this packet format, note that the Preamble and Trailer field changes are affected by the MSB or LSB bit of SYNCWORD, as shown in Figure 9. The Preamble format is 1010 or 0101 depending upon the SYNCWORD MSB bit. The Trailer format is 1010 or 0101 depending upon the SYNCWORD LSB bit. This program example provides the corresponding steps, refer to the tx_encoder.asm file. Preamble MSB SYNCWORD LSB Trailer Figure 9 Preamble and Trailer Formats Program Procedure Introduction This program example is a remote controller that is applied to four key functions. If no key is pressed the system will enter the ultra-low power consumption mode, Hold Mode. The system will be woken up to transmit the RF signal after a key command is received. The complete flow is shown in Figure 10. Users can consult with the main.c file to get started quickly. AN0484E V / 9 April 10, 2018

7 START INITRF() Wake-up when press any key N press key? Y CheckButtonStatus() Entry Sleep Mode Fill in MRDATA DATA_PRO() FIFO Mode RUN() Y Tx_strobe=0 & key release N Figure 10 Main Program Procedure The following will introduce the main process steps. Step1: System initialization: The system basic setting values are set first. The mcu_initial() subroutine is used to initialize the MCU I/O parameters. The ButtonIO_initial() subroutine is used to initialize the special parameters of the key related subroutines. The INITRF() subroutine is used to initialize the RF parameters which include the modulation mode, output power, RF frequency, data rate, etc. The transmission mode is set as a Simple FIFO Mode. The InitTBx () subroutine is used to initialize a 2ms timer reference timing, which can be used for the main program state switching and key detection. Figure 11 Initialization Step2: Detect whether a key is pressed or not. If any key is pressed, then set SENDFLAG=TRUE. Step3: The key states are updated to MRFDATA. Step4: Data pre-processing. The DATA_PRO subroutine will be called and the data is shifted according to the data length or address length. Step5: Transmit RF signal. The FIFO_RUN subroutine will be called, the FIFO Mode is executed to transmit a data packet. AN0484E V / 9 April 10, 2018

8 Figure 12 Main Program Process Step 3~5 Step6: After the packet has been transmitted, determine whether _tx_strobe=0 and if the key is not pressed. If yes, set sleep_f=true to force the system to enter the HALT mode. Figure 13 Main Program Process Step 6 Step7: Wait for a key to be pressed. Go back to Step1 and execute the complete process again after a key has been pressed. Considerations If the BC68F2130 enters the Deep Sleep (PWRC=0x03) mode, it can be woken up in two ways, either from port A or from a Time Base 0 interrupt. When the system is woken up from the Deep Sleep mode, the program will resume execution from 0000h. PWRC should be set to 0x00 and the MCU related registers will need to be reinitialised by the F/W. This means to restart execution from Step1. Receiving Recommendations To receive an RF signal in this example, it is recommended to use the Holtek Sub-1GHz transceiver BC3601 as the receiver. Refer to the following website for the BC3601details. Program Example BCM-68F2130-X02-FSK _43392_FIFO Mode_V06.7z Conclusion This application example has introduced how to use the device for transmitting an FSK RF signal. For assistance during programming, users can obtain a simple program example from the Bestcomm RF Electronics Inc. AN0484E V / 9 April 10, 2018

9 Versions and Modify Information BC68F2130 FSK Application Example Date Author Issue and Modify Information 徐鴻文 (Harry Hsu) 何信智 (Walers Ho) First Version Reference Files 1. Reference file: BC68F2130/BC68F2140 Datasheet. 2. BC68F2130/2140 OOK/FSK RF Transmitter Flash MCU Application Guidelines. (Holtek D/N: AN0430E) 3. For more information, refer to the Holtek official website Disclaimer All information, trademarks, logos, graphics, videos, audio clips, links and other items appearing on this website ('Information') are for reference only and is subject to change at any time without prior notice and at the discretion of Holtek Semiconductor Inc. (hereinafter 'Holtek', 'the company', 'us', 'we' or 'our'). Whilst Holtek endeavors to ensure the accuracy of the Information on this website, no express or implied warranty is given by Holtek to the accuracy of the Information. Holtek shall bear no responsibility for any incorrectness or leakage. Holtek shall not be liable for any damages (including but not limited to computer virus, system problems or data loss) whatsoever arising in using or in connection with the use of this website by any party. There may be links in this area, which allow you to visit the websites of other companies. These websites are not controlled by Holtek. Holtek will bear no responsibility and no guarantee to whatsoever Information displayed at such sites. Hyperlinks to other websites are at your own risk. Limitation of Liability In any case, the Company has no need to take responsibility for any loss or damage caused when anyone visits the website directly or indirectly and uses the contents, information or service on the website. Governing Law This disclaimer is subjected to the laws of the Republic of China and under the jurisdiction of the Court of the Republic of China. Update of Disclaimer Holtek reserves the right to update the Disclaimer at any time with or without prior notice, all changes are effective immediately upon posting to the website. AN0484E V / 9 April 10, 2018

HT8 MCU Internal Ultra-Low Power Consumption RTC Application Note

HT8 MCU Internal Ultra-Low Power Consumption RTC Application Note HT8 MCU Internal Ultra-Low Power Consumption RTC Application Note D/N: AN0482E Introduction The HT66F25x0/HT67F25xx/HT69F25xx series Flash MCUs, all include an ultra-low power consumption RTC oscillator.

More information

HT67F86A Internal RTC Application Guidelines

HT67F86A Internal RTC Application Guidelines HT67F86A Internal RTC Application Guidelines D/N: AN0448E Introduction One special feature of the Holtek 8-bit Flash MCU, the HT67F86A, is that it includes an ultra-low power consumption RTC oscillator

More information

HT8 MCU 24-bit Delta Sigma A/D Converter Application Note

HT8 MCU 24-bit Delta Sigma A/D Converter Application Note HT8 MCU 24-bit Delta Sigma A/D Converter Application Note D/N: AN0437E Introduction The Delta Sigma A/D converter forms a basic and necessary component of the signal sampling and processing system designer

More information

HT45F3520/3530 Integrated DC/DC and Motor Load Application Guideline

HT45F3520/3530 Integrated DC/DC and Motor Load Application Guideline HT45F3520/3530 Integrated DC/DC and Motor Load Application Guideline D/N: AN0428E Introduction The HT45F3520 and HT45F3530 devices can accept a voltage input as low as 0.9V and are thus especially suitable

More information

HT8 MCU Integrated STM Timer Mode Application Note

HT8 MCU Integrated STM Timer Mode Application Note HT8 MCU Integrated STM Timer Mode Application Note HT8 MCU Integrated STM Timer Mode Application Note D/N: AN0424E Introduction One of the most fundamental functions in any microcontroller device is the

More information

RF4432 wireless transceiver module

RF4432 wireless transceiver module 1. Description www.nicerf.com RF4432 RF4432 wireless transceiver module RF4432 adopts Silicon Lab Si4432 RF chip, which is a highly integrated wireless ISM band transceiver. The features of high sensitivity

More information

Catalog

Catalog Catalog 1. Description... - 3-2. Features... - 3-3. Application... - 3-4. Electrical specifications...- 4-5. Schematic... - 4-6. Pin Configuration... - 5-7. Antenna... - 6-8. Mechanical Dimension(Unit:

More information

Low Power with Long Range RF Module DATASHEET Description

Low Power with Long Range RF Module DATASHEET Description Wireless-Tag WT-900M Low Power with Long Range RF Module DATASHEET Description WT-900M is a highly integrated low-power half-'duplex RF transceiver module embedding high-speed low-power MCU and high-performance

More information

HT8 MCU Timer Module Application Note (2) Generating Infrared Remote Control Carrier Waves in the PWM Mode

HT8 MCU Timer Module Application Note (2) Generating Infrared Remote Control Carrier Waves in the PWM Mode HT8 MCU Timer Module Application Note (2) Generating Infrared Remote Control Carrier Waves in the PWM Mode D/N: AN0445E Introduction The Holtek HT8 MCU series provide various types of timer modules, such

More information

VT-CC1110PA-433M. Wireless Module. User Guide

VT-CC1110PA-433M. Wireless Module. User Guide Wireless Module User Guide V-Chip Microsystems, Inc Add:6 floor, Longtang Building, Nan Shan Cloud Valley Innovation Industrial Park, No.1183, Liuxian Road, Nanshan District, Shenzhen city Tel:86-755-88844812

More information

RF4463F30 High Power wireless transceiver module

RF4463F30 High Power wireless transceiver module RF4463F30 High Power wireless transceiver module 1. Description RF4463F30 adopts Silicon Lab Si4463 RF chip, which is a highly integrated wireless ISM band transceiver chip. Extremely high receive sensitivity

More information

RF1212 RF1212 Ultra-low Power ISM Transceiver Module V2.0

RF1212 RF1212 Ultra-low Power ISM Transceiver Module V2.0 RF1212 Ultra-low Power ISM Transceiver Module V2.0 Application: Features: Home automation Security alarm Telemetry Automatic meter reading Contactless access Wireless data logger Remote motor control Wireless

More information

User s Guide SX SKA ADVANCED COMMUNICATIONS & SENSING SX SKA. User s Guide: Advanced Mode. Revision 0.1 March Semtech Corp.

User s Guide SX SKA ADVANCED COMMUNICATIONS & SENSING SX SKA. User s Guide: Advanced Mode. Revision 0.1 March Semtech Corp. : Advanced Mode 1 Table of Contents 1 Introduction... 4 2 Getting Started... 5 2.1 Kit Contents... 5 2.2 Installation... 5 2.3 SX1211SKA Overview... 6 3 Quick Start Guide... 7 3.1 SX1211SKA Quick Start

More information

VT-CC M Wireless Module. User Guide

VT-CC M Wireless Module. User Guide Wireless Module User Guide V-CHIP MICROSYSTEMS Co. Ltd Address: Room 612-613, Science and Technology Service Center Building, NO.1, Qilin Road, Nanshan District, Shenzhen, Guangdong TEL:0755-88844812 FAX:0755-22643680

More information

RF NiceRF Wireless Technology Co., Ltd. Rev

RF NiceRF Wireless Technology Co., Ltd. Rev - 1 - Catalog 1. Description...- 3-2. Features...- 3-3. Application...- 3-4. Electrical Specifications...- 4-5. Schematic...- 4-6. Pin Configuration...- 5-7. Antenna... - 6-8. Mechanical dimensions(unit:

More information

AN797 WDS USER S GUIDE FOR EZRADIO DEVICES. 1. Introduction. 2. EZRadio Device Applications Radio Configuration Application

AN797 WDS USER S GUIDE FOR EZRADIO DEVICES. 1. Introduction. 2. EZRadio Device Applications Radio Configuration Application WDS USER S GUIDE FOR EZRADIO DEVICES 1. Introduction Wireless Development Suite (WDS) is a software utility used to configure and test the Silicon Labs line of ISM band RFICs. This document only describes

More information

BC2102 Sub-1GHz OOK/FSK Transmitter

BC2102 Sub-1GHz OOK/FSK Transmitter Sub-1GHz OOK/FSK Transmitter Features Operating voltage: V DD =2.2V~3.6V@Ta= -40 C~+85 C Complete Sub-1GHz OOK/FSK transmitter Frequency bands: 315MHz, 433MHz, 868MHz, 915MHz Supports OOK/FSK modulation

More information

AN361 WIRELESS MBUS IMPLEMENTATION USING EZRADIOPRO DEVICES. 1. Introduction. 2. Wireless MBUS Standard

AN361 WIRELESS MBUS IMPLEMENTATION USING EZRADIOPRO DEVICES. 1. Introduction. 2. Wireless MBUS Standard WIRELESS MBUS IMPLEMENTATION USING EZRADIOPRO DEVICES 1. Introduction This application note describes how to create a wireless MBUS compliant device using Silicon Labs' Si443x EZRadioPRO RF transceiver

More information

Catalogue

Catalogue Catalogue 1. Overview... - 3-2. Features... - 3-3. Applications...- 3-4. Electrical Characteristics...- 4-5. Schematic... - 4-6. Speed rate correlation table...- 6-7. Pin definition...- 6-8. Accessories...-

More information

RF1212 Catalog

RF1212 Catalog Catalog 1. Description... 3 2. Features... 3 3. Application... 3 4. Typical application circuit... 4 5. Electrical Specifications... 4 6. Pin definition... 5 7. Accessories... 5 8. Mechanical dimension...

More information

DRF1278F 20dBm LoRa Long Range RF Front-end Module V1.11

DRF1278F 20dBm LoRa Long Range RF Front-end Module V1.11 20dBm LoRa Long Range RF Front-end Module V1.11 Features: Frequency Range: 433MHz Modulation: FSK/GFSK/MSK/LoRa SPI Data Interface Sensitivity: -139dBm Output Power: +20dBm Data Rate:

More information

LR1276 Module Datasheet V1.0

LR1276 Module Datasheet V1.0 LR1276 Module Datasheet V1.0 Features LoRaTM Modem 168 db maximum link budget +20 dbm - 100 mw constant RF output vs. V supply +14 dbm high efficiency PA Programmable bit rate up to 300 kbps High sensitivity:

More information

CMT2110/17A Configuration Guideline

CMT2110/17A Configuration Guideline AN102 CMT2110/17A Configuration Guideline Introduction The CMT2110/17A is an ultra low-cost, highly flexible, high performance, single-chip OOK transmitter for various 240 to 960 MHz wireless applications.

More information

I-NUCLEO-SX1272D. SX1272 LoRa technology and high-performance FSK/OOK RF transceiver modem. Features

I-NUCLEO-SX1272D. SX1272 LoRa technology and high-performance FSK/OOK RF transceiver modem. Features SX1272 LoRa technology and high-performance FSK/OOK RF transceiver modem Data brief Features 157 db maximum link budget +20 dbm, 100 mw constant RF output versus Vsupply +14 dbm high efficiency PA Programmable

More information

MCU with 315/433/868/915 MHz ISM Band Transmitter Module

MCU with 315/433/868/915 MHz ISM Band Transmitter Module MCU with 315/433/868/915 MHz ISM Band Transmitter Module (The purpose of this RFM60 spec covers mainly for the hardware and RF parameter info of the module, for MCU and software info please refer to RF60

More information

FEATURES DESCRIPTION BENEFITS APPLICATIONS. Preliminary PT4501 Sub-1 GHz Wideband FSK Transceiver

FEATURES DESCRIPTION BENEFITS APPLICATIONS. Preliminary PT4501 Sub-1 GHz Wideband FSK Transceiver Preliminary PT4501 Sub-1 GHz Wideband FSK Transceiver DESCRIPTION The PT4501 is a highly integrated wideband FSK multi-channel half-duplex transceiver operating in sub-1 GHz license-free ISM bands. The

More information

LoRa1276 Catalogue

LoRa1276 Catalogue Catalogue 1. Overview... 3 2. Features... 3 3. Applications... 3 4. Electrical Characteristics... 4 5. Schematic... 5 6. Speed rate correlation table... 6 7. Pin definition... 6 8. Accessories... 8 9.

More information

CMT2300A. Ultra Low Power Sub-1GHz Transceiver CMT2300A. Features. Applications. Ordering Information. Descriptions.

CMT2300A. Ultra Low Power Sub-1GHz Transceiver CMT2300A. Features. Applications. Ordering Information. Descriptions. CMT2300A Ultra Low Power Sub-1GHz Transceiver Features Frequency Range: 213 to 960 MHz Modulation: OOK, (G)FSK 和 (G)MSK Data Rate: 0.5 to 250 kbps Sensitivity: -120 dbm at 2.4 kbps, F RF = 433.92 MHz -109

More information

LoRa1278 Wireless Transceiver Module

LoRa1278 Wireless Transceiver Module LoRa1278 Wireless Transceiver Module 1. Description LoRa1278 adopts Semtech RF transceiver chip SX1278, which adopts LoRa TM Spread Spectrum modulation frequency hopping technique. The features of long

More information

RF4432PRO wireless transceiver module

RF4432PRO wireless transceiver module wireless transceiver module RF4432PRO 1. Description RF4432PRO adopts Silicon Lab Si4432 RF chip, which is a highly integrated wireless ISM band transceiver chip. Extremely high receive sensitivity (-121

More information

HT66FB576/574/572 RGB LED PWM Function Application Guidelines

HT66FB576/574/572 RGB LED PWM Function Application Guidelines HT66FB576/574/572 RGB LED PWM Function Application Guidelines D/N: AN0444E Introduction The HOLTEK HT66FB576/574/572 RGB LED 8-bit USB Flash MCUs are specially designed for RGB LED product applications

More information

Preliminary GHz Transceiver-µController-Module. Applications PRODUCT SPECIFICATION FEATURES MICROCONTROLLER MHz

Preliminary GHz Transceiver-µController-Module. Applications PRODUCT SPECIFICATION FEATURES MICROCONTROLLER MHz PRODUCT SPECIFICATION 2.4 2.5 GHz e Applications 6 : 2 " 2! 2 2 + 2 7 + + Alarm and Security Systems Video Automotive Home Automation Keyless entry Wireless Handsfree Remote Control Surveillance Wireless

More information

UNIVERSAL ISM BAND FSK TRANSCEIVER MODULE. WITH 500mW OUTPUT POWER RFM12BP

UNIVERSAL ISM BAND FSK TRANSCEIVER MODULE. WITH 500mW OUTPUT POWER RFM12BP UNIVERSAL ISM BAND FSK TRANSCEIVER MODULE WITH 500mW OUTPUT POWER (the purpose of this spec covers mainly for the physical characteristic of the module, for register configure and its related command info

More information

RF4432F27 Catalog

RF4432F27 Catalog Catalog 1. Description... 3 2. Features... 3 3. Application... 3 4. Electrical Specifications... 4 5. Typical application circuit... 4 6. Pin definition... 5 7. Accessories... 6 8. Mechanical dimension...

More information

RFM110 RFM110. Low-Cost MHz OOK Transmitter RFM110 RFM110. Features. Descriptions. Applications. Embedded EEPROM

RFM110 RFM110. Low-Cost MHz OOK Transmitter RFM110 RFM110. Features. Descriptions. Applications. Embedded EEPROM Features Embedded EEPROM RFM110 Low-Cost 240 480 MHz OOK Transmitter Very Easy Development with RFPDK All Features Programmable Frequency Range: 240 to 480 MHz OOK Modulation Symbol Rate: 0.5 to 30 kbps

More information

Figure 1. LDC Mode Operation Example

Figure 1. LDC Mode Operation Example EZRADIOPRO LOW DUTY CYCLE MODE OPERATION 1. Introduction Figure 1. LDC Mode Operation Example Low duty cycle (LDC) mode is designed to allow low average current polling operation of the Si443x RF receiver

More information

Single Chip Low Cost / Low Power RF Transceiver

Single Chip Low Cost / Low Power RF Transceiver Single Chip Low Cost / Low Power RF Transceiver Model : Sub. 1GHz RF Module Part No : Version : V2.1 Date : 2013.11.2 Function Description The is a low-cost sub-1 GHz transceiver designed for very low-power

More information

HumPRO TM Series Evaluation Module Data Guide

HumPRO TM Series Evaluation Module Data Guide HumPRO TM Series Evaluation Module Data Guide ! Warning: Some customers may want Linx radio frequency ( RF ) products to control machinery or devices remotely, including machinery or devices that can cause

More information

Using the HT95R6x for CID Phones

Using the HT95R6x for CID Phones Using the HT95R6x for CID Phones D/N : AN0319E Introduction Holtek s new HT95R64 and HT95R65 devices are 8-bit CID Phone MCUs with a CPT function. The HT95R64/HT95R65 devices, with their internal DTMF

More information

AN5009 Application note

AN5009 Application note AN5009 Application note Using the S2-LP transceiver under FCC title 47 part 90 in the 450 470 MHz band Introduction The S2-LP is a very low power RF transceiver, intended for RF wireless applications in

More information

VT-CC2530-Z1 Wireless Module. User Guide

VT-CC2530-Z1 Wireless Module. User Guide Wireless Module User Guide V-CHIP MICROSYSTEMS Co. Ltd Address: Room 612-613, Science and Technology Service Center Building, NO.1, Qilin Road, Nanshan District, Shenzhen, Guangdong TEL:0755-88844812 FAX:0755-22643680

More information

SV613 USB Interface Wireless Module SV613

SV613 USB Interface Wireless Module SV613 USB Interface Wireless Module SV613 1. Description SV613 is highly-integrated RF module, which adopts high performance Si4432 from Silicon Labs. It comes with USB Interface. SV613 has high sensitivity

More information

XTR VF 2.4 HP/V, XTR VF 2.4 HP/H User guide

XTR VF 2.4 HP/V, XTR VF 2.4 HP/H User guide XTR VF 2.4 HP/V XTR VF 2.4 HP/H Figure 1: mechanical dimensions (rear view) and photo General description: Long range transceiver XTR VF 2.4 HP/V, XTR VF 2.4 HP/H is pin-to-pin compatible with previous

More information

SMARTALPHA RF TRANSCEIVER

SMARTALPHA RF TRANSCEIVER SMARTALPHA RF TRANSCEIVER Intelligent RF Modem Module RF Data Rates to 19200bps Up to 300 metres Range Programmable to 433, 868, or 915MHz Selectable Narrowband RF Channels Crystal Controlled RF Design

More information

VT-CC1120PL-433M Wireless Module. User Guide

VT-CC1120PL-433M Wireless Module. User Guide Wireless Module User Guide V-Chip Microsystems, Inc Add:6 floor, Longtang Building, Nan Shan Cloud Valley Innovation Industrial Park, No.1183, Liuxian Road, Nanshan District, Shenzhen city Tel:86-755-88844812

More information

UM0791 User manual. Demonstration firmware for the DMX-512 communication protocol receiver based on the STM32F103Zx. Introduction

UM0791 User manual. Demonstration firmware for the DMX-512 communication protocol receiver based on the STM32F103Zx. Introduction User manual Demonstration firmware for the DMX-512 communication protocol receiver based on the STM32F103Zx Introduction This document describes how to use the demonstration firmware for the DMX-512 communication

More information

Design of Direct-Type Tire-Pressure Monitoring System Based on SP37 Sensor

Design of Direct-Type Tire-Pressure Monitoring System Based on SP37 Sensor Sensors & Transducers 2013 by IFSA http://www.sensorsportal.com Design of Direct-Type Tire-Pressure Monitoring System Based on SP37 Sensor Binwen HUANG Hainan Vocational College of Political Science and

More information

AN4392 Application note

AN4392 Application note Application note Using the BlueNRG family transceivers under ARIB STD-T66 in the 2400 2483.5 MHz band Introduction BlueNRG family devices are very low power Bluetooth low energy (BLE) devices compliant

More information

Single Chip High Performance low Power RF Transceiver (Narrow band solution)

Single Chip High Performance low Power RF Transceiver (Narrow band solution) Single Chip High Performance low Power RF Transceiver (Narrow band solution) Model : Sub. 1GHz RF Module Part No : TC1200TCXO-PTIx-N Version : V1.2 Date : 2013.11.11 Function Description The TC1200TCXO-PTIx-N

More information

Applications. Operating Modes. Description. Part Number Description Package. Many to one. One to one Broadcast One to many

Applications. Operating Modes. Description. Part Number Description Package. Many to one. One to one Broadcast One to many RXQ2 - XXX GFSK MULTICHANNEL RADIO TRANSCEIVER Intelligent modem Transceiver Data Rates to 100 kbps Selectable Narrowband Channels Crystal controlled design Supply Voltage 3.3V Serial Data Interface with

More information

UNIVERSAL ISM BAND FSK TRANSCEIVER MODULE

UNIVERSAL ISM BAND FSK TRANSCEIVER MODULE UNIVERSAL ISM BAND FSK TRANSCEIVER MODULE RFM12B RFM12B (the purpose of this spec covers mainly for the physical characteristic of the module, for register configure and its related command info please

More information

LORA1278F30 Catalogue

LORA1278F30 Catalogue Catalogue 1. Overview... 3 2. Feature... 3 3. Application... 3 4. Block Diagram... 4 5. Electrical Characteristics... 4 6. Schematic... 5 7. Speed rate correlation table... 6 8. Pin definition... 6 9.

More information

TRM-xxx-DP1203 Data Guide. (Preliminary)

TRM-xxx-DP1203 Data Guide. (Preliminary) TRM-xxx-DP1203 Data Guide (Preliminary) Table of Contents 1 General Description 1 Features 1 Applications 2 Electrical Specifications 2 Absolute Maximum Ratings 4 Detailed Electrical Specifications 5 Application

More information

LORA1276F30 Catalogue

LORA1276F30 Catalogue Catalogue 1. Overview... 3 2. Feature... 3 3. Application... 3 4. Block Diagram... 4 5. Electrical Characteristics... 4 6. Schematic... 5 7. Speed rate correlation table... 6 8. Pin definition... 6 9.

More information

KAPPA M. Radio Modem Module. Features. Applications

KAPPA M. Radio Modem Module. Features. Applications KAPPA M Radio Modem Module Features Intelligent RF modem module Serial data interface with handshake Host data rates up to 57,600 baud RF Data Rates to 115Kbps Range up to 500m Minimal external components

More information

Catalog

Catalog - 1 - Catalog 1. Overview...- 3-2. Feature... - 3-3. Application...- 3-4. Block Diagram...- 3-5. Electrical Characteristics... - 4-6. Operation... - 4-1) Power on Reset... - 4-2) Sleep mode... - 4-3) Working

More information

VT-CC M Wireless Module. User Guide

VT-CC M Wireless Module. User Guide Wireless Module User Guide V-CHIP MICROSYSTEMS Co. Ltd Address: Room 612-613, Science and Technology Service Center Building, NO.1, Qilin Road, Nanshan District, Shenzhen, Guangdong TEL:0755-88844812 FAX:0755-22643680

More information

ISM BAND FSK TRANSMITTER MODULE RFM02

ISM BAND FSK TRANSMITTER MODULE RFM02 ISM BAND FSK TRANSMITTER MODULE (the purpose of this spec covers mainly for the physical characteristic of the module, for register configure and its related command info please refer to RF02 data sheets)

More information

RFM119/RFM119S Sub-1GHz OOK/FSK High Performance RF Transmitter Module

RFM119/RFM119S Sub-1GHz OOK/FSK High Performance RF Transmitter Module Sub-1GHz OOK/FSK High Performance RF Transmitter Module Featurs Embedded EEPROM Very Easy Development with RFPDK All Features Programmable Frequency Range: 240 to 960 MHz FSK, GFSK and OOK Modulation Symbol

More information

RFM110/RFM117. Features. Descriptions. Applications. E website://www.hoperf.com Rev 1.0 Page 1/21

RFM110/RFM117. Features. Descriptions. Applications. E website://www.hoperf.com Rev 1.0 Page 1/21 Features Embedded EEPROM Very Easy Development with RFPDK All Features Programmable Frequency Range: 240 to 480 MHz (RFM110) 240 to 960 MHz (RFM117) OOK Modulation Symbol Rate: 0.5 to 30 ksps Output Power:

More information

Remote meter reading Remote keyless entry Home automation Industrial control Sensor networks Health monitors RF ANALOG CORE TXP AUTO DIVIDER TUNE TXM

Remote meter reading Remote keyless entry Home automation Industrial control Sensor networks Health monitors RF ANALOG CORE TXP AUTO DIVIDER TUNE TXM Si4012 CRYSTAL- LESS RF TRANSMITTER Features Frequency range 27 960 MHz Output Power Range 13 to +10 dbm Low Power Consumption OOK 14.2mA @ +10dBm FSK 19.8mA @ +10dBm Data Rate = 0 to 100 kbaud FSK FSK

More information

WiMOD iu880b. Datasheet. Document ID: 4100/40140/0111. IMST GmbH Carl-Friedrich-Gauß-Str KAMP-LINTFORT GERMANY

WiMOD iu880b. Datasheet. Document ID: 4100/40140/0111. IMST GmbH Carl-Friedrich-Gauß-Str KAMP-LINTFORT GERMANY Document ID: 4100/40140/0111 IMST GmbH Carl-Friedrich-Gauß-Str. 2-4 47475 KAMP-LINTFORT GERMANY Document Information File name iu880b_.docx Created 2016-01-26 Total pages 19 Revision History Version Note

More information

DNT24MCA DNT24MPA. Low Cost 2.4 GHz FHSS Transceiver Modules with I/O. DNT24MCA/MPA Absolute Maximum Ratings. DNT24MCA/MPA Electrical Characteristics

DNT24MCA DNT24MPA. Low Cost 2.4 GHz FHSS Transceiver Modules with I/O. DNT24MCA/MPA Absolute Maximum Ratings. DNT24MCA/MPA Electrical Characteristics - 2.4 GHz Frequency Hopping Spread Spectrum Transceivers - Direct Peer-to-peer Low Latency Communication - Transmitter RF Power Configurable - 10 or 63 mw - Built-in Chip Antenna - 250 kbps RF Data Rate

More information

Catalog

Catalog - 1 - Catalog 1. Description... - 3-2. Features... - 3-3. Application... - 3-4. Schematic... - 3-5. Electrical Specifications...- 4-6. Pin Definition... - 4-7. Antenna... - 5-8. Mechanical Dimension...-

More information

DP1205 C433/868/ , 868 and 915 MHz Drop-In RF Transceiver Modules Combine Small Form Factor with High Performance

DP1205 C433/868/ , 868 and 915 MHz Drop-In RF Transceiver Modules Combine Small Form Factor with High Performance DP1205 C433/868/915 433, 868 and 915 MHz Drop-In RF Transceiver Modules Combine Small Form Factor with High Performance GENERAL DESCRIPTION The DP1205s are complete Radio Transceiver Modules operating

More information

Radio Module for MHz. Band RMCx4-1 ; RMCx9-1

Radio Module for MHz. Band RMCx4-1 ; RMCx9-1 General Information The Radio Modules RMCx 4-1 and RMCx 9-1 are transceivers designed for very low power and very low voltage wireless applications. The circuit is mainly intended for the ISM (Industrial,

More information

AN4949 Application note

AN4949 Application note Application note Using the S2-LP transceiver under FCC title 47 part 15 in the 902 928 MHz band Introduction The S2-LP is a very low power RF transceiver, intended for RF wireless applications in the sub-1

More information

DRF4431F27 27dBm ISM RF Transceiver Module V1.10

DRF4431F27 27dBm ISM RF Transceiver Module V1.10 27dBm ISM RF Transceiver Module V1.10 Features: Frequency Range: 433/868MHz Modulation: FSK/GFSK/OOK SPI Data Interface Sensitivity: -122dBm Output Power: +27dBm Data Rate: -0.123~256 kbps Digital RSSI

More information

Using the HT66F016L and the HT66F50 to Implement Remote Encoding and Decoding

Using the HT66F016L and the HT66F50 to Implement Remote Encoding and Decoding Using the HT66F016L and the HT66F50 to Implement Remote Encoding and Decoding D/N:AN0327E Introduction This application note describes how to implement a 4 3 Key NEC remote encoding Demo Board using the

More information

AN5008 Application note

AN5008 Application note Application note Using the S2-LP transceiver under the ARIB STD-T67 standard Introduction The S2-LP very low power RF transceiver for RF wireless applications in the sub-1 GHz band is designed to operate

More information

AN933: EFR32 Minimal BOM

AN933: EFR32 Minimal BOM The purpose of this application note is to illustrate bill-of-material (BOM)-optimized solutions for sub-ghz and 2.4 GHz applications using the EFR32 Wireless Gecko Portfolio. Silicon Labs reference radio

More information

Catalogue

Catalogue Catalogue 1. Overview... - 3-2. Features... - 3-3. Applications...- 3-4. Electrical Characteristics...- 4-5. Schematic... - 5-6. Speed rate correlation table...- 5-7. Pin definition...- 6-8. Accessories...-

More information

ISM BAND FSK TRANSMITTER MODULE RFM02

ISM BAND FSK TRANSMITTER MODULE RFM02 ISM BAND FSK TRANSMITTER MODULE (the purpose of this spec covers mainly for the physical characteristic of the module, for register configure and its related command info please refer to RF02 data sheets)

More information

RFM119BW/RFM119CW RFM119BW RFM119CW. Featurs. Descriptios. Applications

RFM119BW/RFM119CW RFM119BW RFM119CW. Featurs. Descriptios. Applications Featurs Embedded EEPROM Very Easy Development with RFPDK All Features Programmable Frequency Range: 240 to 960 MHz FSK, GFSK and OOK Modulation Symbol Rate: 0.5 to 100 ksps (FSK/GFSK) 0.5 to 30 ksps (OOK)

More information

Interfacing the MC68HC908QF4 Evaluation Board to RD68HC908RKE

Interfacing the MC68HC908QF4 Evaluation Board to RD68HC908RKE Freescale Semiconductor Application Note AN60 Rev. 0, 8/004 Interfacing the MC68HC908QF4 Evaluation Board to RD68HC908RKE By: Donnie Garcia 8/6-Bit Systems Engineering Austin, Texas Introduction This application

More information

AN4148 Application note

AN4148 Application note Application note Using the SPIRIT1 transceiver under ARIB STD-T93 in the 315 MHz band Introduction By Placido De Vita The SPIRIT1 is a very low power RF transceiver, intended for RF wireless applications

More information

E31-TTL-500 Datasheet V Feature E31-TTL-500

E31-TTL-500 Datasheet V Feature E31-TTL-500 E31-TTL-500 Datasheet V1.0.1.Introduction E31-TTL-500 1.1 Feature E31-TTL-500 E31-TTL-500 is a 500mW wireless transceiver module with narrow-band transmission, operates at 425-450.5MHz (default: 433MHz),

More information

APPLICATION NOTE. AT11009: Migration from ATxmega64D3/128D3/192D3/256D3 Revision E to Revision I. Introduction. Features.

APPLICATION NOTE. AT11009: Migration from ATxmega64D3/128D3/192D3/256D3 Revision E to Revision I. Introduction. Features. APPLICATION NOTE AT11009: Migration from ATxmega64D3/128D3/192D3/256D3 Revision E to Revision I Atmel AVR XMEGA Introduction This application note lists out the differences and changes between Revision

More information

EVB /433MHz Transmitter Evaluation Board Description

EVB /433MHz Transmitter Evaluation Board Description Features! Fully integrated, PLL-stabilized VCO! Frequency range from 310 MHz to 440 MHz! FSK through crystal pulling allows modulation from DC to 40 kbit/s! High FSK deviation possible for wideband data

More information

A Transmitter Using Tango3 Step-by-step Design for ISM Bands

A Transmitter Using Tango3 Step-by-step Design for ISM Bands Freescale Semiconductor Application Note AN2719 Rev. 0, 9/2004 A Transmitter Using Tango3 Step-by-step Design for ISM Bands by: Laurent Gauthier Access and Remote Control Toulouse, France Freescale Semiconductor,

More information

4 x 10 bit Free Run A/D 4 x Hi Comparator 4 x Low Comparator IRQ on Compare MX839. C-BUS Interface & Control Logic

4 x 10 bit Free Run A/D 4 x Hi Comparator 4 x Low Comparator IRQ on Compare MX839. C-BUS Interface & Control Logic DATA BULLETIN MX839 Digitally Controlled Analog I/O Processor PRELIMINARY INFORMATION Features x 4 input intelligent 10 bit A/D monitoring subsystem 4 High and 4 Low Comparators External IRQ Generator

More information

Catalog

Catalog - 1 - Catalog 1. Description...- 3-2. Features...- 3-3. Applications... - 3-4. Block Diagram...- 3-5. Electrical Characteristics... - 5-6. Operation... - 5 - Power on Reset... - 5 - Working mode... - 6

More information

CMT2113A. Low-Cost MHz (G)FSK/OOK Transmitter. Features. Applications. Ordering Information. Descriptions SOT23-6. Rev 0.

CMT2113A. Low-Cost MHz (G)FSK/OOK Transmitter. Features. Applications. Ordering Information. Descriptions SOT23-6. Rev 0. A CMT2113A Low-Cost 240 480 MHz (G)FSK/OOK Transmitter Features Embedded EEPROM Very Easy Development with RFPDK All Features Programmable Frequency Range: 240 to 480 MHz OOK, FSK and GFSK Modulation Symbol

More information

EVB /915MHz Transmitter Evaluation Board Description

EVB /915MHz Transmitter Evaluation Board Description General Description The TH708 antenna board is designed to optimally match the differential power amplifier output to a loop antenna. The TH708 can be populated either for FSK, ASK or FM transmission.

More information

76-81GHz MMIC transceiver (4 RX / 3 TX) for automotive radar applications. Table 1. Device summary. Order code Package Packing

76-81GHz MMIC transceiver (4 RX / 3 TX) for automotive radar applications. Table 1. Device summary. Order code Package Packing STRADA770 76-81GHz MMIC transceiver (4 RX / 3 TX) for automotive radar applications Data brief ESD protected Scalable architecture (master/slave configuration) BIST structures Bicmos9MW, 0.13-µm SiGe:C

More information

ESP8266 Hardware Matching Guide

ESP8266 Hardware Matching Guide ESP8266 Hardware Matching Guide Version 1.0 Copyright 2016 About This Guide This document introduces the frequency offset tuning and antenna impedance matching for ESP8266, which are necessary for achieving

More information

SX1261/2 WIRELESS & SENSING PRODUCTS. Application Note: Reference Design Explanation. AN Rev 1.1 May 2018

SX1261/2 WIRELESS & SENSING PRODUCTS. Application Note: Reference Design Explanation.   AN Rev 1.1 May 2018 SX1261/2 WIRELESS & SENSING PRODUCTS Application Note: Reference Design Explanation AN1200.40 Rev 1.1 May 2018 www.semtech.com Table of Contents 1. Introduction... 4 2. Reference Design Versions... 5 2.1

More information

STLC4560. Single chip b/g WLAN radio. Features. Description. Applications

STLC4560. Single chip b/g WLAN radio. Features. Description. Applications Single chip 802.11b/g WLAN radio Data Brief Features Extremely small footprint Ultra low power consumption Fully compliant with the IEEE 802.11b and 802.11g WLAN standards Support for 54, 48, 36, 24, 18,

More information

TRC MHz RF Transceiver. RFM products are now Murata producta. Product Overview. Key Features. Applications

TRC MHz RF Transceiver. RFM products are now Murata producta. Product Overview. Key Features. Applications Product Overview TRC103 is a single chip, multi-channel, low power UHF transceiver. It is designed for low cost, high volume, two-way short range wireless applications in the 863-870, 902-928 and 950-960

More information

Catalog

Catalog - 1 - Catalog 1. Overview... - 3-2. Feature...- 3-3. Application... - 3-4. Block Diagram... - 3-5. Electrical Characteristics...- 4-6. Operation...- 4-1) Power on Reset... - 4-2) Sleep mode...- 4-3) Working

More information

OEM KEYFOB TRANSMITTER DATA GUIDE

OEM KEYFOB TRANSMITTER DATA GUIDE CMD-KEYX-XXX OEM KEYFOB TRANSMITTER DATA GUIDE DESCRIPTION The Linx CMD-KEYX-XXX Remote Command keyfob is ideal for generalpurpose remote control and command applications. The unit has been precertified

More information

PAN2450 Low power RF transceiver for narrow band systems Datasheet

PAN2450 Low power RF transceiver for narrow band systems Datasheet PAN2450 Low power RF transceiver for narrow band systems Datasheet - preliminary - DRAFT 02 19.02.2004 PAN2450 Ernst 1 of 13 Content Index 0. DOCUMENT HISTORY...3 1. APPLICATIONS...3 2. PRODUCT DESCRIPTION...3

More information

AN3101 Application note

AN3101 Application note Application note STM8L15x internal RC oscillator calibration Introduction The STM8L15x microcontrollers offer the possibility of using internal RC oscillators HSI (High-speed internal factory trimmed oscillator

More information

AT-XTR-7020A-4. Multi-Channel Micro Embedded Transceiver Module. Features. Typical Applications

AT-XTR-7020A-4. Multi-Channel Micro Embedded Transceiver Module. Features. Typical Applications AT-XTR-7020A-4 Multi-Channel Micro Embedded Transceiver Module The AT-XTR-7020A-4 radio data transceiver represents a simple and economical solution to wireless data communications. The employment of an

More information

RisingHF, LoRa Gateway, Module

RisingHF, LoRa Gateway, Module DS01603 V1.2 Document information Info Keywords Abstract Content RisingHF, LoRa Gateway, Module This document shows a product description including performance and interfaces of the concentrator module

More information

CMT2119A MHz (G)FSK/OOK Transmitter CMT2119A. Features. Applications. Ordering Information. Descriptions SOT23-6 CMT2119A. Rev 0.

CMT2119A MHz (G)FSK/OOK Transmitter CMT2119A. Features. Applications. Ordering Information. Descriptions SOT23-6 CMT2119A. Rev 0. A CMT2119A 240 960 MHz (G)FSK/OOK Transmitter Features Optional Chip Feature Configuration Schemes On-Line Registers Configuration Off-Line EEPROM Programming Frequency Range: 240 to 960 MHz FSK, GFSK

More information

SYN501R Datasheet. ( MHz Low Voltage ASK Receiver) Version 1.0

SYN501R Datasheet. ( MHz Low Voltage ASK Receiver) Version 1.0 SYN501R Datasheet (300-450MHz Low Voltage ASK Receiver) Version 1.0 Contents 1. General Description... 1 2. Features... 1 3. Applications... 1 4. Typical Application... 2 5. Pin Configuration... 2 6. Pin

More information

INTRODUCTION. What is the LSN50

INTRODUCTION. What is the LSN50 INTRODUCTION Dragino LoRa Sensor Node Dragino LoRa Sensor Node What is the LSN50 LSN50 is a Long Range LoRa Sensor Node. It is designed for outdoor use and powered by Li/SOCl2 battery for long term use

More information

GC9838-LR - INTELLIGENT HYBRID PLC-RF DIN RAIL MODEM

GC9838-LR - INTELLIGENT HYBRID PLC-RF DIN RAIL MODEM GC9838-LR - INTELLIGENT HYBRID PLC-RF DIN RAIL MODEM and a built-in sub-ghz wireless module to allow adaptive networking over different media. The wireless connectivity can be available in LoRa for tree-structure

More information

Embedded Radio Data Transceiver SV611

Embedded Radio Data Transceiver SV611 Embedded Radio Data Transceiver SV611 Description SV611 is highly integrated, multi-ports radio data transceiver module. It adopts high performance Silicon Lab Si4432 RF chip. Si4432 has low reception

More information