Description
Power switch operation:
* Power on :Press power button for 2 seconds
* Power off :Press power button for 6 seconds
Product Features
* ESP32-based support Wi-Fi
* Built-in 6-Axis IMU
* Red LED
* IR transmitter
* Microphone
* RTC
* Buttons, LCD(1.14 inch)
* Built-in Lithium Polymer Battery
* Extendable Socket
* Built-in Passive Buzzer
* Wearable & Wall mounted
* Compatible with multi-platform development:
- UIFlow
- MicroPython
- Arduino
- .NET nanoFramework
Include
1x M5StickC Plus
Applications
* Internet of things terminal controller
* Wearable devices
* Stem education product
* DIY creation
Notice
1.Baud rate supported by M5StickC Plus: 1200 ~115200, 250K, 500K, 750K, 1500K
2.G36/G25 share the same port, when one of the pins is used, the other pin should be set as a floating input
3.For example, to use the G36 pin as the ADC input, Configuration the G25 pin as FLOATING
4.The input range of VBUS_VIN and VBUS_USB is limited to 4.8-5.5V, and the internal battery will be charged through AXP192 power management when VBUS is powered.
setup()
{
M5.begin();
pinMode(36, INPUT);
gpio_pulldown_dis(GPIO_NUM_25);
gpio_pullup_dis(GPIO_NUM_25);
}