您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
22 行
403 B
22 行
403 B
#pragma once
|
|
#include "lib/arduino_pins.h"
|
|
|
|
#define PIN_LEFT PIN_D2
|
|
#define DDR_LEFT DDR_D2
|
|
#define PORT_LEFT PORT_D2
|
|
#define LEFT D2
|
|
|
|
#define PIN_RIGHT PIN_D3
|
|
#define DDR_RIGHT DDR_D3
|
|
#define PORT_RIGHT PORT_D3
|
|
#define RIGHT D3
|
|
|
|
#define PIN_UP PIN_D4
|
|
#define DDR_UP DDR_D4
|
|
#define PORT_UP PORT_D4
|
|
#define UP D4
|
|
|
|
#define PIN_DOWN PIN_D5
|
|
#define DDR_DOWN DDR_D5
|
|
#define PORT_DOWN PORT_D5
|
|
#define DOWN D5
|
|
|