Mouse gives more clicks than I give
Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;
up vote
1
down vote
favorite
I'm currently having an issue with the mouse. It started after one of the latest updates, but not sure if it is related.
At first I thought it was an application issue, but after testing with a simple script something else is revealed. The case is that "mouse down" result in multiple mouse down/up/down etc.
The script, (sorry for the extra clutter with colors), is:
#!/bin/bash
xev -event button | awk '
BEGIN
e = 0;
t = 0;
c[0] = "33[31;1m"
c[1] = "33[36;1m"
/Press/ e = 0; printf "down "
/Release/ e = 1; printf "up "
/time/
printf "%s%8d %sn", c[e], ($6 - t), strftime("%M:%S")
t = $6 + 0
'
Some samples showing the issue:
In reality: 1 down
down 191 51:12
up 16 51:12
down 36 51:12
In reality: 1 down
down 1532 52:21
up 48 52:21
down 16 52:21
In reality: 1 down
down 1580 53:03
up 16 53:03
down 16 53:03
up 1189 53:04 (yes, held down button here as well)
down 18 53:04
Have also seen the same with single clicks, as in, single clicks are spawned as double clicks as two down/up/down/up series of events are sent.
This is not a constant. I can do 10-20 clicks with no issue, then it is an issue for a couple of clicks, not for the next, and then perhaps an issue for the next 10.
My question is how I can further check if this is a software issue or HW issue? I have tried with different mouses, but the problem persist.
Have searched web for bugs but not found any, but google-foo (what ever is left of that) is not the best.
mouse signals
add a comment |Â
up vote
1
down vote
favorite
I'm currently having an issue with the mouse. It started after one of the latest updates, but not sure if it is related.
At first I thought it was an application issue, but after testing with a simple script something else is revealed. The case is that "mouse down" result in multiple mouse down/up/down etc.
The script, (sorry for the extra clutter with colors), is:
#!/bin/bash
xev -event button | awk '
BEGIN
e = 0;
t = 0;
c[0] = "33[31;1m"
c[1] = "33[36;1m"
/Press/ e = 0; printf "down "
/Release/ e = 1; printf "up "
/time/
printf "%s%8d %sn", c[e], ($6 - t), strftime("%M:%S")
t = $6 + 0
'
Some samples showing the issue:
In reality: 1 down
down 191 51:12
up 16 51:12
down 36 51:12
In reality: 1 down
down 1532 52:21
up 48 52:21
down 16 52:21
In reality: 1 down
down 1580 53:03
up 16 53:03
down 16 53:03
up 1189 53:04 (yes, held down button here as well)
down 18 53:04
Have also seen the same with single clicks, as in, single clicks are spawned as double clicks as two down/up/down/up series of events are sent.
This is not a constant. I can do 10-20 clicks with no issue, then it is an issue for a couple of clicks, not for the next, and then perhaps an issue for the next 10.
My question is how I can further check if this is a software issue or HW issue? I have tried with different mouses, but the problem persist.
Have searched web for bugs but not found any, but google-foo (what ever is left of that) is not the best.
mouse signals
If the issue is still occurring after using different mice, it sounds like a software issue... Have you tried putting the mouse in a different port and testing?
â Peschke
Jul 18 at 20:19
@Peschke: Yes. Have tried several. But the issue prevails, for one, in xve. Secondly It is revealed in different software: FireFox, Chrome, LibreOffice, mpv, VIM, GIMP etc. Perhaps a driver issue? IDK.
â user3342816
Jul 18 at 20:24
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I'm currently having an issue with the mouse. It started after one of the latest updates, but not sure if it is related.
At first I thought it was an application issue, but after testing with a simple script something else is revealed. The case is that "mouse down" result in multiple mouse down/up/down etc.
The script, (sorry for the extra clutter with colors), is:
#!/bin/bash
xev -event button | awk '
BEGIN
e = 0;
t = 0;
c[0] = "33[31;1m"
c[1] = "33[36;1m"
/Press/ e = 0; printf "down "
/Release/ e = 1; printf "up "
/time/
printf "%s%8d %sn", c[e], ($6 - t), strftime("%M:%S")
t = $6 + 0
'
Some samples showing the issue:
In reality: 1 down
down 191 51:12
up 16 51:12
down 36 51:12
In reality: 1 down
down 1532 52:21
up 48 52:21
down 16 52:21
In reality: 1 down
down 1580 53:03
up 16 53:03
down 16 53:03
up 1189 53:04 (yes, held down button here as well)
down 18 53:04
Have also seen the same with single clicks, as in, single clicks are spawned as double clicks as two down/up/down/up series of events are sent.
This is not a constant. I can do 10-20 clicks with no issue, then it is an issue for a couple of clicks, not for the next, and then perhaps an issue for the next 10.
My question is how I can further check if this is a software issue or HW issue? I have tried with different mouses, but the problem persist.
Have searched web for bugs but not found any, but google-foo (what ever is left of that) is not the best.
mouse signals
I'm currently having an issue with the mouse. It started after one of the latest updates, but not sure if it is related.
At first I thought it was an application issue, but after testing with a simple script something else is revealed. The case is that "mouse down" result in multiple mouse down/up/down etc.
The script, (sorry for the extra clutter with colors), is:
#!/bin/bash
xev -event button | awk '
BEGIN
e = 0;
t = 0;
c[0] = "33[31;1m"
c[1] = "33[36;1m"
/Press/ e = 0; printf "down "
/Release/ e = 1; printf "up "
/time/
printf "%s%8d %sn", c[e], ($6 - t), strftime("%M:%S")
t = $6 + 0
'
Some samples showing the issue:
In reality: 1 down
down 191 51:12
up 16 51:12
down 36 51:12
In reality: 1 down
down 1532 52:21
up 48 52:21
down 16 52:21
In reality: 1 down
down 1580 53:03
up 16 53:03
down 16 53:03
up 1189 53:04 (yes, held down button here as well)
down 18 53:04
Have also seen the same with single clicks, as in, single clicks are spawned as double clicks as two down/up/down/up series of events are sent.
This is not a constant. I can do 10-20 clicks with no issue, then it is an issue for a couple of clicks, not for the next, and then perhaps an issue for the next 10.
My question is how I can further check if this is a software issue or HW issue? I have tried with different mouses, but the problem persist.
Have searched web for bugs but not found any, but google-foo (what ever is left of that) is not the best.
mouse signals
edited Jul 19 at 18:25
asked Jul 18 at 20:08
user3342816
413
413
If the issue is still occurring after using different mice, it sounds like a software issue... Have you tried putting the mouse in a different port and testing?
â Peschke
Jul 18 at 20:19
@Peschke: Yes. Have tried several. But the issue prevails, for one, in xve. Secondly It is revealed in different software: FireFox, Chrome, LibreOffice, mpv, VIM, GIMP etc. Perhaps a driver issue? IDK.
â user3342816
Jul 18 at 20:24
add a comment |Â
If the issue is still occurring after using different mice, it sounds like a software issue... Have you tried putting the mouse in a different port and testing?
â Peschke
Jul 18 at 20:19
@Peschke: Yes. Have tried several. But the issue prevails, for one, in xve. Secondly It is revealed in different software: FireFox, Chrome, LibreOffice, mpv, VIM, GIMP etc. Perhaps a driver issue? IDK.
â user3342816
Jul 18 at 20:24
If the issue is still occurring after using different mice, it sounds like a software issue... Have you tried putting the mouse in a different port and testing?
â Peschke
Jul 18 at 20:19
If the issue is still occurring after using different mice, it sounds like a software issue... Have you tried putting the mouse in a different port and testing?
â Peschke
Jul 18 at 20:19
@Peschke: Yes. Have tried several. But the issue prevails, for one, in xve. Secondly It is revealed in different software: FireFox, Chrome, LibreOffice, mpv, VIM, GIMP etc. Perhaps a driver issue? IDK.
â user3342816
Jul 18 at 20:24
@Peschke: Yes. Have tried several. But the issue prevails, for one, in xve. Secondly It is revealed in different software: FireFox, Chrome, LibreOffice, mpv, VIM, GIMP etc. Perhaps a driver issue? IDK.
â user3342816
Jul 18 at 20:24
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f457079%2fmouse-gives-more-clicks-than-i-give%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
If the issue is still occurring after using different mice, it sounds like a software issue... Have you tried putting the mouse in a different port and testing?
â Peschke
Jul 18 at 20:19
@Peschke: Yes. Have tried several. But the issue prevails, for one, in xve. Secondly It is revealed in different software: FireFox, Chrome, LibreOffice, mpv, VIM, GIMP etc. Perhaps a driver issue? IDK.
â user3342816
Jul 18 at 20:24