Rate This Document
Findability
Accuracy
Completeness
Readability

Module Data Type (VmiDataType)

VmiDataType defines the supported data types. Each data type corresponds to a module. Available modules include: video output, audio output, microphone input, touch input, sensor, and GPS. The data types are defined as follows:

1
2
3
4
5
6
7
8
9
enum VmiDataType : uint8_t {
    DATA_VIDEO = 0,                                  // Stream output module
    DATA_AUDIO,                                      // Audio playback module
    DATA_TOUCH,                                      // Touch and keyboard module
    DATA_MIC,                                        // Microphone module
    DATA_SENSOR,                                     // Sensor module
    DATA_GPS,                                        // GPS module
    DATA_TYPE_MAX
};