Advertisement

Quick Links

M5Station-485
2020
V0.01

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the M5Station-485 and is the answer not in the manual?

Questions and answers

Subscribe to Our Youtube Channel

Summary of Contents for M5Stack M5Station-485

  • Page 1 M5Station-485 2020 V0.01...
  • Page 2: Table Of Contents

    TABLE OF CONTENTS OUTLINE ................... 3 2. SPECIFICATIONS ................4 3.FUNCTIONAL DESCRIPTION ............5 1.1..............5 AND MEMORY 1.2............... 5 TORAGE ESCRIPTION 1.2.1. External Flash and SRAM ..........5 1.3................5 RYSTAL 1.4......6 MANAGEMENT AND LOW POWER CONSUMPTION ELECTRICAL CHARACTERISTICS ............
  • Page 3: Outline

    1. OUTLINE M5Station-485 is a general-purpose IoT workstation in the M5Stack development kit series. It integrates rich interfaces and peripherals and is highly expandable. Large space reserved inside, flexible customization, and more likely to be applicable to various industrial acquisition and control application scenarios.
  • Page 4: Specifications

    2. SPECIFICATIONS Resources Parameter ESP32- 240MHz dual core, 600 DMIPS, 520KB D0WDQ6-V3 SRAM, Wi-Fi, dual mode Bluetooth Flash 16MB 1.14" LCD 135x240 ST7789V2 SPI LCD screen interface BM8563 AXP192 Input power 5V @ 500mA G33, G32, G35, G25, G36, G26, G13, G14, G16, G17 Antenna Metal Antenna...
  • Page 5: 3.Functional Description

    3.FUNCTIONAL DESCRIPTION This chapter describes the ESP32-D0WDQ6-V3 various modules and functions. 1.1. CPU AND MEMORY Xtensa®single-/dual-core32-bitLX6microprocessor(s), upto600MIPS (200MIPSforESP32-S0WD/ESP32-U4WDH, 400 MIPS for ESP32-D2WD): 448 KB ROM ⚫ 520 KB SRAM ⚫ 16 KB SRAM in RTC ⚫ QSPI supports multiple flash/SRAM chips ⚫...
  • Page 6: Rtc Management And Low Power Consumption

    1.4. RTC MANAGEMENT AND LOW POWER CONSUMPTION ESP32 uses advanced power management techniques may be switched between different power saving modes. (See Table 5). • Power saving mode - Active Mode: RF chip is operating. Chip may receive and transmit a sounding signal.
  • Page 7: Electrical Characteristics

    4. ELECTRICAL CHARACTERISTICS 4.1. LIMIT PARAMETERS Table 8: Limiting values 1. V IO to the power supply pad, Refer ESP32 Technical Specification Appendix IO_MUX, as SD_CLK of Power supply for VDD_SDIO. 4.2. WIFI RADIO FREQUENCY Table 9: Wi-Fi RF characteristics...
  • Page 8: Low-Power Bluetooth Radio

    4.3. LOW-POWER BLUETOOTH RADIO 4.3.1. receiver Table 10: Low-power Bluetooth receiver characteristics 4.3.2. launcher Table 11: Characteristics of Low Power Bluetooth transmitter...
  • Page 9: Quick Start

    5.1. ARDUINO IDE Visit Arduino's official website(https://www.arduino.cc/en/Main/Software),Select the installation package for your own operating system to download. >1.Open up Arduino IDE, navigate to `File`->`Peferences`->`Settings` >2.Copy the following M5Stack Boards Manager url to `Additional Boards Manager URLs:` https://raw.githubusercontent.com/espressif/arduino-esp32/gh- pages/package_esp32_dev_index.json >3.Navigate to `Tools`->`Board:`->`Boards Manager...` >4.Search `ESP32` in the pop-up window, find it and click `Install`...
  • Page 10 #include "BluetoothSerial.h" #if !defined(CONFIG_BT_ENABLED) !defined(CONFIG_BLUEDROID_ENABLED) #error Bluetooth is not enabled! Please run `make menuconfig` to and en able it #endif BluetoothSerial SerialBT; void setup() { Serial.begin(115200); SerialBT.begin("ESP32test"); //Bluetooth device name...
  • Page 11: Wifi Scanning

    Serial.println("The device started, now you can pair it with bluetoot h!"); void loop() { if (Serial.available()) { SerialBT.write(Serial.read()); if (SerialBT.available()) { Serial.write(SerialBT.read()); delay(20); 5.3. WIFI SCANNING Open the Arduino IDE and open the example program `File`->`Examples`->`WiFi`->`WiFiScan`. Connect the device to the computer and select the corresponding port to burn.
  • Page 12 Serial.begin(115200); // Set WiFi to station mode and disconnect from an AP if it was pre viously connected WiFi.mode(WIFI_STA); WiFi.disconnect(); delay(100); Serial.println("Setup done"); void loop() Serial.println("scan start"); // WiFi.scanNetworks will return the number of networks found WiFi.scanNetworks(); Serial.println("scan done"); 0) { Serial.println("no networks found");...
  • Page 13 FCC Statement: Any Changes or modifications not expressly approved by the party responsible for compliance could void the user’s authority to operate the equipment. This device complies with part 15 of the FCC Rules. Operation is subject to the following two conditions: (1) This device may not cause harmful interference, and (2) This device must accept any interference received, including interference that may cause undesired operation.

Table of Contents