10000 support new board (invent one) by inventvictor · Pull Request #5286 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

support new board (invent one) #5286

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 28, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add inventone pin mapping .h file to variants
  • Loading branch information
inventvictor committed Oct 28, 2018
commit b0bf937928fb12fd256d99cb5762dc7ad03c9247
57 changes: 57 additions & 0 deletions variants/inventone/pins_arduino.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
/*
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

#define PIN_WIRE_SDA (2)
#define PIN_WIRE_SCL (14)

static const uint8_t SDA = PIN_WIRE_SDA;
static const uint8_t SCL = PIN_WIRE_SCL;

#define LED_BUILTIN 2

static const uint8_t D1 = 15;
static const uint8_t D2 = 0;
static const uint8_t D3 = 14;
static const uint8_t D4 = 2;
static const uint8_t D5 = 5;
static const uint8_t D6 = 4;
static const uint8_t D7 = 13;
static const uint8_t D8 = 12;
static const uint8_t D9 = 16;
static const uint8_t RX = 3;
static const uint8_t TX = 1;
static const uint8_t A0 = 0;
/*Analog pins for Onboard ADC*/
static const uint8_t A1 = 1;
static const uint8_t A2 = 2;
static const uint8_t A3 = 3;
static const uint8_t A4 = 4;

#include "../generic/common.h"

#endif /* Pins_Arduino_h */
0