Skip to content

Commit

Permalink
release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gitshaoxiang committed Dec 26, 2023
1 parent 3d4d3ea commit e291ca9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/Basic/camera/camera.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ void setup() {
CoreS3.begin(cfg);
CoreS3.Display.setTextColor(GREEN);
CoreS3.Display.setTextDatum(middle_center);
CoreS3.Display.setTextFont(&fonts::Orbitron_Light_24);
CoreS3.Display.setFont(&fonts::Orbitron_Light_24);
CoreS3.Display.setTextSize(1);

if (!CoreS3.Camera.begin()) {
Expand Down
2 changes: 1 addition & 1 deletion examples/Basic/ltr553/ltr553.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ void setup() {
CoreS3.begin(cfg);
CoreS3.Display.setTextColor(GREEN);
CoreS3.Display.setTextDatum(middle_center);
CoreS3.Display.setTextFont(&fonts::Orbitron_Light_24);
CoreS3.Display.setFont(&fonts::Orbitron_Light_24);
CoreS3.Display.setTextSize(1);

device_init_base_para.ps_led_pulse_freq = LTR5XX_LED_PULSE_FREQ_40KHZ;
Expand Down
2 changes: 1 addition & 1 deletion examples/Basic/touch/touch.ino
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void setup(void) {

CoreS3.Display.setTextColor(GREEN);
CoreS3.Display.setTextDatum(middle_center);
CoreS3.Display.setTextFont(&fonts::Orbitron_Light_24);
CoreS3.Display.setFont(&fonts::Orbitron_Light_24);
CoreS3.Display.setTextSize(1);

CoreS3.Display.drawString("Touch Test", CoreS3.Display.width() / 2,
Expand Down
2 changes: 1 addition & 1 deletion examples/Basic/wakeup/wakeup.ino
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void setup(void) {

CoreS3.Display.setTextColor(GREEN);
CoreS3.Display.setTextDatum(middle_center);
CoreS3.Display.setTextFont(&fonts::FreeSerifItalic18pt7b);
CoreS3.Display.setFont(&fonts::FreeSerifItalic18pt7b);
CoreS3.Display.setTextSize(1);

CoreS3.Display.drawString("Touch", CoreS3.Display.width() / 2,
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"type": "git",
"url": "https://github.com/m5stack/M5CoreS3.git"
},
"version": "0.0.4",
"version": "1.0.0",
"frameworks": "arduino",
"platforms": "espressif32",
"headers": "M5CoreS3.h"
Expand Down
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=M5CoreS3
version=0.0.4
version=1.0.0
author=Tinyu-Zhao,M5Stack
maintainer=Tinyu-Zhao,M5Stack
sentence=Library for M5CoreS3 Core development kit
Expand All @@ -8,4 +8,4 @@ category=Device Control
url=https://github.com/m5stack/M5CoreS3
architectures=esp32
includes=M5CoreS3.h
depends=M5Family,BMI270_Sensor,M5GFX,M5Unified
depends=M5GFX,M5Unified,M5Family

0 comments on commit e291ca9

Please sign in to comment.