6 files changed +18
-8
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ $RECYCLE.BIN/
14
14
* .msm
15
15
* .msp
16
16
17
+ * .svd
18
+ * .cfg
19
+
20
+ debug_custom.json
21
+
17
22
# Windows shortcuts
18
23
* .lnk
19
24
Original file line number Diff line number Diff line change 29
29
#include < Wire.h> // The DHT12 uses I2C comunication.
30
30
31
31
#include " DHT12.h"
32
+
33
+
34
+ #define BLYNK_TEMPLATE_ID " TMPxxxxxx"
35
+ #define BLYNK_TEMPLATE_NAME " Device"
36
+
32
37
DHT12 dht12; // Preset scale CELSIUS and ID 0x5c.
33
38
34
39
// You should get Auth Token in the Blynk App.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Module at the same time)
16
16
*/
17
17
#include < M5Stack.h>
18
18
19
- #include " MODULE_GRBL13 .2.h"
19
+ #include " Module_GRBL_13 .2.h"
20
20
21
21
/*
22
22
* The I2C address of GRBL 13.2 Module is 0x70 by default.
@@ -28,8 +28,8 @@ Module at the same time)
28
28
#define STEPMOTOR_I2C_ADDR_1 0x70
29
29
#define STEPMOTOR_I2C_ADDR_2 0x71
30
30
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);
33
33
34
34
void setup () {
35
35
// put your setup code here, to run once:
Original file line number Diff line number Diff line change 14
14
*/
15
15
#include < M5Stack.h>
16
16
17
- #include " MODULE_GRBL13 .2.h"
17
+ #include " Module_GRBL_13 .2.h"
18
18
19
19
/*
20
20
* The I2C address of GRBL 13.2 Module is 0x70 by default.
26
26
#define STEPMOTOR_I2C_ADDR 0x70
27
27
// #define STEPMOTOR_I2C_ADDR 0x71
28
28
29
- GRBL _GRBL = GRBL (STEPMOTOR_I2C_ADDR);
29
+ Module_GRBL _GRBL (STEPMOTOR_I2C_ADDR);
30
30
31
31
void setup () {
32
32
// put your setup code here, to run once:
Original file line number Diff line number Diff line change 10
10
"type" : " git" ,
11
11
"url" : " https://github.com/m5stack/m5stack.git"
12
12
},
13
- "version" : " 0.4.5 " ,
13
+ "version" : " 0.4.6 " ,
14
14
"frameworks" : " arduino" ,
15
15
"platforms" : " espressif32" ,
16
16
"headers" : " M5Stack.h"
Original file line number Diff line number Diff line change 1
1
name =M5Stack
2
- version =0.4.5
2
+ version =0.4.6
3
3
author =M5Stack
4
4
maintainer =M5Stack
5
5
sentence =Library for M5Stack Core development kit
@@ -8,4 +8,4 @@ category=Device Control
8
8
url =https://github.com/m5stack/m5stack
9
9
architectures =esp32
10
10
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