diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-07-08 08:34:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-08 08:34:27 -0400 |
commit | a9979c6f4232f48713b1b2cdbef927c3038d1ad4 (patch) | |
tree | b218c0f58a852bde752a66100e4e46da5ee3e2b3 /keyboards/phantom/led.c | |
parent | e8719e10c4395102f8e252c8377e2f19a18ee74d (diff) | |
parent | 564c743aa025c094f9c31ba2049aa50e15d76ab7 (diff) |
Merge pull request #493 from TerryMathews/master
Create keycodes for RGB control functions
Diffstat (limited to 'keyboards/phantom/led.c')
-rw-r--r-- | keyboards/phantom/led.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/phantom/led.c b/keyboards/phantom/led.c index b2459c7743..69dba7d40e 100644 --- a/keyboards/phantom/led.c +++ b/keyboards/phantom/led.c @@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "stdint.h" #include "led.h" -void led_init(void) { +void led_init_ports(void) { // * Set our LED pins as output DDRB |= (1<<6); DDRB |= (1<<7); |