========================================================================
    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 a hardcoded ipaddress and port number. It then changes the destination 1
    crosspoint to three different sources (15, 16 and 14.) It then obtains the eParamID_SuppressPSAlarm status
    and then disconnects.

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. See: config_control project
    
    KUMOControl::SetParam(...);
    KUMOControl::GetParam(...);
    KUMOControl::SetCrosspoint(...);
    KUMOControl::GetCrosspoint(...);

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