Skip to content

Commit 98f967c

Browse files
committed
Merge branch 'develop'
2 parents d26e4fe + 7c7652b commit 98f967c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"m5stack/M5Utility": "*",
1515
"m5stack/M5HAL": "*"
1616
},
17-
"version": "0.1.1",
17+
"version": "0.1.2",
1818
"frameworks": [
1919
"arduino"
2020
],

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=M5UnitUnified
2-
version=0.1.1
2+
version=0.1.2
33
author=M5Stack
44
maintainer=M5Stack
55
sentence=M5UnitUnified is a library for unified handling of various M5 units products. (Alpha version)

src/m5_unit_component/adapter_gpio.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,8 +347,8 @@ m5::hal::error::error_t AdapterGPIOBase::GPIOImpl::write_analog(const gpio_num_t
347347
return m5::hal::error::error_t::OK;
348348
#else
349349
analogWrite(pin, value & 0xFF);
350-
;
351-
// return m5::hal::error::error_t::NOT_IMPLEMENTED;
350+
return m5::hal::error::error_t::OK;
351+
// return m5::hal::error::error_t::NOT_IMPLEMENTED;
352352
#endif
353353
}
354354

0 commit comments

Comments
 (0)