RF Radio Receiver

An RF radio transmitter converts a digital signal into a wireless radio waves; an RF radio receiver turns those radio waves back into a digital signal.

Related Commands:

Print Page

Share

Schematic

PCB

Receive a data packet using RFIN

This program will receive a data packet from an RF receiver module connected to input pin C.0.

Code Example:
main:	rfin C.0, b0, b1, b2, b3, b4, b5, b6, b7	; Read the data packet
	debug						; Show the data received
	goto main					; read the next data
Copy Code Submit an Example

Receieve a data packet via an NKM2401

This program will receive a data packet from an NKM2401 with RF receiver module connected to input pin C.0.

Code Example:
main:	serin C.0, n2400, b0, b1, b2, b3, b4, b5, b6, b7	; Read the data packet
	debug							; Show the data received
	goto main						; read the next data
Copy Code Submit an Example

Receive a data packet directly from an RF module

This program will receive a data packet from an RF receiver module connected directly to input pin C.0.

Code Example:
main:	serin C.0, t2400, ( "XYZZY" ), b0, b1, b2, b3, b4, b5, b6, b7	; Read the data packet
	debug								; Show the data received
	goto main							; read the next data
Copy Code Submit an Example

Create Module

A NKM2401 based radio module may be connected to the generic terminal block create module.

Bill of Materials

DescriptionCodeQty
RF radio receiver (transmitter and receiver pair in pack) RFA001 1 Buy Now

Simulation

No Image Selected

Submit Your Own Code!

You must be logged in to submit code examples. Login now.