========================================================================
    CONSOLE APPLICATION : kumo_control Project Overview
========================================================================


main.cpp
    This is the main application source file. It uses the KUMOControl class to
    control a KUMO specified via an IP address and port number that can either
    be hardcoded or can be supplied on the command line.

    It connects to the specified KUMO via ethernet and then
        - changes the destination 1 crosspoint to three different sources (15, 16 and 14.)
        - changes the label on the web UI button for destination 1.
        - obtains the eParamID_SuppressPSAlarm status
        - enquires the status of all crosspoints and displays them
        - variously sets, enquires the setting for, clears and takes a salvo.
        - finally, disconnects from the KUMO

kumo_control.h
    This file defines an example class that can be used to change KUMO parameters.
    A bulk of the code handles connecting to the KUMO via a socket and reading
    the HTTP response. Also, refer to the config_control project and to config_control.h

    These are the core functions that can be used as a starting point for further
    development.

    KUMOControl::SetParam(...);
    KUMOControl::GetParam(...);
    KUMOControl::SetCrosspoint(...);
    KUMOControl::GetCrosspoint(...);
    KUMOControl::GetAllCrosspointsAsText(...);
    KUMOControl::SetSalvo(...);
    KUMOControl::GetSalvo(...);
    KUMOControl::TakeSalvo(...);

