Search found 7 matches

by kapish
06 Aug 2014, 20:39
Forum: Workshop
Topic: Hardwiring Leds to switches and teensy
Replies: 10
Views: 2646

Acording to rklm on his build Positive lead of all LEDs were connected to one pin (the VCC pin on the bottom of the teensy, opposite the mini USB port) The negative of each individual LED was connected to it's own resistor, and all of those resistors were connected together to the GND pin (also on t...
by kapish
23 Jul 2014, 13:51
Forum: Workshop
Topic: Plate and Case CAD starter kit
Replies: 6
Views: 4011

The spacebar slot were actually designed for costar stabilizer, which doesnt requires much precision similar to cherry stabilizer. Should have stated that, sorry though.
by kapish
11 Jun 2014, 13:41
Forum: Workshop
Topic: Plate and Case CAD starter kit
Replies: 6
Views: 4011

Will put it on hold first while waiting for your reference material. Less expensive mistake to make

edit: I've actually found a similar thing ok GH, dont know how I missed it when searching before this. So mine is kinda pointless
by kapish
11 Jun 2014, 12:18
Forum: Workshop
Topic: Plate and Case CAD starter kit
Replies: 6
Views: 4011

Noted. I will try to see if there's anything more that I could add or fix after my case is done, and any issue with the cutting. The laser cut company seems to be taking their own sweet time, I'm guessing their priority is with company instead of individual project. If the end result is as it should...
by kapish
11 Jun 2014, 11:01
Forum: Workshop
Topic: Plate and Case CAD starter kit
Replies: 6
Views: 4011

Plate and Case CAD starter kit

I'm not sure if anyone ever did this, but from my search seems like there isn't any. I came out with this "starter kit" CAD design when I was in the process of designing my own plate and case for hardwire keyboard. The CAD design is based on matt3o BrownFox CAD design (I hope you dont mind matt3o :)...
by kapish
24 May 2014, 10:22
Forum: Workshop
Topic: How to build your very own keyboard firmware
Replies: 711
Views: 390534

Found a solution for caps lock led, courtesy of Wraul from another forum. Incase someone else having same issue. void led_set(uint8_t usb_led) { if (usb_led & (1<<USB_LED_CAPS_LOCK)) { // Output high. DDRB |= (1<<2); PORTB |= (1<<2); } else { // Output low. DDRB &= ~(1<<2); PORTB &= ~(1<<2); } }
by kapish
23 May 2014, 19:06
Forum: Workshop
Topic: How to build your very own keyboard firmware
Replies: 711
Views: 390534

Hi, I've been following matt30 build and based on that I manage to build one myself. Thank you matt30 :lol: I've followed his guide and everything seems to works fine except for caps lock LED. The LED positive side is connected to to 330ohm resistor and port B2 on teensy, while the negative sign is ...

Go to advanced search