There is one last thing I have to fix: the FN key does not work, but I am not sure of what I wrote about this part
Search found 3 matches
- 21 May 2019, 10:58
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 424507
Re: How to build your very own keyboard firmware
Well done, this has solved the issue, all the keys work perfectly. Thank you
There is one last thing I have to fix: the FN key does not work, but I am not sure of what I wrote about this part
There is one last thing I have to fix: the FN key does not work, but I am not sure of what I wrote about this part
- 20 May 2019, 14:39
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 424507
Re: How to build your very own keyboard firmware
Thanks a lot,
Matrix.c :
/*
* scan matrix
*/
#include <stdint.h>
#include <stdbool.h>
#include <avr/io.h>
#include <util/delay.h>
#include "print.h"
#include "debug.h"
#include "util.h"
#include "matrix.h"
#ifndef DEBOUNCE
# define DEBOUNCE 5
#endif
static uint8_t debouncing = DEBOUNCE ...
Matrix.c :
/*
* scan matrix
*/
#include <stdint.h>
#include <stdbool.h>
#include <avr/io.h>
#include <util/delay.h>
#include "print.h"
#include "debug.h"
#include "util.h"
#include "matrix.h"
#ifndef DEBOUNCE
# define DEBOUNCE 5
#endif
static uint8_t debouncing = DEBOUNCE ...
- 19 May 2019, 19:36
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 424507
Re: How to build your very own keyboard firmware
Hello
I have been using the tutorial in this topic to configure a keyboard I built, I found it very well documented and it helped a lot.
However I have a strange issue now that I loaded it in the teensy I used in my keyboard,
The 4 first rows work perfectly but the lower ones act weird, when I type ...
I have been using the tutorial in this topic to configure a keyboard I built, I found it very well documented and it helped a lot.
However I have a strange issue now that I loaded it in the teensy I used in my keyboard,
The 4 first rows work perfectly but the lower ones act weird, when I type ...