* Line ending stuff again * Added Let's Split Eh? Files and updated #USE_IC2 checks to also include th EH revision (can only be used in I2C) * Added personal keymap, updated some of the EH files * Created new keyboard file for testing "lets_split_eh" will merge into lets_split once fully functional * Added split code from lets_split, removed pro micro imports and LED code THIS IS WORKING CODE, WITHOUT RGB AND BACKLIGHT * Took back original Lets Slit files for the lets_split keyboard, working in the lets_split_eh folder for now * Updated eh.c * More rework of the I2C code, added global flags for split boards. * Introduced RGB over I2C, having weird edge case issues at the moment though * Fixed weird I2C edgecase with RGB, although still would like to track down route cause.. * Changed RGB keycodes (static ones) to activate on key-up instead of key-down to elimate weird ghosting issue over I2C * Lots of changes, mainly externalized the Split keyboard code and added logic for only including when needed. - Added makefile option "SPLIT_KEYBOARD" that when = yes will include the split keyboard files and custom matrix - Split keyboard files placed into quantum/split_common/ - Added define option for config files "SPLIT_HAND_PIN" FOr using high/low pin to determine handedness, low = right hand, high = left hand - Cleaned up split logic for RGB and Backlight so it is only exectuted / included when needed * Updated documentation for the new makefile options and #defines specific to split keyboards * Added a bit more info to docs, so people aren't confused * Modifed Let's Split to use externalized code, also added left and right hand eeprom files to the split_common folder * Removed some debugging from eh.c * Small changes to keyboard configs. Also added a default keymap (just a copy of my that_canadian keymap). * Added a README file to the Let's Split Eh? * Changed it so RGB static updates are done on key-up ONLY for split boards rather than all boards. Also fixed leftover un-used variable in rgblight.c * Updated default keymap and my keymap for Let's Split Eh? Updated the comments so it reflects RGB control, and removed audio functions. * Fixed lets_split_eh not having a default version * Removed "eh" references from lets_split folder for now * Took lets_split folder from master to fix travis build errors, weird my local was overriding. * Changed LAYOUT_ortho_4x12_kc -> LAYOUT_kc_ortho_4x12 to match bakingpy and others * Removed rules.mk from my lets_split keymap, not needed * Updated the config_options doc to better explain the usage of "#define SPLIT_HAND_PIN"
		
			
				
	
	
		
			171 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			171 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* Copyright 2017 Yang Liu
 | |
|  *
 | |
|  * This program is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU General Public License as published by
 | |
|  * the Free Software Foundation, either version 2 of the License, or
 | |
|  * (at your option) any later version.
 | |
|  *
 | |
|  * This program is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU General Public License
 | |
|  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| #ifndef RGBLIGHT_H
 | |
| #define RGBLIGHT_H
 | |
| 
 | |
| #ifdef RGBLIGHT_ANIMATIONS
 | |
| 	#define RGBLIGHT_MODES 35
 | |
| #else
 | |
| 	#define RGBLIGHT_MODES 1
 | |
| #endif
 | |
| 
 | |
| #ifndef RGBLIGHT_EFFECT_BREATHE_CENTER
 | |
| #define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85  // 1-2.7
 | |
| #endif
 | |
| 
 | |
| #ifndef RGBLIGHT_EFFECT_BREATHE_MAX
 | |
| #define RGBLIGHT_EFFECT_BREATHE_MAX 255   // 0-255
 | |
| #endif
 | |
| 
 | |
| #ifndef RGBLIGHT_EFFECT_SNAKE_LENGTH
 | |
| #define RGBLIGHT_EFFECT_SNAKE_LENGTH 4
 | |
| #endif
 | |
| 
 | |
| #ifndef RGBLIGHT_EFFECT_KNIGHT_LENGTH
 | |
| #define RGBLIGHT_EFFECT_KNIGHT_LENGTH 3
 | |
| #endif
 | |
| 
 | |
| #ifndef RGBLIGHT_EFFECT_KNIGHT_OFFSET
 | |
| #define RGBLIGHT_EFFECT_KNIGHT_OFFSET 0
 | |
| #endif
 | |
| 
 | |
| #ifndef RGBLIGHT_EFFECT_KNIGHT_LED_NUM
 | |
| #define RGBLIGHT_EFFECT_KNIGHT_LED_NUM RGBLED_NUM
 | |
| #endif
 | |
| 
 | |
| #ifndef RGBLIGHT_EFFECT_CHRISTMAS_INTERVAL
 | |
| #define RGBLIGHT_EFFECT_CHRISTMAS_INTERVAL 1000
 | |
| #endif
 | |
| 
 | |
| #ifndef RGBLIGHT_EFFECT_CHRISTMAS_STEP
 | |
| #define RGBLIGHT_EFFECT_CHRISTMAS_STEP 2
 | |
| #endif
 | |
| 
 | |
| #ifndef RGBLIGHT_HUE_STEP
 | |
| #define RGBLIGHT_HUE_STEP 10
 | |
| #endif
 | |
| #ifndef RGBLIGHT_SAT_STEP
 | |
| #define RGBLIGHT_SAT_STEP 17
 | |
| #endif
 | |
| #ifndef RGBLIGHT_VAL_STEP
 | |
| #define RGBLIGHT_VAL_STEP 17
 | |
| #endif
 | |
| 
 | |
| #define RGBLED_TIMER_TOP F_CPU/(256*64)
 | |
| // #define RGBLED_TIMER_TOP 0xFF10
 | |
| 
 | |
| #include <stdint.h>
 | |
| #include <stdbool.h>
 | |
| #include "eeconfig.h"
 | |
| #ifndef RGBLIGHT_CUSTOM_DRIVER
 | |
| #include "ws2812.h"
 | |
| #endif
 | |
| #include "rgblight_types.h"
 | |
| #include "rgblight_list.h"
 | |
| 
 | |
| #if defined(__AVR__)
 | |
|     #include <avr/pgmspace.h>
 | |
| #endif
 | |
| 
 | |
| extern LED_TYPE led[RGBLED_NUM];
 | |
| 
 | |
| extern const uint8_t RGBLED_BREATHING_INTERVALS[4] PROGMEM;
 | |
| extern const uint8_t RGBLED_RAINBOW_MOOD_INTERVALS[3] PROGMEM;
 | |
| extern const uint8_t RGBLED_RAINBOW_SWIRL_INTERVALS[3] PROGMEM;
 | |
| extern const uint8_t RGBLED_SNAKE_INTERVALS[3] PROGMEM;
 | |
| extern const uint8_t RGBLED_KNIGHT_INTERVALS[3] PROGMEM;
 | |
| extern const uint16_t RGBLED_RGBTEST_INTERVALS[1] PROGMEM;
 | |
| 
 | |
| typedef union {
 | |
|   uint32_t raw;
 | |
|   struct {
 | |
|     bool     enable  :1;
 | |
|     uint8_t  mode    :6;
 | |
|     uint16_t hue     :9;
 | |
|     uint8_t  sat     :8;
 | |
|     uint8_t  val     :8;
 | |
|     uint8_t  speed   :8;//EECONFIG needs to be increased to support this
 | |
|   };
 | |
| } rgblight_config_t;
 | |
| 
 | |
| void rgblight_init(void);
 | |
| void rgblight_increase(void);
 | |
| void rgblight_decrease(void);
 | |
| void rgblight_toggle(void);
 | |
| void rgblight_enable(void);
 | |
| void rgblight_disable(void);
 | |
| void rgblight_step(void);
 | |
| void rgblight_step_reverse(void);
 | |
| uint32_t rgblight_get_mode(void);
 | |
| void rgblight_mode(uint8_t mode);
 | |
| void rgblight_set(void);
 | |
| void rgblight_update_dword(uint32_t dword);
 | |
| void rgblight_increase_hue(void);
 | |
| void rgblight_decrease_hue(void);
 | |
| void rgblight_increase_sat(void);
 | |
| void rgblight_decrease_sat(void);
 | |
| void rgblight_increase_val(void);
 | |
| void rgblight_decrease_val(void);
 | |
| void rgblight_increase_speed(void);
 | |
| void rgblight_decrease_speed(void);
 | |
| void rgblight_sethsv(uint16_t hue, uint8_t sat, uint8_t val);
 | |
| uint16_t rgblight_get_hue(void);
 | |
| uint8_t rgblight_get_sat(void);
 | |
| uint8_t rgblight_get_val(void);
 | |
| void rgblight_setrgb(uint8_t r, uint8_t g, uint8_t b);
 | |
| void rgblight_setrgb_at(uint8_t r, uint8_t g, uint8_t b, uint8_t index);
 | |
| void rgblight_sethsv_at(uint16_t hue, uint8_t sat, uint8_t val, uint8_t index);
 | |
| 
 | |
| uint32_t eeconfig_read_rgblight(void);
 | |
| void eeconfig_update_rgblight(uint32_t val);
 | |
| void eeconfig_update_rgblight_default(void);
 | |
| void eeconfig_debug_rgblight(void);
 | |
| 
 | |
| void rgb_matrix_increase(void);
 | |
| void rgb_matrix_decrease(void);
 | |
| 
 | |
| void sethsv(uint16_t hue, uint8_t sat, uint8_t val, LED_TYPE *led1);
 | |
| void setrgb(uint8_t r, uint8_t g, uint8_t b, LED_TYPE *led1);
 | |
| 
 | |
| void rgblight_sethsv_noeeprom(uint16_t hue, uint8_t sat, uint8_t val);
 | |
| void rgblight_mode_noeeprom(uint8_t mode);
 | |
| void rgblight_toggle_noeeprom(void);
 | |
| void rgblight_enable_noeeprom(void);
 | |
| void rgblight_disable_noeeprom(void);
 | |
| 
 | |
| void rgblight_sethsv_eeprom_helper(uint16_t hue, uint8_t sat, uint8_t val, bool write_to_eeprom);
 | |
| void rgblight_mode_eeprom_helper(uint8_t mode, bool write_to_eeprom);
 | |
| 
 | |
| 
 | |
| #define EZ_RGB(val) rgblight_show_solid_color((val >> 16) & 0xFF, (val >> 8) & 0xFF, val & 0xFF)
 | |
| void rgblight_show_solid_color(uint8_t r, uint8_t g, uint8_t b);
 | |
| 
 | |
| void rgblight_task(void);
 | |
| 
 | |
| void rgblight_timer_init(void);
 | |
| void rgblight_timer_enable(void);
 | |
| void rgblight_timer_disable(void);
 | |
| void rgblight_timer_toggle(void);
 | |
| void rgblight_effect_breathing(uint8_t interval);
 | |
| void rgblight_effect_rainbow_mood(uint8_t interval);
 | |
| void rgblight_effect_rainbow_swirl(uint8_t interval);
 | |
| void rgblight_effect_snake(uint8_t interval);
 | |
| void rgblight_effect_knight(uint8_t interval);
 | |
| void rgblight_effect_christmas(void);
 | |
| void rgblight_effect_rgbtest(void);
 | |
| 
 | |
| #endif
 |