Search found 5 matches

by Rwelk137
11 Mar 2018, 03:07
Forum: General
Topic: Finding a Key Already in Use
Replies: 2
Views: 11915

Re: Finding a Key Already in Use

For reference, I'm trying to remap the arrow keys with the code elseif (button == 188) then lmc_send_input(37, 0, 0) -- press LEFT ARROW lmc_send_input(37, 0, 1) -- release LEFT ARROW elseif (button == 46) then lmc_send_input(39, 0, 0) -- press RIGHT ARROW lmc_send_input(39, 0, 1) -- release RIGHT A...
by Rwelk137
11 Mar 2018, 03:01
Forum: General
Topic: Finding a Key Already in Use
Replies: 2
Views: 11915

Finding a Key Already in Use

Just a quick question question. When I'm configuring keys with my mini-keyboard, most of the keys not in use get shut off and the code returns the whatever key I'm trying to type with in the little window beneath the code as per the line else print('Not yet assigned: ' .. button) But what if a butto...
by Rwelk137
25 Jan 2018, 18:48
Forum: General
Topic: Need Help Finishing a Macros Keyboard for Math
Replies: 4
Views: 10526

Re: Need Help Finishing a Macros Keyboard for Math

Thanks a lot. Turns out, the homework software I'm using only requires me to type sqrt without the \ and brackets to work. Everything else went smoothly. I can automatically call both parentheses, and exponentiate. Here's the code for anybody who wants to use it for themselves if they stumble upon t...
by Rwelk137
25 Jan 2018, 08:38
Forum: General
Topic: Need Help Finishing a Macros Keyboard for Math
Replies: 4
Views: 10526

Re: Need Help Finishing a Macros Keyboard for Math

I'm also unsure of the parentheses for all the other keys. When I try the keys in Word and Notepad, the letters are spit out without the ( , and the final two keys do nothing as well. I'm well aware that in most, if not all, coding languages, every sort of bracket or parenthesis needs a buddy at the...
by Rwelk137
25 Jan 2018, 08:34
Forum: General
Topic: Need Help Finishing a Macros Keyboard for Math
Replies: 4
Views: 10526

Need Help Finishing a Macros Keyboard for Math

So I've always found it super annoying that the default keyboard has never been optimized well for typing out math equations for anything past pre-algebra. In order to use parentheses or exponents you always have to first hit shift. Same with adding anything together, because + is the second functio...