Navigation

    M5Stack Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Steve1
    3. Topics
    S
    • Continue chat with Steve1
    • Start new chat with Steve1
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by Steve1

    • S

      M5Paper online PNG icons problem(s)
      Arduino • • Steve1

      1
      0
      Votes
      1
      Posts
      53
      Views

      No one has replied

    • S

      Cannot canvas.drawString() onto canvas. (M5PaperTouchArea)
      Arduino • • Steve1

      2
      0
      Votes
      2
      Posts
      185
      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);
    • S

      Cannot compile M5Paper Weather sketch
      Arduino • • Steve1

      2
      0
      Votes
      2
      Posts
      166
      Views

      Hello @Steve1 looks like that issue isn't new. See here. Maybe try to contact the owner of the code? Thanks Felix
    • S

      Resetting RTC flag
      PROJECTS • • Steve1

      6
      0
      Votes
      6
      Posts
      614
      Views

      Hello @Steve1 well, there is an alternative method you could use. The power button also acts as regular button. So you could check if the power button was still pressed when M5Paper starts running. Something like this at the beginning of setup(): M5.begin(true, false, true, true, true); M5.RTC.begin(); M5.update(); bool pwrBtnStart = M5.BtnP.isPressed(); // true if started by PWR button Note: for it to work you'll need to press and hold the power button long enough for the code to reach the statement checking the button. In my tests I need to hold the power button for about 5 seconds. Note: a disadvantage of the power button check method is that when M5Paper is powered on by USB it thinks it was an RTC start. Thanks Felix
    • S

      Converting M5CoreInk sketch to M5Paper
      Arduino • • Steve1

      3
      0
      Votes
      3
      Posts
      195
      Views

      S

      Ah, thanks. Now I realise that I will develope the sketch further.
    • S

      M5Paper, SD card stuck
      PRODUCTS • • Steve1

      2
      0
      Votes
      2
      Posts
      202
      Views

      @steve1 The case is normally only held together with clips around the edge. If you use two thin plates, you can open the clips.
    • S

      How to add font to M5CoreInk.h
      PRODUCTS • • Steve1

      1
      0
      Votes
      1
      Posts
      229
      Views

      No one has replied

    • S

      How to use the fonts available in /Arduino/libraries/M5GFX/src/lgfx/Fonts/GFXFF
      Arduino • • Steve1

      2
      0
      Votes
      2
      Posts
      358
      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() { }
    • S

      Cannot upgrade the M5Stack board in the Arduino IDE (2.2.1)
      Arduino • • Steve1

      1
      0
      Votes
      1
      Posts
      464
      Views

      No one has replied

    • S

      UI Flow cannot access local disk in Chrome
      UIFlow • • Steve1

      2
      0
      Votes
      2
      Posts
      1486
      Views

      This looks like a running issues with google chrome as its happening (or not happening as is the case) with other sites that download files.
    • S

      Saving programs from UI Flow Web
      UIFlow • • Steve1

      10
      0
      Votes
      10
      Posts
      4295
      Views

      W

      I have the exact problem: Chrome 107.0.5304.110 on Fedora 35. All buttons in the UI (label, button, line, etc) are nonfunctional as well as the "load", "save" etc buttons. UIFlow is completely unusable with Chrome. I can reproduce this in Konqueror also. The buttons seem to work in Firefox though.
    • S

      Ultrasonic range finder unit not working.
      Units • • Steve1

      2
      0
      Votes
      2
      Posts
      2665
      Views

      T

      @steve1 Mine worked fine when I took it out of the case. https://qiita.com/takeru@github/items/4f408e9edaf915f168d2
    • S

      Using IR Remote sensor with PbHub
      General • • Steve1

      4
      0
      Votes
      4
      Posts
      3659
      Views

      Hello @Steve1 sorry, at this point in time I am out of ideas. I don't have the IR remote sensor so I cannot test this myself. Hopefully somebody else can help you. Thanks Felix