šŸ¤–Have you ever tried Chat.M5Stack.com before asking??šŸ˜Ž
  • 0 Votes
    9 Posts
    11k Views
    konacurrentsK
    @casascius Interesting. In my case I'm using real certs from my cloud and it works. I don't know how a DNS name would work outside of localhost names. My main issue stated above was that I want a connection to stay open, and I wasn't able to figure that out. thanks.
  • M5Dial Serial Monitor

    Arduino
    3
    0 Votes
    3 Posts
    3k Views
    F
    Same problem, Same solution (with Platformio)
  • M5Core 2 and M5Core 3 will not light display

    Arduino
    2
    0 Votes
    2 Posts
    2k Views
    ajb2k3A
    Do they work if you write the UIFlow firmwares to them using M5Burner? Are you programs actually supposed to display things on screen?
  • Drawing an icon on the M5Paper from an array

    Arduino
    4
    0 Votes
    4 Posts
    3k Views
    felmueF
    Hello @Steve1 I had success with the following converter settings. [image: 1704017737690-iconconvert1_20231231.png] [image: 1704017750557-iconconvert2_20231231.png] This creates a array size of 8192 - same as the stock icons and displays correctly using the DrawIcon() function from the Weather app. // array size is 8192 static const uint16_t IconCloud64x64[] = { 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, Note: I had best results converting jpg using above converter. (png did not work for me and always created an all zero array.) Thanks Felix
  • SHT30 return convert to F

    Arduino
    3
    0 Votes
    3 Posts
    3k Views
    teastainT
    Did you get it sorted? I started to post the formula, but I realized that you need to edit the application. I say ā€œapplicationā€ because it is confusingly written in an advanced, professional C++ style, not the fun Arduino IDE style where everything is spelled out and you just edit the line. I mean: the loop is empty. (!) I don’t have a ePaper to try it. SHT30.h line 30: myData.sht30Temperatur = (int) M5.SHT30.GetTemperature() * ((9.0 / 5.0) + 32.0); -Terry
  • MPaper: How to read touch (or fingerUp) just one time.

    Arduino
    6
    0 Votes
    6 Posts
    5k Views
    felmueF
    Hello @Steve1 you are very welcome. Thanks Felix
  • M5StampS3 / M5Dial and CAN

    Arduino
    4
    0 Votes
    4 Posts
    4k Views
    felmueF
    Hello @samarkh sorry, no idea when and if such a library will be developed. That said, maybe this example helps? Thanks Felix
  • M5Paper icon displaying as 2 small icons.

    Arduino
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • M5Paper online PNG icons problem(s)

    Arduino
    2
    0 Votes
    2 Posts
    2k Views
    ajb2k3A
    @steve1 yes the delay is normal as it takes time for the image request to be sent to the host and the host to send the image to the paper. This happens when requesting images from all devices in the M5 range
  • DualKmeter Module Arduino Example

    Arduino
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Serial not working with M5Unified on AtomS3

    Arduino
    3
    0 Votes
    3 Posts
    5k Views
    F
    Thanks @teastain for the hint with USB CDC on Boot! I forgot to mention that I am on PlatformIO but the snippet shown below added to the platform.ini file helped me to solve the problem. Previously I didn't had to specify any build_flags to see the Serial output, so maybe this is a change introduced by PlatformIO. monitor_speed = 115200 build_flags = -D ARDUINO_USB_MODE=1 -D ARDUINO_USB_CDC_ON_BOOT=1 Best Marc
  • Cannot canvas.drawString() onto canvas. (M5PaperTouchArea)

    Arduino
    2
    0 Votes
    2 Posts
    2k Views
    S
    I am just starting out with the M5Paper and a lot of things are taking some getting use to. I thought about deleting this thread when I found out how easy the solution was but then I thought that maybe this will help someone else. So here is the solution: You have to declare a font for use in the canvasOP. So adding his line after creating canvasOP fixes the problem: canvasOP.setFreeFont(&FreeSerif24pt7b);
  • ESP32 and the SPIFFS file system

    Arduino
    2
    1 Votes
    2 Posts
    17k Views
    F
    Does anyone have A-Explorer and Bridge saved anywhere? Seems like dsiberia9s account doesnt exist on Github anymore so it seems lost in time otherwise :(
  • 0 Votes
    7 Posts
    7k Views
    teastainT
    @hallinen Yes, I saw your comment over on https://github.com/m5stack/M5AtomS3/issues/23 The solution to my identical issue/14 was to burn-back (erase all) to 'Arduino15/staging/packages' and re-install the M5 latest board definition. Tinyu-Zhao's solution was: "Perhaps there is a local cache package that is not downloading the latest M5Stack version definition Please delete the following path, uninstall the M5Stack 2.0.6 definition and try again /Users//Library/Arduino15/staging/packages"
  • Converting M5CoreInk sketch to M5Paper

    Arduino
    3
    0 Votes
    3 Posts
    2k Views
    S
    Ah, thanks. Now I realise that I will develope the sketch further.
  • 0 Votes
    2 Posts
    3k Views
    S
    I have found out how to use the fonts within the M5GFX library; #include <Arduino.h> #include <M5GFX.h> M5GFX display; void setup() { display.begin(); display.setTextDatum(middle_center); uint16_t x = display.width() / 2; uint16_t y = display.height() / 2; display.setFont(&fonts::FreeMonoBold24pt7b); display.drawString("Test", x, y); } void loop() { }
  • Problems loading after Arduino updates

    Arduino
    4
    0 Votes
    4 Posts
    4k Views
    G
    Hmm, I get that. And appreciate that some of what we are doing here is frontier work, but when breaking changes result in the most obscure error messages know to man it's still a bit painful. The catch to response to repair time is perhaps something the community could work on, with and without GitHub. I'll cheer up after a nights sleep. I've still no idea on a fix for the fault posted. Likewise, I have had to swap from M5Core2 to M5Unified for an error earlier this am, so any other thoughts gratefully received. Update: same Arduino v2.2.1 --> PC fine, macOS the above error [groan], again.
  • [SOLVED] M5StickCPlus and BMM150 (ENV II Hat) do not work

    Arduino
    6
    0 Votes
    6 Posts
    6k Views
    E
    I found a solution. An example you can find at https://www.waveshare.com/wiki/BMM150_3-Axis_Magnetometer_Sensor (the one linked from Example Demo) with a proper modification worked with BMM150 in Env II Hat. Here is the procedure. Download the zip file from the Example Demo link. Open bmm150_Arduino.ino under Arduino > bmm150_Arduino Search Wire.begin() in the code (you can find one in the line 149) Change it to Wire.begin(0, 26) This is necessary if you are using a Hat version of ENV II HAT, which is connected to the GPIO pin side of the M5Stick variants. If you are using ENV II Hat connected the Grove port, you don't need to change it. After this modification, the code should work.
  • M5StickC Plus image background

    Arduino
    3
    0 Votes
    3 Posts
    3k Views
    Matej's WorkshopM
    I used this website http://www.rinkydinkelectronics.com/t_imageconverter565.php to convert to I think RGB565 from PNG
  • Atom Lite Display driver

    Arduino
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied