Skip to content
Snippets Groups Projects
Commit 6dedb51c authored by jjlustig's avatar jjlustig
Browse files

Adding space, enter, del

parent 399db2b2
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@
"0"
],
"button8": [
"i",
"W",
"70",
"0"
],
......@@ -129,9 +129,19 @@
"60",
"60"
],
"button0": [
" ",
"button27": [
"#",
"70",
"60"
],
"button28": [
"@",
"80",
"60"
],
"button29": [
"*",
"90",
"60"
]
}
\ No newline at end of file
......@@ -58,10 +58,10 @@
</div>
</header>
<div class="wrapper">
<div class = "keyboard" id="keyboard">
</div>
<div class="touchpad" id="touchpad">
</div>
<div class = "keyboard" id="keyboard">
</div>
</div>
<!-- The Modal -->
......
......@@ -11,7 +11,7 @@ var modal = document.getElementById('myModal');// Modal textbox
var inputModal = document.getElementById('inputText');
var keyboardWidth = document.getElementById('keyboard').offsetWidth;// Width pixel of display
var keyboardHeight = document.getElementById('keyboard').offsetHeight;// Height pixel of
$("#touchpad").hide();
//$("#touchpad").hide();
/*
-----------KEYBOARD CONTROLS---------------
......
......@@ -28,6 +28,8 @@ body {
margin-top: 3%;
border-radius: 2em;
padding: 4%;
font-size: 19px;
text-align: center;
/*Button Coloring*/
......
......@@ -3,7 +3,7 @@
document.body.onload = addKeyboard;
function addKeyboard () {
var keys = ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'];
var keys = ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','#','@','*'];
for (var i = 0; i < keys.length; i++) {
// create a new div element
......
......@@ -78,7 +78,19 @@ io.on('connection', function(socket) {
socket.emit('updateKeys', {k: keys, x: xpos, y: ypos});
socket.on('string', function(str) {
console.log("Trying to type")
robot.typeString(str)
console.log(str);
if (str === "@"){
robot.keyTap('enter');
}
else if (str === "#"){
robot.keyTap('space');
}
else if (str === '*'){
robot.keyTap('backspace');
}
else{
robot.typeString(str)
}
});
socket.on('saveKey', function(key) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment