From 32d740cccaebaa39126bbd6fbae6df27dbdc63f6 Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Fri, 29 Apr 2022 21:57:16 +0100 Subject: [PATCH] sendtext remove from readme. its still available but not advised to use. use apply through dict instead (updates cache) --- README.md | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 1c3a256..8d88011 100644 --- a/README.md +++ b/README.md @@ -267,6 +267,10 @@ vban.bus[0].mode.tvmix = True ### `VbanCmd` (lower level) +#### `vban.pdirty` + +True iff a parameter has been changed. + #### `vban.set_rt(id_, param, val)` Sends a string request RT Packet where the command would take the form: @@ -275,22 +279,9 @@ Sends a string request RT Packet where the command would take the form: f'{id_}.{param}={val}' ``` -#### `vban._get_rt()` +#### `vban.public_packet` -Used for updating the RT data packet, used internally by the Interface. - -```python -vban.public_packet = vban._get_rt() -``` - -#### `vban.sendtext(cmd)` - -Sends a multi parameter TEXT string command, for example: - -```python -# Use ';' or ',' for delimiters. -vban.sendtext('Strip[0].Mute=1;Strip[3].A3=0;Bus[2].Mute=0;Bus[3].Eq.On=1') -``` +Returns a data packet with current Voiceemeter states. Designed to be used internally by the interface but available for parsing through this read only property object. ### `Errors`