Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
akkoyun committed Feb 20, 2024
1 parent 33a1569 commit 2ede00b
Show file tree
Hide file tree
Showing 6 changed files with 466 additions and 756 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# VT100 Console Library <sup>V1.6</sup>
# VT100 Console Library ^V1.8^

![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)

Expand Down
5 changes: 4 additions & 1 deletion examples/PowerStat/PowerStat.ino
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Define Debug Mode
#define _DEBUG_

// Include Libraries
#include <Console.h>

Expand All @@ -17,6 +20,6 @@ void setup() {
void loop() {

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

}
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Console",
"version": "1.7.0",
"version": "1.8.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 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.7.0
version=1.8.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 2ede00b

Please sign in to comment.