Event casing 
| ID | NAMING-10 |
| Title | Event names shall be UpperCamelCased. |
| Priority | Recommended |
| Severity level | 8 |
| Description | Event names shall be UpperCamelCased (PascalCased). |
| Rationale | Consistency 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