Not logged in - Login

RFShowControl Protocol Explained

Overview

RFShowControl utilizes an On-Air protocol which was originally designed and implemented by Joe Johnson for use with the RFColor2_4 project. Inspired by this, and with the intent of being fully interoperable with Joe's RFColor2_4 GECE controllers, the RFShowControl library was built to simplify the setup and configuration of the transmitters and receivers.

Current / Beta RFShowControl Protocol

The RFShowControl protocol is built within the limitations of Nordic Semiconductor's nRF24L01+ tranceiver.

  • Transmission Rate: 250kbps, 1Mbps, 2Mbps - Configurable
  • RFChannels Available for Transmitters: 125 ( allows for up to 64,000 individual channels or 21,000 pixels!!!)
    • One Transmitter per RFChannel, Each transmitter can transmit up to 512 channels at 250kbps.

Packet Structure
RFShowControl utilizes a 32 byte packet, So we need more than 1 packet to send an entire 512 channels (if needed).
  • 30 bytes of channel data
  • 1 offset byte ( this 0 indexed byte is multiplied by 30 to determine what channels are in the packet)
  • one reserved byte (not currently used)

Because of the restrictions of 30 "data channels" per packet we need 18 packets to send an entire 512 channels. Transmitters can broadcast fewer than 512 channels and will use less packets to do so if needed.

OneRF Packet                                
Packet Inxex012345678910111213141516171819202122232425262728293031
ByteContentsch1ch2ch3ch4ch5ch6ch7ch8ch9ch10ch11ch12ch13ch14ch15ch16ch17ch18ch19ch20ch21ch22ch23ch24ch25ch26ch27ch28ch29ch30OFFSETTBD
An Example of the First 60 channels (20 pixels of data with 24 bit color data) color Red (0xFF0000)

Channel 1-30 Packet                              0*30=0 
Packet Index012345678910111213141516171819202122232425262728293031
Byte Contents255002550025500255002550025500255002550025500255000NOTUSED
Channel 31-60 Packet                              1*30=30 
Packet Index012345678910111213141516171819202122232425262728293031
Byte Contents255002550025500255002550025500255002550025500255001NOTUSED

2013 RFShowControlProtocol Specifications

PDF Download