1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-07 16:23:38 +03:00
esp8266/variants/mercury/pins_arduino.h
iotgupta bc251382a6
Boards - fix & update Mercury (#9238)
* update Mercury Board

* fix

---------

Co-authored-by: Maxim Prokhorov <prokhorov.max@outlook.com>
2025-05-29 16:20:52 +03:00

75 lines
2.0 KiB
C

/*
pins_arduino.h - Pin definition functions for Arduino
Part of Arduino - http://www.arduino.cc/
Copyright (c) 2007 David A. Mellis
Modified for ESP8266 platform by Ivan Grokhotkov, 2014-2015.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General
Public License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA
$Id: wiring.h 249 2007-02-03 16:52:51Z mellis $
*/
#ifndef Pins_Arduino_h
#define Pins_Arduino_h
#include "../generic/common.h"
#define LED_BUILTIN 2
#define BUILTIN_LED LED_BUILTIN
#define A0 (17)
static const uint8_t D0 = 0;
static const uint8_t D1 = 12;
static const uint8_t D2 = 4;
static const uint8_t D3 = 16;
static const uint8_t D4 = 5;
static const uint8_t D5 = 13;
static const uint8_t D6 = 15;
static const uint8_t D7 = 2;
static const uint8_t D8 = 14;
static const uint8_t D9 = 9;
static const uint8_t D10 = 10;
#define PIN_WIRE_SDA (2)
#define PIN_WIRE_SCL (14)
// Brushed DC Motors
static const uint8_t MOTOR_1_DIR = D3;
static const uint8_t MOTOR_1_PWM = D1;
static const uint8_t MOTOR_2_DIR = D4;
static const uint8_t MOTOR_2_PWM = D2;
//Servo
static const uint8_t SERVO1 = D4;
static const uint8_t SERVO2 = D6;
static const uint8_t SERVO3 = D3;
static const uint8_t SERVO4 = D5;
//Ultrasonic Sensor
static const uint8_t USST = D7;
static const uint8_t USSE = D8;
//IR
static const uint8_t IR1 = D9;
static const uint8_t IR2 = D10;
//RGB LED
static const uint8_t RGB = D0;
#endif /* Pins_Arduino_h */