Fitbit Product Experts Alumni are retired members of the Fitbit Product Expert Program. Learn more
Is it possible to know which of the various installed Clocks or Apps in the OS Simulator is the currently loaded one?
Author | ch, passion for improvement.
Answered! Go to the Best Answer.
Best Answer
Fitbit Product Experts Alumni are retired members of the Fitbit Product Expert Program. Learn more
Thanks to the suggestion posted by @Gondwana elsewhere,
It is possible to know which watch is loaded in the OS Simulator, its stored in the file DeviceType and the history in main.log
A batch file on the PC can be used:
Which_watch.bat
| @echo The simulator is using watch type @type "C:\Users\%username%\AppData\Roaming\Fitbit OS Simulator\user-settings\DeviceType" @echo. @echo Higgs = Ionic @echo Meson = Versa @echo Gemini = Versa Lite @echo Mira = Versa 2 @echo Atlas = Versa 3 @echo Vulcan = Sense @echo. pause |
Simulator_history.bat
@echo The history of Clocks/Apps loaded with UUID and BuildID
cd C:\Users\%username%\AppData\Roaming\Fitbit OS Simulator\logs
|
Author | ch, passion for improvement.
Fitbit Product Experts Alumni are retired members of the Fitbit Product Expert Program. Learn more
Thanks to the suggestion posted by @Gondwana elsewhere,
It is possible to know which watch is loaded in the OS Simulator, its stored in the file DeviceType and the history in main.log
A batch file on the PC can be used:
Which_watch.bat
| @echo The simulator is using watch type @type "C:\Users\%username%\AppData\Roaming\Fitbit OS Simulator\user-settings\DeviceType" @echo. @echo Higgs = Ionic @echo Meson = Versa @echo Gemini = Versa Lite @echo Mira = Versa 2 @echo Atlas = Versa 3 @echo Vulcan = Sense @echo. pause |
Simulator_history.bat
@echo The history of Clocks/Apps loaded with UUID and BuildID
cd C:\Users\%username%\AppData\Roaming\Fitbit OS Simulator\logs
|
Author | ch, passion for improvement.