Go to the source code of this file.
Functions | |
int | SendPreamble (void) |
Send the X10 RF Preamble ( 9 mS on, 4.5 mS off ) More... | |
int | SendRfCode (unsigned char Address, unsigned char Action) |
Send the X10 RF Code. More... | |
int | SendByte (int Byte) |
Split a byte in bits and send them. More... | |
int | SendBit (int Bit) |
Send a bit of an X10 RF code with the correct timing. More... | |
int | GetX10CommandsBy (char *Name) |
Find the given name in a table with names and codes and return an index to the name and the codes. More... | |
int GetX10CommandsBy | ( | char * | NameToFind | ) |
Find the given name in a table with names and codes and return an index to the name and the codes.
Lookup the given name in a table with names and codes
Name |
Definition at line 15 of file GetX10CommandsBy.c.
int SendBit | ( | int | Bit | ) |
Send a bit of an X10 RF code with the correct timing.
Send one bit of RF code
Bit | ( 0 or a positive integer ) |
Definition at line 13 of file SendBit.c.
int SendByte | ( | int | DataByte | ) |
Split a byte in bits and send them.
Send one byte of RF code
Databyte | to send |
Definition at line 9 of file SendByte.c.
int SendPreamble | ( | void | ) |
Send the X10 RF Preamble ( 9 mS on, 4.5 mS off )
Send the preamble, so receivers can adjust their AGC
Definition at line 12 of file SendPreamble.c.
int SendRfCode | ( | unsigned char | Address, |
unsigned char | Action | ||
) |
Send the X10 RF Code.
Send the RF code containing an address and an action
Definition at line 8 of file SendRfCode.c.