Skip to content

Commit

Permalink
Merge pull request #4 from Erriez/release-v1.1.4
Browse files Browse the repository at this point in the history
Create release v1.1.4
  • Loading branch information
Erriez authored Apr 25, 2021
2 parents a9f8a8b + ae0d8fd commit 73a7095
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 64 deletions.
6 changes: 4 additions & 2 deletions .auto-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ function autobuild()
BOARDS_AVR="--board uno --board micro --board miniatmega328 --board nanoatmega328new --board pro16MHzatmega328 --board pro8MHzatmega328 --board megaatmega2560 --board leonardo"
BOARDS_ARM="--board due"
BOARDS_ESP="--board d1_mini --board nodemcuv2 --board lolin_d32"
BOARDS_SAMD="--board sparkfun_samd21_mini_usb"
BOARDS_STM32="--board blackpill_f103c8"

echo "Building examples..."
platformio ci --lib="." ${BOARDS_AVR} ${BOARDS_ARM} ${BOARDS_ESP} examples/ErriezSerialTerminal/ErriezSerialTerminal.ino
platformio ci --lib="." ${BOARDS_AVR} ${BOARDS_ARM} ${BOARDS_ESP} examples/ErriezSerialTerminal_EchoAndCallback/ErriezSerialTerminal_EchoAndCallback.ino
platformio ci --lib="." ${BOARDS_AVR} ${BOARDS_ARM} ${BOARDS_ESP} ${BOARDS_SAMD} ${BOARDS_STM32} examples/ErriezSerialTerminal/ErriezSerialTerminal.ino
platformio ci --lib="." ${BOARDS_AVR} ${BOARDS_ARM} ${BOARDS_ESP} ${BOARDS_SAMD} ${BOARDS_STM32} examples/ErriezSerialTerminal_EchoAndCallback/ErriezSerialTerminal_EchoAndCallback.ino
}

function generate_doxygen()
Expand Down
55 changes: 0 additions & 55 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Erriez Serial Terminal library for Arduino"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.1.3
PROJECT_NUMBER = 1.1.4

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
Binary file modified ErriezSerialTerminal.pdf
Binary file not shown.
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,28 @@
# Serial Terminal library for Arduino

[![Build Status](https://travis-ci.org/Erriez/ErriezSerialTerminal.svg?branch=master)](https://travis-ci.org/Erriez/ErriezSerialTerminal)

This is a universal Serial Terminal library for Arduino to parse ASCII commands and arguments.

![Serial Terminal](https://raw.githubusercontent.com/Erriez/ErriezSerialTerminal/master/extras/ScreenshotSerialTerminal.png)


## Hardware

Any Arduino hardware with a serial port.
Any Arduino hardware with a serial port, such as:

Arduino:
* UNO
* Nano
* Micro
* Pro or Pro Mini
* Mega or Mega2560
* Leonardo

Other targets:
* DUE
* ESP8266
* ESP32
* SAMD21
* STM32F1


## Examples
Expand Down
4 changes: 2 additions & 2 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ErriezSerialTerminal",
"version": "1.1.3",
"version": "1.1.4",
"keywords": "arduino, library, serial, terminal, ascii, commands, arguments, command-line, parser, build scripts, documentation, examples",
"description": "Universal Serial Terminal library for Arduino to parse ASCII commands and arguments.",
"homepage": "https://github.com/Erriez/ErriezSerialTerminal",
Expand All @@ -22,4 +22,4 @@
"espressif8266",
"espressif32"
]
}
}
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Erriez Serial Terminal
version=1.1.3
version=1.1.4
author=Erriez <Erriez@users.noreply.github.com>
maintainer=Erriez <Erriez@users.noreply.github.com>
sentence=Serial Terminal library for Arduino
Expand Down

0 comments on commit 73a7095

Please sign in to comment.