Click here to Skip to main content
15,901,373 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello Team,

I have ePad signature device and want to check whether this device is connected to the system or not?

So for this, I have tried two methods but not able to succeed.

So I request you that if you have any method with you which detect USB ePad signature device then please share with me so I can make changes in code and able to find USB ePad signature device to the system.

Awaiting for favorable correspondence from your side.

What I have tried:

1)  function isePad() {
             var epad;
             if (window.document.esCapture1) {
             epad = window.document.esCapture1.ConnectedDevice;
             console.log("epad", epad);
            }

            if (!epad) {
               alert('Sorry epad either is not Connected or/and drivers are not installed');
            }
         }
         isePad();

2)
    navigator.usb.requestDevice({filters:[]}).then(function(device){
   console.log(device);
   });

 

   navigator.usb.getDevices().then(function(devices){ console.log(devices); });
Posted
Updated 18-Jun-20 10:21am
v2

1 solution

You're going to have to contact IntegriSign Desktop | ePadLink[^] Support to get help with the SDK for a specific product.

It is very unlikely you're ever going to find anyone here who has used the produict or the SDK you're trying to use.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900