Navigation

    M5Stack Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Michael1968
    M
    • Continue chat with Michael1968
    • Start new chat with Michael1968
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups
    Save
    Saving

    Michael1968

    @Michael1968

    1
    Reputation
    7
    Posts
    1221
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    Michael1968 Follow

    Posts made by Michael1968

    • RE: M5 Simulator

      Sieht doch schon ganz gut aus...
      Look cool

      posted in Deutsches Forum
      M
      Michael1968
    • RE: IDE for programming in Basic

      @michael1968
      I have upload some examples how to use M-5Stick-C with the IDE

      [link text]https://www.b4x.com/android/forum/threads/m5-stick-c.125286/(link url)

      posted in General
      M
      Michael1968
    • IDE for programming in Basic

      Hello everybody,
      if someone is interested in a basic programming environment IDE .... see here...
      [link text]https://www.b4x.com/b4r.html(link url)
      i have been using them for a while and i think they are very good

      greetings michael

      posted in General
      M
      Michael1968
    • RE: Where can I order from Germany fastest in the M5Stack Store.

      @plusulli said in Where can I order from Germany fastest in the M5Stack Store.:

      https://www.tinytronics.nl/shop/en
      super schneller Service ..Bestellung war innerhalb von 2 Tagen da !!!

      posted in General
      M
      Michael1968
    • Module pcb template

      Hi,
      is there any File (Kicad/Eagle) with drawing (m-Bus ...holes..etc) that can be use as a template for custom pcb ?

      best regards
      Mike

      posted in Modules
      M
      Michael1968
    • RE: M5Atom I2c

      ok...i find out that i have to use SoftwareI2c and the i2c device must have pullup resistors:

      #include "SoftwareI2C.h"

      SoftwareI2C softwarei2c;

      void setup() {
      Serial.begin(115200);
      softwarei2c.begin(26, 32); // sda, scl
      Serial.println("begin to scan...");
      }

      void loop() {
      for (unsigned char i = 1; i <= 127; i++) {
      if (softwarei2c.beginTransmission(i)) {
      Serial.print("0x");
      Serial.println(i, HEX);

              while (1);
          }
          softwarei2c.endTransmission();
      }
      
      Serial.println("find nothing");
      while (1);
      

      }

      posted in Cores
      M
      Michael1968
    • M5Atom I2c

      Hi all,
      i'm playing with the mpu6886, with the Arduino lib i can read it.
      how can i use the "grove" connector (g26,g32) with a i2c device at the same time?

      thx Michael

      posted in Cores
      M
      Michael1968