Navigation

    M5Stack Community

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

    Posts made by Kryten

    • RE: Step Motor Module

      @ajb2k3
      Thank you very much.

      I hope to get some wires sorted out soon so I can see if I manage to get the module working on a "printer" (2D drawings)

      posted in Units
      K
      Kryten
    • RE: Step Motor Module

      @ajb2k3 Do you have any good scource for wires for the stepper output?

      I have several sets of stepper motor wires but none that fit in the stepper module

      posted in Units
      K
      Kryten
    • RE: M5Stack MultiApp Advanced Firmware

      @calin Yes I saw this after I postede, sorry.

      This is really good work by the way ;)

      posted in PROJECTS
      K
      Kryten
    • RE: M5Stack MultiApp Advanced Firmware

      @calin

      Would it be much hassel to add in the webserver WiFi settings (For those times WPS is not available) and
      Weather settings (API key, language, country and city)

      posted in PROJECTS
      K
      Kryten
    • RE: MP3 player

      @DoNcK Thansk I will look in to this.

      posted in PROJECTS
      K
      Kryten
    • RE: M5Stack - Simple Applications Menu + some APPs

      I get errors on all
      [code]
      #pragma mark
      [/code]

      Will comment out and try again

      posted in PROJECTS
      K
      Kryten
    • RE: ESP 32 and ESP 8266 libs

      @JimiT @ispybadguys

      I wil lhave to try this once more. But my office has a space in the pwd. Would be really nice to have it work with space as well.

      posted in FAQS
      K
      Kryten
    • Arduino not parsing M5Stack package index

      Are anyone else experiencing this issue?

      Skipping contributed index file C:\Users\karlk\Documents\ArduinoData\package_m5stack_index.json, parsing error occured:
      com.fasterxml.jackson.core.JsonParseException: Unrecognized token 'https': was expecting ('true', 'false' or 'null')
      at [Source: java.io.FileInputStream@a52d01; line: 1, column: 7]

      posted in FAQS
      K
      Kryten
    • RE: ESP 32 and ESP 8266 libs

      @jimit

      I have tom many things connected to my WiFi to bother with canhing any router setup. And my esp8266's always connects. I figured it was best to fix this in code rather than doing workaround with WiFi.

      posted in FAQS
      K
      Kryten
    • RE: ESP 32 and ESP 8266 libs

      The pipe is %7C url encoded. So adding

      s.replace("%7C", "|");

      at the end will let you use your pipe in the password.

      I will look in to the nes emulator.

      posted in FAQS
      K
      Kryten
    • RE: ESP 32 and ESP 8266 libs

      @JimiT
      Hi JimiT

      Yes, I just tried to do the regular WiFi.begin(ssid,pwd) and that worked great.
      I made it work. (jay me!)

      Change in code:
      the setup was wrong (original code):

      void setup() {
      m5.begin();
      preferences.begin("wifi-config");

      delay(10);
      if (restoreConfig()) {
      if (checkConnection()) {
      settingMode = false;
      startWebServer();
      return;
      }
      }
      settingMode = true;
      setupMode();
      }

      My correction:
      void setup() {
      m5.begin();
      preferences.begin("wifi-config");

      delay(10);
      if (restoreConfig()) {
      if (checkConnection()) {
      settingMode = false;
      startWebServer();
      return;
      } else {
      settingMode = true;
      setupMode();
      }
      }
      }

      Missing code tags..
      Basically the setup was connection but since the settingMode = true and setupMode() is added after we try to connect. It jumps out of connection mode.

      And do you have a link to Mario Bros?

      posted in FAQS
      K
      Kryten
    • RE: ESP 32 and ESP 8266 libs

      @JimiT Thanks for the space invader, that is cool. I will also try to add sound like in the old days

      posted in FAQS
      K
      Kryten
    • RE: ESP 32 and ESP 8266 libs

      At least the example for WiFi settings is not working at all for me. :(

      Will have to try something else

      posted in FAQS
      K
      Kryten
    • RE: DIY Mini Proto Board

      So you want to hae the M5 as is and slide in to a module with your protoborad on?

      Something like this?

      0_1516696119101_13f1eeff-868a-4a99-b8c0-00399a603268-image.png

      posted in PROJECTS
      K
      Kryten
    • RE: Im looking for module guidlines

      And I put up a bottom part on Thingiverse:
      https://www.thingiverse.com/thing:2754642

      posted in FAQS
      K
      Kryten
    • RE: ESP 32 and ESP 8266 libs

      After looking long and hard at the WiFisetting example I think that is similar to the WiFi manager for esp8266

      Will have to test it to see.

      EDIT:
      After testing I see that the M5Stack wont connect to the WiFi.

      posted in FAQS
      K
      Kryten
    • RE: MicroPython On WebIDE 2. LCD. Graphics

      Take a look at this:

      http://oleddisplay.squix.ch/

      Some of the customfonts in the M5Stack is from there

      posted in Lessons and Guides
      K
      Kryten
    • RE: ESP 32 and ESP 8266 libs

      Well I got the Arduino OTA working ( well it compiled anyways). And I really like the WiFi manager for the 8266 as it lets us move the device without having to reflash with new WiFi settings.

      posted in FAQS
      K
      Kryten
    • ESP 32 and ESP 8266 libs

      Is it possible to use the liberaries for ESP32 and ESP8266 for the M5 stack?

      I'm thinking about WiFimanager and ArduinoOTA liberaries. would be so mnice to just add these to my projects

      posted in FAQS
      K
      Kryten
    • RE: Stack is dead :(

      http://iot-bits.com/esp32/esp32-flash-download-tool-tutorial/

      I think you should be able to flas stock esp and run via arduino after. I have done it with esp8266

      posted in PRODUCTS
      K
      Kryten