Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ef6fbd4

Browse files
committedSep 20, 2023
release v0.4.6
1 parent 1e81176 commit ef6fbd4

File tree

6 files changed

+18
-8
lines changed

6 files changed

+18
-8
lines changed
 

‎.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ $RECYCLE.BIN/
1414
*.msm
1515
*.msp
1616

17+
*.svd
18+
*.cfg
19+
20+
debug_custom.json
21+
1722
# Windows shortcuts
1823
*.lnk
1924

‎examples/Advanced/Blynk/Post-DHT12/Post-DHT12.ino

+5
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@
2929
#include <Wire.h> //The DHT12 uses I2C comunication.
3030

3131
#include "DHT12.h"
32+
33+
34+
#define BLYNK_TEMPLATE_ID "TMPxxxxxx"
35+
#define BLYNK_TEMPLATE_NAME "Device"
36+
3237
DHT12 dht12; // Preset scale CELSIUS and ID 0x5c.
3338

3439
// You should get Auth Token in the Blynk App.

‎examples/Modules/StepmotorGRBL13.2_M035/multi_control/multi_control.ino

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Module at the same time)
1616
*/
1717
#include <M5Stack.h>
1818

19-
#include "MODULE_GRBL13.2.h"
19+
#include "Module_GRBL_13.2.h"
2020

2121
/*
2222
* The I2C address of GRBL 13.2 Module is 0x70 by default.
@@ -28,8 +28,8 @@ Module at the same time)
2828
#define STEPMOTOR_I2C_ADDR_1 0x70
2929
#define STEPMOTOR_I2C_ADDR_2 0x71
3030

31-
GRBL _GRBL_A = GRBL(STEPMOTOR_I2C_ADDR_1);
32-
GRBL _GRBL_B = GRBL(STEPMOTOR_I2C_ADDR_2);
31+
Module_GRBL _GRBL_A(STEPMOTOR_I2C_ADDR_1);
32+
Module_GRBL _GRBL_B(STEPMOTOR_I2C_ADDR_2);
3333

3434
void setup() {
3535
// put your setup code here, to run once:

‎examples/Modules/StepmotorGRBL13.2_M035/xyz_control/xyz_control.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
#include <M5Stack.h>
1616

17-
#include "MODULE_GRBL13.2.h"
17+
#include "Module_GRBL_13.2.h"
1818

1919
/*
2020
* The I2C address of GRBL 13.2 Module is 0x70 by default.
@@ -26,7 +26,7 @@
2626
#define STEPMOTOR_I2C_ADDR 0x70
2727
// #define STEPMOTOR_I2C_ADDR 0x71
2828

29-
GRBL _GRBL = GRBL(STEPMOTOR_I2C_ADDR);
29+
Module_GRBL _GRBL(STEPMOTOR_I2C_ADDR);
3030

3131
void setup() {
3232
// put your setup code here, to run once:

‎library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"type": "git",
1111
"url": "https://github.com/m5stack/m5stack.git"
1212
},
13-
"version": "0.4.5",
13+
"version": "0.4.6",
1414
"frameworks": "arduino",
1515
"platforms": "espressif32",
1616
"headers": "M5Stack.h"

‎library.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=M5Stack
2-
version=0.4.5
2+
version=0.4.6
33
author=M5Stack
44
maintainer=M5Stack
55
sentence=Library for M5Stack Core development kit
@@ -8,4 +8,4 @@ category=Device Control
88
url=https://github.com/m5stack/m5stack
99
architectures=esp32
1010
includes=M5Stack.h
11-
depends=M5Family,M5Module-4Relay,MODULE_GRBL13.2,M5_BMM150
11+
depends=M5Family,M5Module-4Relay,Module_GRBL_13.2,M5_BMM150

0 commit comments

Comments
 (0)
Failed to load comments.