Skip to content

Commit

Permalink
Merge pull request #22 from akkoyun/Development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
akkoyun committed Jun 26, 2022
2 parents 1d20b50 + 1b0db2a commit a4fb22b
Show file tree
Hide file tree
Showing 12 changed files with 256 additions and 146 deletions.
Binary file added .DS_Store
Binary file not shown.
13 changes: 13 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: akkoyun
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']%
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.vscode/
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# VT100 Console Library <sup>V1.3</sup>
# VT100 Console Library <sup>V1.4</sup>

![GitHub release (latest by date)](https://img.shields.io/github/v/release/akkoyun/Console) ![arduino-library-badge](https://www.ardu-badge.com/badge/Console.svg?) ![Visits Badge](https://badges.pufler.dev/visits/akkoyun/Console) ![GitHub stars](https://img.shields.io/github/stars/akkoyun/Console?style=flat&logo=github) ![Updated Badge](https://badges.pufler.dev/updated/akkoyun/Console) ![PlatformIO Registry](https://badges.registry.platformio.org/packages/akkoyun/library/Console.svg)

Build - 01.03.16
Build - 01.04.00

---

Expand Down
41 changes: 41 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"version": "0.2",
"ignorePaths": [],
"dictionaryDefinitions": [],
"dictionaries": [],
"words": [
"Akkoyun",
"atmelavr",
"atmelmegaavr",
"CCID",
"CGACT",
"CGDCONT",
"CGPADDR",
"CGREG",
"CGSN",
"CMEE",
"COEF",
"CPIN",
"CREG",
"FCLASS",
"FRWL",
"Gunce",
"HTTPCFG",
"ICCID",
"IMEI",
"Mehmet",
"mgbs",
"millis",
"REGMODE",
"RSSI",
"SCFGEXT",
"SERVIFO",
"SGACT",
"SLRI",
"Telit",
"TXMONMODE",
"UART"
],
"ignoreWords": [],
"import": []
}
Binary file modified examples/.DS_Store
Binary file not shown.
19 changes: 0 additions & 19 deletions examples/B100BB_Demo/B100BB_Demo.ino

This file was deleted.

25 changes: 25 additions & 0 deletions examples/PowerStat/PowerStat.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// Include Libraries
#include <Console.h>

// Define Object
Console Terminal(Serial);

void setup() {

// Start Serial Stream
Serial.begin(115200);

// Start Terminal
Terminal.Begin();

// Draw Terminal Base
Terminal.PowerStat();

}

void loop() {

// Print Terminal Text
Terminal.Text(2, 13, RED, String(millis()));

}
8 changes: 4 additions & 4 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Console",
"version": "1.3.18",
"version": "1.4.0",
"keywords": "Console, Serial, VT100, UART, Color, Terminal",
"description": "Virtual terminal sequences are control character sequences that can control cursor movement, color/font mode, and other operations when written to the output stream. Sequences may also be received on the input stream in response to an output stream query information sequence or as an encoding of user input when the appropriate mode is set. Arduino based VT100 comparable serial console library.",
"authors":
Expand All @@ -24,10 +24,10 @@
},
"examples": [
{
"name": "B100BB_Demo",
"base": "examples/B100BB_Demo",
"name": "PowerStat",
"base": "examples/PowerStat",
"files": [
"B100BB_Demo.ino"
"PowerStat.ino"
]
}
]
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Console
version=1.3.18
version=1.4.0
author=Gunce Akkoyun <akkoyun@me.com>
maintainer=Gunce Akkoyun <akkoyun@me.com>
sentence=Arduino based VT100 comparable serial console library.
Expand Down

0 comments on commit a4fb22b

Please sign in to comment.