Trill SDK Methods
(bool) start_sender: (NSString*) payload: (int) algo: (int) repeat_count: (float) gap;(bool) stop_sender;(bool) start_receiver;(bool) stop_receiver;Last updated
(bool) start_sender: (NSString*) payload: (int) algo: (int) repeat_count: (float) gap;(bool) stop_sender;(bool) start_receiver;(bool) stop_receiver;Last updated
// Start sending data with playing algo as Algo Far, repeat count as 3 and gaps between two play as 0.2
seconds
trill?.start_sender(“abcdef”, TRILL_ALGO_FAR, 3, 0.2);
// Stop Sending Data
trill?.stop_sender();.// Start receiving data
trill?.start_receiver();
// Send SSID and Password with algo OFSR and repeat counter 50
trill?.stop_receiver();