Is it possible to retrieve the watch type in the ConnectIQ API? I'd like to add something as below in my view:
[FONT=Courier New]var device_type = ???; //not sure how to retrieve the device type
if ( device_type == "Fenix 3" ) {
// insert Fenix 3 specific layout here
}
else {
// insert generic layout that works on different watch types here
}[/FONT]