New build posted on the first post. Happy holidays everyone!!
RIP... Hopefully I could update the guide as well when I have time.quinton69 wrote:
I can't understand any thing about some techinacl shit anyone can help me
In indonesia someone sell it the price is too high about 40$ and I can't use my credit card too (controlled by my mom)
Leonardo is perfectly adequate for the job, since it contans all the native USB hardware needed for the keyboard functions to work. The only reason I don't recommend these is that their footprint is quite large. Take a look at some sample boards below:quinton69 wrote:
Anyone know teensy alternative for the no-no keyboard i found the Leonardo one help me pls and in Indonesia it's very rare to found 3d printing place
Code is in the OP, though you will have to modify it for your purposes.quinton69 wrote:
Can you send me the Arduino coding pls I'm using the two keys shift and z
Do you know the alternative for the pcb
I already made my code for the pro micro. You just need to tell me your keys and the pins, that you're using, then i'll do it for you. (If you'll use the pro micro ofc)quinton69 wrote:
Can you send me the Arduino coding pls I'm using the two keys shift and z
Do you know the alternative for the pcb
Nice one! I built mine with the Pro Micro too. Isn't your keyboard a bit tall? Seems hard to get your fingers toikorus1 wrote:
Thx to this guide i have managed to make my own osu keyboard.I wanted to thank you and here are some pictures of how mine turned out.
Also i have never wrote code for an arduino pro micro, but this is what i came up with.:
int buttonPin = 9;
int Pinbutton = 6;
#include <Keyboard.h>
void setup()
{
pinMode(buttonPin, INPUT);
digitalWrite(buttonPin, HIGH);
pinMode(Pinbutton, INPUT);
digitalWrite(Pinbutton, HIGH);
}
void loop()
{
if (digitalRead(buttonPin) == 0)
{
Keyboard.press('z');
delay(5);
}
if (digitalRead(buttonPin) == 1)
{
Keyboard.release('z');
}
if (digitalRead(Pinbutton) == 0)
{
Keyboard.press('x');
delay(5);
}
if (digitalRead(Pinbutton) == 1)
{
Keyboard.release('x');
}
}
It works just fine but if someone can edit it to make it better i would appreciate it.
THX FOR THE AWESOME GUIDE.
#include <Keyboard.h>
int W = 2;
int X = 8;
int LED1 = 6;
int LED2 = 7;
void setup()
{
Serial.begin(9600);
pinMode(W, INPUT);
pinMode(LED1, OUTPUT);
digitalWrite(W, HIGH);
pinMode(X, INPUT);
pinMode(LED2, OUTPUT);
digitalWrite(X, HIGH);
}
void loop(){
if (digitalRead(W) == 0)
{
Keyboard.press('z');
digitalWrite(LED1, HIGH);
delay(5);
}
if (digitalRead(W) == 1)
{
Keyboard.release('z');
digitalWrite(LED1, LOW);
}
if (digitalRead(X) == 0)
{
Keyboard.press('x');
digitalWrite(LED2, HIGH);
delay(5);
}
if (digitalRead(X) == 1)
{
Keyboard.release('x');
digitalWrite(LED2, LOW);
}
}
C0MP0T3 wrote:
-snip-
AddDominator wrote:
So im staring with a pro micro arduino, can i have the code for two buttons ? I use z and x
UnleashedMyself wrote:
AddDominator wrote:
So im staring with a pro micro arduino, can i have the code for two buttons ? I use z and x
U must make a picture of your arduino, then I will help u
The Gambler wrote:
UPDATE July 20, 2018:
So yeah, just finished summer school recently and currently working on revamping the guide as usual. Really, this time I am doing it since it will be published on other forums/sites as well. Hopefully those will address some issues associated with the first revision of the keyboard build guide.
The upcoming guide will be focused towards an 8-key model that I posted in this thread earlier this year. Any deviations in the design will be an exercise for the end user. Of course, PMing me for help will be answered as quickly as possible.
For now, Sanwa build V2 in progress. I tried to do honeycomb walls for this build.
C0MP0T3 wrote:
I'm starting to play Mania more and more, I may be doing a 4k keyboard later ! What's "Sanwa" build?
AddDominator wrote:
I have add keyboard and hid library but it keep showing this error, please help
https://imgur.com/a/eqTd1XI
AddDominator wrote:
How to add more LED mode for RGB ? Like pressing a button and it will change the mode. My code is like thisint ButtonZ = 9;
int ButtonX = 10;
void setup()
{
pinMode(ButtonZ, INPUT);
pinMode(ButtonX, INPUT);
}
void loop()
{
if (digitalRead(ButtonZ) == 0)
{
Keyboard.press('z');
delay(5);
}
if (digitalRead(ButtonZ) == 1)
{
Keyboard.release('z');
}
if (digitalRead(ButtonX) == 0)
{
Keyboard.press('x');
delay(5);
}
if (digitalRead(ButtonX) == 1)
{
Keyboard.release('x');
}
}
AddDominator wrote:
The Gambler wrote:
AddDominator wrote:
Oof... the betrayal is real xD
ZisonZishen wrote:
I've made an osukeyboard with a
mouse(ve broken,keys and a little box to cover them,but now it still have no lights at all,and not goodlooking
Here I am Looking forward to make an new osu key board which's able to put on fingers and more cheap(:D
and it's still an idea lol
AddDominator wrote:
ZisonZishen wrote:
I've made an osukeyboard with a
mouse(ve broken,keys and a little box to cover them,but now it still have no lights at all,and not goodlooking
Here I am Looking forward to make an new osu key board which's able to put on fingers and more cheap(:D
and it's still an idea lol
https://www.youtube.com/watch?v=jM598vSvPu0&t=221s Try this
Skylone18 wrote:
Just a question;
Are you using any resistors?
I see a resistor in the first figure of your guide, but on second figure and in the third one, I do not see any.
genericgarbage wrote:
A few billion years late, but how do you suppose you would get cherry mx slivers?
srafay wrote:
Hey, I want to buy Redragon ARYAMAN K569 (it comes with Outemu blue switches). I wanted to ask if it's possible to replace a few switches in it with other switches? (like i want to replace one Outemu blue switch with Cherry MX Red). Is that doable easily?
[Zarc] wrote:
srafay wrote:
Hey, I want to buy Redragon ARYAMAN K569 (it comes with Outemu blue switches). I wanted to ask if it's possible to replace a few switches in it with other switches? (like i want to replace one Outemu blue switch with Cherry MX Red). Is that doable easily?
Does the keyboard have removable switch feature? If so you can just use keypuller to remove the switch and replace it. Otherwise you have to resolder the PCB to remove the switch and reinstall it again, which I don't recommend.
Here's an example of removable switch keyboard that I have
srafay wrote:
Hey, I want to buy Redragon ARYAMAN K569 (it comes with Outemu blue switches). I wanted to ask if it's possible to replace a few switches in it with other switches? (like i want to replace one Outemu blue switch with Cherry MX Red). Is that doable easily?
srafay wrote:
[Zarc] wrote:
srafay wrote:
Hey, I want to buy Redragon ARYAMAN K569 (it comes with Outemu blue switches). I wanted to ask if it's possible to replace a few switches in it with other switches? (like i want to replace one Outemu blue switch with Cherry MX Red). Is that doable easily?
Does the keyboard have removable switch feature? If so you can just use keypuller to remove the switch and replace it. Otherwise you have to resolder the PCB to remove the switch and reinstall it again, which I don't recommend.
Here's an example of removable switch keyboard that I have
Thanks for replying. The keyboard you have seems to be available only in your country I guess. After checking it's specs, it seems that it has Outemu blue switches. How is your experience with these switches (stream maps in which you need to double tap or maps in which you need to tap faster)