diff options
author | QMK Bot <hello@qmk.fm> | 2021-01-30 11:01:46 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-01-30 11:01:46 +0000 |
commit | a0e733391532490a216da044efb40451f67774f2 (patch) | |
tree | 8cc6bd43d0b70283b90cfadee1f512ef1161ff4c /docs/feature_rgb_matrix.md | |
parent | 6b9a7e21e953d68d6ae093c2d727f1f3ac2798c0 (diff) | |
parent | 92a787ca4cdecbbb7e2c1394d5192d5fa3dabf6d (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/feature_rgb_matrix.md')
-rw-r--r-- | docs/feature_rgb_matrix.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/feature_rgb_matrix.md b/docs/feature_rgb_matrix.md index e7ede48395..fd866bd571 100644 --- a/docs/feature_rgb_matrix.md +++ b/docs/feature_rgb_matrix.md @@ -53,7 +53,7 @@ const is31_led g_is31_leds[DRIVER_LED_TOTAL] = { } ``` -Where `Cx_y` is the location of the LED in the matrix defined by [the datasheet](http://www.issi.com/WW/pdf/31FL3731.pdf) and the header file `drivers/issi/is31fl3731.h`. The `driver` is the index of the driver you defined in your `config.h` (`0` or `1` right now). +Where `Cx_y` is the location of the LED in the matrix defined by [the datasheet](https://www.issi.com/WW/pdf/31FL3731.pdf) and the header file `drivers/issi/is31fl3731.h`. The `driver` is the index of the driver you defined in your `config.h` (`0` or `1` right now). --- ### IS31FL3733/IS31FL3737 :id=is31fl3733is31fl3737 @@ -105,7 +105,7 @@ const is31_led g_is31_leds[DRIVER_LED_TOTAL] = { } ``` -Where `X_Y` is the location of the LED in the matrix defined by [the datasheet](http://www.issi.com/WW/pdf/31FL3733.pdf) and the header file `drivers/issi/is31fl3733.h`. The `driver` is the index of the driver you defined in your `config.h` (Only `0` right now). +Where `X_Y` is the location of the LED in the matrix defined by [the datasheet](https://www.issi.com/WW/pdf/31FL3733.pdf) and the header file `drivers/issi/is31fl3733.h`. The `driver` is the index of the driver you defined in your `config.h` (Only `0` right now). --- |