🤖Have you ever tried Chat.M5Stack.com before asking??😎
  • Arduino programing

    1
    0 Votes
    1 Posts
    4k Views
    No one has replied
  • M5-Camera A connect with Android App for parking aid

    5
    0 Votes
    5 Posts
    12k Views
    N
    @christian_yami As mentioned before the Android IDE with the esp32 plugin has a example "CameraWebServer" that sends settings back to the camera by a web interface. I did not mention that it also displays the image so if you load that into the esp32 you only need to do the android bit. The JPEG bit is the same and the web page source should give ample clues to program android.
  • Simple game sample, frustrating results - M5Flow

    2
    0 Votes
    2 Posts
    6k Views
    I
    @ipodlux Found it! in order to compensate the slow reading of the interrupt I moved the reading in the loop. It less less classy that the external function but now it reacts as it should.
  • OpenMQTTGateway on M5 boards

    1
    0 Votes
    1 Posts
    5k Views
    No one has replied
  • Arduino Serial print function in arduino

    1
    0 Votes
    1 Posts
    4k Views
    No one has replied
  • Simple Mesh implimentation

    3
    0 Votes
    3 Posts
    6k Views
    mbpM
    @mittech Curious as to how it went (has gone) with your Mesh application? Any consideration of ESP-MDF? What tool chain/development environment are you using?
  • Yun and ESPnow project

    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • M5atom Matrix library (micropython)

    micropython neopixel matrix 5x5 library
    5
    2 Votes
    5 Posts
    15k Views
    R
    @conrad i use uPyCraft to transfer files to atom. You can also connect uPycraft with atom and use REPL (something like command shell) to use interactive micropython command interpreter). With UiFlow it is possible but you must first transfer libraries to /apps folder in flash memory and use advanced->execute->execute code to run appropriate commands, ewentually write raw code in Python </> tab. In this option code probably properly run only when you download it to device (not run with play button). If i find some free time then i create custom block to scroll text using recently added Hardwares->Rgb->set atom matrixblock, but i must do some experiments with it.
  • Automotive Infrared Short Range Lidar Sensor

    1
    0 Votes
    1 Posts
    4k Views
    No one has replied
  • Blynk on M5Stack via uiFlow and block-maker

    32
    1 Votes
    32 Posts
    149k Views
    A
    @akshaypatil Here are the blocks for uiflow, http://s000.tinyupload.com/index.php?file_id=08084396321658982238 and don't forget to use it together with the one uploaded by @world101 (https://www.dropbox.com/s/xosetw0qzin722l/Blynk.m5b?dl=0) Cheers! :)
  • MicroPython Clock Task with RTC and NTP sync

    6
    5 Votes
    6 Posts
    27k Views
    K
    @f3rn4nd0d I got "no module named 'wifisetup'" error, and without that, no 'strftime' in time... What am I missing in Mycropython for my M5Stack Gray? Thanks for your help.
  • Simple Wi-Fi signal strength

    2
    0 Votes
    2 Posts
    7k Views
    frittnaF
    you can try this pice of code which is working for me: . . #include <WiFi.h> #include "Free_Fonts.h" #include <M5Stack.h> const char* ssid = "your_host"; const char* password = "your_password"; WiFiClient client; void setup() { M5.begin(); // Connecting to WiFi: M5.Lcd.setFreeFont(FM9); M5.Lcd.setTextSize(1); M5.Lcd.setTextColor(TFT_WHITE); M5.Lcd.print("\n\nConnecting to "); M5.Lcd.println(ssid); WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { M5.Lcd.setTextWrap(true); M5.Lcd.print("."); delay(500); } M5.Lcd.println("\nWiFi connected"); delay(1000); M5.Lcd.fillScreen(TFT_BLACK); } void loop() { showWifiStrength(); delay(2000); } // show Wifi-RSSI level (signal strength in 4 bars + dBm ) void showWifiStrength() { int WifiRSSI = WiFi.RSSI(); M5.Lcd.fillRect(40, 0, 68, 15, TFT_BLACK); M5.Lcd.setCursor(40, 14); M5.Lcd.print(String(WifiRSSI) + "dBm"); if (WifiRSSI > -50 & ! WifiRSSI == 0 ) M5.Lcd.fillRoundRect(26, 1, 5, 12, 1, TFT_WHITE); else M5.Lcd.fillRoundRect(26, 1, 5, 12, 1, TFT_DARKGREY); if (WifiRSSI > -70 & ! WifiRSSI == 0) M5.Lcd.fillRoundRect(18, 3, 5, 10, 1, TFT_WHITE); else M5.Lcd.fillRoundRect(18, 3, 5, 10, 1, TFT_DARKGREY); if (WifiRSSI > -80 & ! WifiRSSI == 0) M5.Lcd.fillRoundRect(10, 5, 5, 8, 1, TFT_WHITE); else M5.Lcd.fillRoundRect(10, 5, 5, 8, 1, TFT_DARKGREY); if (WifiRSSI > -90 & ! WifiRSSI == 0) M5.Lcd.fillRoundRect(2, 7, 5, 6, 1, TFT_WHITE); else M5.Lcd.fillRoundRect(2, 7, 5, 6, 1, TFT_RED); }
  • sim800l gprs + mqtt

    4
    0 Votes
    4 Posts
    9k Views
    N
    To start understanding the functioning of the sim800l module I used the following example: //Reset resistance is not soldered. If necessary, weld it yourself. #include <M5Stack.h> #define RX_PIN 16 #define TX_PIN 17 #define RESET_PIN 5 void header(const char *string, uint16_t color){ M5.Lcd.fillScreen(color); M5.Lcd.setTextSize(1); M5.Lcd.setTextColor(TFT_MAGENTA, TFT_BLUE); M5.Lcd.fillRect(0, 0, 320, 30, TFT_BLUE); M5.Lcd.setTextDatum(TC_DATUM); M5.Lcd.drawString(string, 160, 3, 4); } void setup() { M5.begin(); header("SIM800L AT command", TFT_BLACK); M5.Lcd.setTextFont(2); M5.Lcd.setTextColor(TFT_WHITE, TFT_BLACK); M5.Lcd.drawString("Please use serial port to Test AT command.",0, 35, 2); // Host serial communication Serial.begin(115200); // SIM800L serial communication Serial2.begin(115200, SERIAL_8N1, RX_PIN, TX_PIN); pinMode(RESET_PIN, OUTPUT); } void loop() { //AT instruction write if(Serial.available()){ Serial2.write(Serial.read()); } //AT instruction result if(Serial2.available()){ Serial.write(Serial2.read()); } delay(10); } I sent some at command to understand if the module worked but apparently it doesn't work. Any suggestions?[image: 1585130692629-sim800l.png]
  • M5StickC Electronic Animated Eyes

    3
    1
    0 Votes
    3 Posts
    9k Views
    sysdl132S
    Great!
  • RemoteLoRa – more than ON/OFF

    1
    0 Votes
    1 Posts
    6k Views
    No one has replied
  • UIFlow Handbook updated 01-March-2020

    3
    1 Votes
    3 Posts
    7k Views
    ajb2k3A
    @skink said in UIFlow Handbook updated 01-March-2020: Wow, even if it is only in English, but it´s hammer the user manual, hats off to working. Thank you very much this is a super great manual with UI-Flow and Python examples. greeting skink Thank you for reading it, Other languages are planned, I'm just sorry that it is taking me so long to write it.
  • GSMout - receive SMS and calls "at home"

    2
    0 Votes
    2 Posts
    8k Views
    sysdl132S
    [image: 1582951650695-82b78cf0-9a69-43d6-bc22-91f15fba9777-image.png]
  • fixed background image

    3
    0 Votes
    3 Posts
    6k Views
    sysdl132S
    [image: 1582950983695-8433b3b0-3224-43f6-84f9-0a9a5c2e6030-image.png] it can display images without eraseing. (click OK)
  • M5ez chat app

    6
    0 Votes
    6 Posts
    11k Views
    m5stackM
    @sysdl132 Great, i will take the time to try。
  • External speaker

    3
    0 Votes
    3 Posts
    4k Views
    world101W
    Pin 25 might work http://forum.m5stack.com/topic/1482/m5stack-with-external-speaker