]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - keyboards/staryu/staryu.h
[Keyboard] Convert Staryu to use DIRECT_PINS and BACKLIGHT_PINS (#5848)
[qmk_firmware.git] / keyboards / staryu / staryu.h
index f404dff284e93fb9224c8072481ca184db491cf4..bdce5806f730519ccbff668bc615372410e0ed32 100755 (executable)
@@ -15,18 +15,14 @@ You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 #pragma once
+
 #include "quantum.h"
+#define ___ KC_NO
 
 #define LAYOUT( \
-            K00, K01, \
+            K01, K02, \
        K10, K11, K12  \
 ) { \
-       { K00, K01, K12, K11, K10 }, \
+       { ___, K01, K02 }, \
+       { K10, K11, K12 }  \
 }
-
-
-#ifdef BACKLIGHT_ENABLE
-
-void backlight_set_value(uint8_t index, uint8_t level);
-
-#endif