Тёмный

How I flash my Vial Keyboards - QMK Layer Indicator 

Jan Lunge
Подписаться 10 тыс.
Просмотров 17 тыс.
50% 1

Опубликовано:

 

27 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 29   
@darknessblades
@darknessblades 2 года назад
I still do not understand why people do not add this to any QMK firmware. It is a godsend to know what layer you're on when having multiple layers
@hcoberdalhoff
@hcoberdalhoff 2 года назад
Thank you! I was just building my firmware for my own keyboard and was scrubbing my head on trying to use RGB matrix. Seeing real code in acttion actually helps a lot.
@arkanthor_art
@arkanthor_art Год назад
This is great, thank you for sharing. A while back I really wanted to add the same feature to my split keyboard, but couldn't find anything like this anywhere. The solutions I did find were huge and messy. I spent a long time scratching my head until I worked out a nice simple solution. But then with changing key layouts, I promptly forgot and lost it. So it's really nice to come across a solution. I still don't get why this isn't just an option in QMK by default. I've also thought it would be cool to add dedicated indicator lights, like most keyboards have for caps, numlock and shiftlock. I have Qwerty, Colemak, and the Japanese keyboards all as layers, so it would be handy. Maybe I'll do that on my next project.
@Z.DeAllen
@Z.DeAllen 2 года назад
Thanks for the new video! Also, that would be soo cool to see a clear rotary with an indicator LED in it.
@majinkeyboards
@majinkeyboards 2 года назад
Jan is awesome!
@PCBWay
@PCBWay 2 года назад
That's really something you just did! 👍
@ziddy1478
@ziddy1478 2 года назад
What camera and lens do you use for your videos? Your videos are really high quality!
@JanLunge
@JanLunge 2 года назад
I am using the Blackmagic Pocket 6k and the lucadapters speedbooster so I can use my canon 24-105 F4 L lens
@mankudin_
@mankudin_ 7 месяцев назад
how can i apply this to my underglow, my macropad dont have matrix rgb on each key, just underglow
@viralium104
@viralium104 9 месяцев назад
Just a heads up: If you're new to all this, like me, this video is not for you 😅
@JanLunge
@JanLunge 9 месяцев назад
This is the 5th video in a playlist where I build this macropad from scratch 3by2 Macropad ru-vid.com/group/PLdbIj_aeQsBbMI7IzhRsqTc7gNtt5SXVv if you watch them in order things are a bit clearer as I go over all the basics In the first videos on how keyboards are wired and how we install and compile firmware. If you got any questions feel free to ask, I also have a discord where people go in depth about questions for their builds if you get stuck somewhere
@ellison438
@ellison438 4 месяца назад
Where can I copy the led layer indicator code?
@reallydarren
@reallydarren Год назад
I really want to be able to change my RGB lighting when I change my layers but I have 0 code knowledge :((( I wonder if it's possible to get a super easy tutorial for us non-coders?
@arnelbarbarona9844
@arnelbarbarona9844 Год назад
Do you have a solution for a Click and Drag of the Mouse in QMK or VIAL?
@JanLunge
@JanLunge Год назад
With enabled MOUSE_KEYS you can just use the left click key and keep that held. I used mouse keys on my wDactyl and they worked fine for dragging.
@arnelbarbarona9844
@arnelbarbarona9844 Год назад
​@@JanLunge I wanted to use a rotary encoder. SO a custom actions needs to be setup. Tried it with the MACRO but it is rather not perfect. I wanted to know Like this action is possible? case CDS_LEFT: if (record->event.pressed) { if (!cds_left_active) { register_code(KC_BTN1); // Press KC_BTN1 (down) tap_code(KC_MS_L); // Tap KC_MS_L cds_left_active = true; cds_left_timer = timer_read(); } else { if (timer_elapsed(cds_left_timer) < 400) { tap_code(KC_MS_L); // Tap KC_MS_L again cds_left_timer = timer_read(); } } } else { unregister_code(KC_BTN1); // Release KC_BTN1 (up) cds_right_active = false; } break;
@erfandaardhaluthfansyah
@erfandaardhaluthfansyah Год назад
how to show on screen of pc instead of in the keyboard LED?
@tiagoVIGILarchitect
@tiagoVIGILarchitect Год назад
Hello, I'm super noob in the world of programming. I'm trying to configure the LEDs of my Montex V.2, and your link was very useful, but I have a doubt! I used the code shown in the video to make an LED on my keyboard change color when I change the layer, but instead of 1 LED, I wanted 4 diferent LEDs to change color at the same time. How can I do it?
@windowsrefund
@windowsrefund Год назад
Hi. Don't you need to specify RGB_MATRIX_ENABLE=yes in your config.h along with a valid driver? The way this is being discussed here makes it seem like you were able to get your RBG lighting working just by copying in a snippet and recompiling. Definitely an interesting video but it would really be all that more useful if a direct link to the configuration was provided so your audience could see what's not seen in the video. The function you're referencing here doesn't exist in your entire github repo so I don't understand the response you gave below where you pointed to your repo?
@JanLunge
@JanLunge Год назад
Hey. All my source files are available here github.com/JanLunge/vial-qmk/tree/vial/keyboards/wlard/w3by2 The RGB_MATRIX_ENABLE=yes is located in the rules.mk I not quite sure which function you mean that can not be found. Only thing to note is vial has changed a few implementation details since I released this video so while the compiled firmware still works its possible that you run into issues with just reusing my code.
@artkovss7272
@artkovss7272 Год назад
@@JanLunge Oh yes, the gaps have arisen ( You have up-to-date source code or example with Combos?
@sq3527
@sq3527 2 года назад
Hi, thanks for the video. What is the name of the clock on the table?
@JanLunge
@JanLunge 2 года назад
That is the “lametric time” smart clock
@pavlealeksic9149
@pavlealeksic9149 2 года назад
Hi Jan. Thanks for the videos they are so resoucful. I wonder if you could share raw QMK/VIA/VIAL files and directories cos I would realy like to add more buttons and encoders to your design. Thanx!
@JanLunge
@JanLunge 2 года назад
You can take a look at my github repo and copy the config folder for the w3by2 and build up from there
@majinkeyboards
@majinkeyboards 2 года назад
@@JanLunge for me the rgb works as an indicator and can change the color, but no animation (no breathing as shown in the clip), am I missing something?
@artkovss7272
@artkovss7272 Год назад
@@JanLunge Thank you for your creativity! I was never able to find the source code (
@Tacoman3209
@Tacoman3209 2 года назад
yo
@gumbocrackers1333
@gumbocrackers1333 2 года назад
Zweiter
Далее
Исповедь / Мася
2:47:10
Просмотров 190 тыс.
The TRIPLE FOLDING phone has a Problem.
12:54
Просмотров 1,9 млн
Hacking a weird TV censoring device
20:59
Просмотров 3,1 млн
My 34 key keymap... (and how you can create your own)
7:29
THAT'S a KVM?!
13:00
Просмотров 121 тыс.
Why did Raspberry Pi make their own SSD?
12:58
Просмотров 164 тыс.
3 advanced QMK/VIA/VIAL features (that I don't use)
7:55
Исповедь / Мася
2:47:10
Просмотров 190 тыс.