inputbuff : Read the demodulated and decoded text received by FLDIGI

class pyfldigi.client.text.Inputbuff(client)[source]

Bases: object

Read the demodulated and decoded text received by FLDIGI

Note

An instance of this class automatically gets created under pyfldigi.client.client.Client when it is constructed.

__str__()[source]

f

__len__()[source]
clear()[source]

Clears the RX text widget

outputbuff : Send text to FLDIGI to be encoded, modulated, and transmitted

class pyfldigi.client.text.Outputbuff(client)[source]

Bases: object

Send text to FLDIGI to be encoded, modulated, and transmitted

Note

An instance of this class automatically gets created under pyfldigi.client.client.Client when it is constructed.

Example:
>>> import pyfldigi
>>> c = pyfldigi.Client()
>>> c.input
'CW'
>>> fldigi.modem.name = 'BPSK31'  # set to BPSK31
>>> fldigi.modem.name  # read back to demonstrate that it changed
'BPSK31'
__str__()[source]

Returns the output text.

__iadd__(other)[source]

Adds a string to the TX text widget

clear()[source]

Clears the TX text widget

get_tx_data()[source]

Returns all TX data transmitted since last query.