handle events in mvc5 for touch screens

0

I am in the need to develop an application that works in a totem: without keyboard, with touchscreen, which I plan to develop with ASP.net MVC 5 in .NET

I have looked for information to handle events, but the truth is that I am half lost on this issue.

  

Does anyone know how I can achieve this? Any ideas to start investigating about it?

Basically I need to be able to capture a touch event from the screen, and I also need to capture an event generated by some sensor (zoom in an identification card).

    
asked by Luis Gabriel Fabres 20.03.2017 в 14:19
source

1 answer

0

MVC5 is a web development platform, events are like any device, click, mouseUp Mouse down, you just give it a responsive if it's for a totem.

There are a lot of libraries as well as for chrome or for java script that give you the functionality like that the browser appears in full screen and do not let the user minimize it among others.

Now the issue of sensors, you should handle it as a service apart, let's say the following, the identification card reader approaches, that is where a bit is sent by serial that carries the identification data, you receive them and send them to a database, which you can be constantly consulted and execute it using a bi-directional connection protocol can be Web Sockets or SignalR , well the latter is what I always use when developing totems, They have many features, and you can even remotely restart computers. This topic is very broad, and I recommend you first start checking the links that I have put you. Greetings

    
answered by 20.03.2017 / 15:59
source