This commit is contained in:
Avishay Orpaz
2016-11-21 23:52:24 +02:00
5 changed files with 109 additions and 1 deletions
+4
View File
@@ -0,0 +1,4 @@
.idea
.pioenvs
.clang_complete
.gcc-flags.json
+63
View File
@@ -0,0 +1,63 @@
# Continuous Integration (CI) is the practice, in software
# engineering, of merging all developer working copies with a shared mainline
# several times a day < http://docs.platformio.org/en/latest/ci/index.html >
#
# Documentation:
#
# * Travis CI Embedded Builds with PlatformIO
# < https://docs.travis-ci.com/user/integration/platformio/ >
#
# * PlatformIO integration with Travis CI
# < http://docs.platformio.org/en/latest/ci/travis.html >
#
# * User Guide for `platformio ci` command
# < http://docs.platformio.org/en/latest/userguide/cmd_ci.html >
#
#
# Please choice one of the following templates (proposed below) and uncomment
# it (remove "# " before each line) or use own configuration according to the
# Travis CI documentation (see above).
#
#
# Template #1: General project. Test it using existing `platformio.ini`.
#
# language: python
# python:
# - "2.7"
#
# sudo: false
# cache:
# directories:
# - "~/.platformio"
#
# install:
# - pip install -U platformio
#
# script:
# - platformio run
#
# Template #2: The project is intended to by used as a library with examples
#
language: python
python:
- "2.7"
sudo: false
cache:
directories:
- "~/.platformio"
env:
- PLATFORMIO_CI_SRC=examples/TM1637Test/TM1637Test.ino
install:
- pip install -U platformio
script:
- platformio ci --lib="." --board=nodemcuv2 --board=ethernet
-1
View File
@@ -25,4 +25,3 @@ The library provides a single class named TM1637Display. An instance of this cla
* `setBrightness` - Sets the brightness of the display
The information given above is only a summary. Please refer to TM1637Display.h for more information. An example is included, demonstarting the operation of most of the functions.
+14
View File
@@ -0,0 +1,14 @@
{
"name": "TM1637",
"keywords": "LED, TM1637",
"description": "Arduino library for TM1637 (LED Driver)",
"repository": {
"type": "git",
"url": "https://github.com/avishorp/TM1637.git"
},
"frameworks": "arduino",
"platforms": [
"atmelavr",
"espressif"
]
}
+28
View File
@@ -0,0 +1,28 @@
#
# Project Configuration File
#
# A detailed documentation with the EXAMPLES is located here:
# http://docs.platformio.org/en/latest/projectconf.html
#
# A sign `#` at the beginning of the line indicates a comment
# Comment lines are ignored.
# Simple and base environment
# [env:mybaseenv]
# platform = %INSTALLED_PLATFORM_NAME_HERE%
# framework =
# board =
#
# Automatic targets - enable auto-uploading
# targets = upload
[env:nodemcuv2]
platform = espressif
framework = arduino
board = nodemcuv2
[env:ethernet]
platform = atmelavr
framework = arduino
board = ethernet