Navigation

    M5Stack Community

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

    frameworklabs

    @frameworklabs

    1
    Reputation
    4
    Posts
    689
    Profile views
    1
    Followers
    0
    Following
    Joined Last Online

    frameworklabs Follow

    Posts made by frameworklabs

    • RE: Measurement time of the ToF Unit

      Take a look at the data-sheet: https://www.st.com/resource/en/datasheet/vl53l0x.pdf

      Table 13 shows the dependency between time budget (20ms to 200ms) for ranging and resulting accuracy.

      posted in General
      F
      frameworklabs
    • A little LEGO Robot made from several M5Stack parts

      Hi,

      FYI, I built this little robot using M5Stack components like ATOM Motion, Servo Kit 360, ToF HAT and others.

      See the project description here:

      https://www.hackster.io/framework-labs/ego-401080

      Really great how M5Stack components can be combined and used together with LEGO parts.

      — Best regards

      posted in PROJECTS
      F
      frameworklabs
    • RE: Atom-Lite LED

      Hi Paul,

      I do this on my Atom Lite:

      #include <FastLED.h>
      
      CRGB mainLED;
      
      void setup() {
        M5.begin();
      
        FastLED.addLeds<NEOPIXEL, 27>(&mainLED, 1);
        FastLED.setBrightness(10);
      }
      

      And then in loop to set the color I use:

            mainLED = CRGB::Red;
            FastLED.show();
      

      Hope that is of any help.

      -- Marc

      posted in Arduino
      F
      frameworklabs
    • M5StickC as rangefinder

      Hi,

      this PlatformIO project turns your M5StickC into a laser rangefinder.

      For this you need to attach the ToF HAT to your M5StickC.

      Happy range-finding!

      posted in PROJECTS
      F
      frameworklabs