Event casing cc4m_logo_inline

IDNAMING-10
TitleEvent names shall be UpperCamelCased.
PriorityRecommended
Severity level8
DescriptionEvent names shall be UpperCamelCased (PascalCased).
RationaleConsistency in event naming improves readability of the code.

Avoid:

classdef AmplitudeControl < handle
    events
        buttonPushed
        BUTTON_RELEASED
    end
end

Instead use:

classdef AmplitudeControl < handle
    events
        ButtonPushed
        ButtonReleased
    end
end