You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
enum Feature {
Temperature,
Pressure,
Humidity,
Illuminance,
Accelerometer,
Gyroscope,
Magnetometer
}
struct Sensor {
var current : float;
var min : float;
var max : float;
var init : bool;
var feature : Feature;
}
Results in
and error: "unknown type name 'Feature'"
The text was updated successfully, but these errors were encountered: