Off On
{{radar().device.name ?? radar().device.id ?? ''}}
{{radar()?.device?.brand}}
Opacity
@for( control of this.radar().controls; track control[0]) { @let cdef = this.radar().capabilities.controls[control[0]];
{{cdef.name}} {{cdef.description}} @if(cdef.dataType === 'enum' || (cdef.dataType === 'number' && cdef.validValues)) { @for(i of cdef.validValues; track i) { {{cdef.descriptions ? cdef.descriptions[i] : i}} } } @else if(cdef.dataType === 'number') { }
}