Introduction
This command will send output text to AnyWave. Typically, the messages will appear in the debug log window connected to the plugin.
Usage
function main(varargin)
anywave('init', varargin);
anywave('send_message', 'Hello AnyWave');
Tip
You can write a wrapper function in your plugin code to make this feature much simpler:
function print_anywave(message)
anywave('send_message', message);