forked from mirrors/qmk_userspace
		
	[Docs] Refactor code examples (#18003)
This commit is contained in:
		
					parent
					
						
							
								1a4a278251
							
						
					
				
			
			
				commit
				
					
						70c6b183df
					
				
			
		
					 3 changed files with 33 additions and 31 deletions
				
			
		| 
						 | 
					@ -125,21 +125,8 @@ Layer conditions can also be used with the callback function like the following:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```c
 | 
					```c
 | 
				
			||||||
bool encoder_update_user(uint8_t index, bool clockwise) {
 | 
					bool encoder_update_user(uint8_t index, bool clockwise) {
 | 
				
			||||||
    if (get_highest_layer(layer_state|default_layer_state) > 0) {
 | 
					    switch(get_highest_layer(layer_state|default_layer_state)) {
 | 
				
			||||||
        if (index == 0) {
 | 
					        case 0:
 | 
				
			||||||
            if (clockwise) {
 | 
					 | 
				
			||||||
                tap_code(KC_WH_D);
 | 
					 | 
				
			||||||
            } else {
 | 
					 | 
				
			||||||
                tap_code(KC_WH_U);
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        } else if (index == 1) {
 | 
					 | 
				
			||||||
            if (clockwise) {
 | 
					 | 
				
			||||||
                tap_code_delay(KC_VOLU, 10);
 | 
					 | 
				
			||||||
            } else {
 | 
					 | 
				
			||||||
                tap_code_delay(KC_VOLD, 10);
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    } else {  /* Layer 0 */
 | 
					 | 
				
			||||||
            if (index == 0) {
 | 
					            if (index == 0) {
 | 
				
			||||||
                if (clockwise) {
 | 
					                if (clockwise) {
 | 
				
			||||||
                    tap_code(KC_PGDN);
 | 
					                    tap_code(KC_PGDN);
 | 
				
			||||||
| 
						 | 
					@ -153,6 +140,22 @@ bool encoder_update_user(uint8_t index, bool clockwise) {
 | 
				
			||||||
                    rgb_matrix_decrease_speed();
 | 
					                    rgb_matrix_decrease_speed();
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					            break;
 | 
				
			||||||
 | 
					        case 1:
 | 
				
			||||||
 | 
					            if (index == 0) {
 | 
				
			||||||
 | 
					                if (clockwise) {
 | 
				
			||||||
 | 
					                    tap_code(KC_WH_D);
 | 
				
			||||||
 | 
					                } else {
 | 
				
			||||||
 | 
					                    tap_code(KC_WH_U);
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					            } else if (index == 1) {
 | 
				
			||||||
 | 
					                if (clockwise) {
 | 
				
			||||||
 | 
					                    tap_code_delay(KC_VOLU, 10);
 | 
				
			||||||
 | 
					                } else {
 | 
				
			||||||
 | 
					                    tap_code_delay(KC_VOLD, 10);
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					            break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    return false;
 | 
					    return false;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -889,15 +889,15 @@ void rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Layer indicator on all flagged keys:
 | 
					Layer indicator on all keys:
 | 
				
			||||||
```c
 | 
					```c
 | 
				
			||||||
void rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
 | 
					void rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
 | 
				
			||||||
    for (uint8_t i = led_min; i <= led_max; i++) {
 | 
					    for (uint8_t i = led_min; i <= led_max; i++) {
 | 
				
			||||||
        switch(get_highest_layer(layer_state|default_layer_state)) {
 | 
					        switch(get_highest_layer(layer_state|default_layer_state)) {
 | 
				
			||||||
            case RAISE:
 | 
					            case 2:
 | 
				
			||||||
                rgb_matrix_set_color(i, RGB_BLUE);
 | 
					                rgb_matrix_set_color(i, RGB_BLUE);
 | 
				
			||||||
                break;
 | 
					                break;
 | 
				
			||||||
            case LOWER:
 | 
					            case 1:
 | 
				
			||||||
                rgb_matrix_set_color(i, RGB_YELLOW);
 | 
					                rgb_matrix_set_color(i, RGB_YELLOW);
 | 
				
			||||||
                break;
 | 
					                break;
 | 
				
			||||||
            default:
 | 
					            default:
 | 
				
			||||||
| 
						 | 
					@ -907,7 +907,7 @@ void rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Layer indicator with only configured keys:
 | 
					Layer indicator only on keys with configured keycodes:
 | 
				
			||||||
```c
 | 
					```c
 | 
				
			||||||
void rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
 | 
					void rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
 | 
				
			||||||
    if (get_highest_layer(layer_state) > 0) {
 | 
					    if (get_highest_layer(layer_state) > 0) {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -20,7 +20,6 @@ Not sure which text editor to use?
 | 
				
			||||||
Editors specifically made for code:
 | 
					Editors specifically made for code:
 | 
				
			||||||
* [Sublime Text](https://www.sublimetext.com/)
 | 
					* [Sublime Text](https://www.sublimetext.com/)
 | 
				
			||||||
* [VS Code](https://code.visualstudio.com/)
 | 
					* [VS Code](https://code.visualstudio.com/)
 | 
				
			||||||
* [Atom](https://atom.io/)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Git resources
 | 
					### Git resources
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue