Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
Dear all,
As of now Vuforia provides only the voice commands for the operation of the HoloLens. Using HoloLens experience inside the factory is very difficult because of the continuous loud noise within the factory premises. We are thinking to add buttons and perform the desired operation like scan, show library, show download etc.. from within the HoloLens experience.
Till now , we are familiar with the Only API which will switch the Vuforia view app to scan mode. app.fn.navigateToScanMode();
Do someone know the API to switch the Vuforia View to the Vuforia library as well as to the downloaded experiences ? Thank you in advance.
Hi @Sandy_Gunner ,
I checked the reported issue to PTC R&D and see that related issue were reported and R&D is aware about this requirements but after deep check - there are currently some plans for improvement and development - but they are not classified as urgent because according to R&D team there are currently sufficient techniques to work around with loud enviroment.
2 strategies' to improve the current behavior in the current release:
>> R&D statement about how to use better the voice command:
There is no specific improvements that can be made for the HL voice command recognition. Some further information:
>> Design ;
//navigate to Home view
$scope.app.fn.navigate('Home');
// navigate to View named CHAR2DVIEW
$scope.app.fn.navigate('CHAR2DVIEW')
$scope.openUrl=function()
{
// let url= "https://www.bing.com/"
let url="https://xxxxxxo.studio-trial.thingworx.io/ExperienceService/content/projects/bla/index-desktop.html?expIndex=0#/Home"
window.open(url)
// some related points
// window.inf.allowIntent(url)
// window.location = url
}
//I think this is planed improvement below I did not check if this is already part of the current 9.15 functionality /did not tested yet
Attach customers expected functions to the created buttons:
Library - Opening Library and its content
Downloads - Showing experiences that got downloaded to the device from the Library
Logic:
Step 0: Deactivate Microphone (or make sure that it is deactivated)
Step 1: Open View App
Step 2: Scan specific QR Code that triggers the functionality
Step 3: Once you close the app, functionality is automatically disabled
Hello @RolandRaytchev ,
Thank you for your prompt investigation.
I forgot to mention about the offline use of the HoloLens inside the factory earlier.
To use the API mentioned above, I think the network connection is mandatory which is not always guaranteed inside the factory.
$scope.openUrl=function()
{
let url="https://xxxxxxo.studio-trial.thingworx.io/ExperienceService/content/projects/bla/index-desktop.html?expIndex=0#/Home"
window.open(url);
}
Do the support team planning to provide the API to go to the library as well as in download similar as to go to the scan mode API or they will provide built-in UI to switch between scan mode, library and download for the Vuforia View application for HoloLens same as in Vuforia View for Ipad ?
Hello @Sandy_Gunner , thanks for your feedback!
Yes calling the Vuforia Studio experience via link requires a network connection.
But... I further checked in the R&D reported tickets and found further information about voiceless usage - menu. So I was not sure if this is already implemented yet or still in development therefore I tested it by myself. So remove Vuforia view app and installed it again on HL2- so my HL has an issue so that this is the way to have an update. Now having the latest version I could confirmed that the option suggested /developed by PTC R&D team is working in the current version (Hey View , version ) 99.15 build 7390
There is a command : vuforiaview://ptc.com/command/toggle-feature-flag?feature=visual_ui
QR code
This will switch on/off the voice less button UI -> example:4
So means you can navigate also without voice commands!
I hope this helps in your case. Thanks
Hi @RolandRaytchev ,
Thank you for the prompt investigation about the operation of HoloLens Vuforia View without the voice commands.
I have also tried this and could see the same screen as you posted above.
Switching back to downloaded experiences and library is possible from within the HL experience is possible by the method you explained above.
In the place with the good network connection, we can scan the QR code of the experience and able to access the library and download from within the experience. But what procedure can I follow if there is no internet connection to load the experience? Downloading the experience in advance and again using the voice command to go to the download for launching the experience is the only way as per my understanding.
I am sorry for the additional request, what about the addition of the download and library switching button in the initial load screen of the Vuforia view itself rather than switching from the loaded experience ?