Navigation

    M5Stack Community

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

    Dario

    @Dario

    13
    Reputation
    27
    Posts
    375
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    Dario Follow

    Posts made by Dario

    • CircuitPython may support ESP32 in the near future

      I have just run in this blog message from Scott Shawcroft. He explains that in 2021 they will probably spend some time to try to create a port of CircuitPython for ESP32-S3 and maybe also a port for ESP32.

      I'm crossing my finger hoping to see CircuitPython support for ESP32!!

      posted in SOFTWARE
      D
      Dario
    • A core with ESP32-S2

      In my point of view it would be great to have an M5 core with the ESP32-S2.
      The S2 variant has the USB-OTG, and with the right bootloader (TinyUF2 Bootloader), it can expose the internal flash as a USB drive. No more AMPY or custom tools to updload files on the core. We would be able to use the Mu editor on the same easy way as we can do with the Micro:bit.

      Last but not least, there is already a port of Adafruit CircuitPython for the ESP32-S2. CircuitPython is very well documented with tons of library alredy written for it.
      I find easier to work with CircuitPython than MicroPython.

      Let's look for example how CircuitPython handle the audio:

      • It use the same libraries regardless of the porting
      • It has support for reading MP3 files
      • You can choose to use a PWM or an I2S output
      • There are plenty of examples
      posted in Features Wish List
      D
      Dario
    • RE: Controlling 12v solenoid

      If you need to PWM the output, you can use a mosfet module. You can find a cheap one on eBay or AliExpress.

      0_1610017280844_4cf5d38c-ba95-4ae3-886d-db7c5321ab59-image.png

      posted in Modules
      D
      Dario
    • RE: Atom Lite ENV II with 3A mini Relay

      Yes, it will work with the PbHUB.
      This is an example on UI Flow. The relay is connected to PbHUB port 0

      0_1609104140897_77cd9ae0-5c1a-42a3-974b-1037206c1a7c-image.png

      posted in Atom
      D
      Dario
    • RE: Multiple AND/OR cases within an if statement

      The following example is this expression:
      (var1 > 50 and var1 < 70) and (var2 > 10 and var2 < 20) and (var3 > 30 or var4 > 50)

      Step 1

      0_1608793993460_7dd9e324-92c4-4167-be44-f0dd11539616-image.png

      Step 2

      0_1608794028390_92d2b768-412e-41b2-a7e6-608459678563-image.png

      Step3

      0_1608794046841_a7a577ad-7a61-445f-8815-7bfd2f3d86ce-image.png

      Step 4

      0_1608794071374_723ac24a-30ed-4191-95a8-d5c1a59248b5-image.png

      posted in UIFlow
      D
      Dario
    • MediaTrans Mic Record and Audio Play documentation

      In UIFlow for Core2 under MediaTrans there are Mir Record and Audio Play sections with serveral blocks. I tried to search a little bit but I wasn't able to find any documentation on these blocks. Can you please point me to the documentation if already exist or else give me some information about these blocks?

      0_1608715038355_ba0f1bb5-e477-4718-ae24-524e30328b99-image.png

      0_1608715075139_1ef33b99-d255-46d1-a187-9a1f2a3c8a7d-image.png

      posted in UIFlow
      D
      Dario
    • RE: Add Speaker.beep and Speaker.volume to Core2

      I have moved this request in the new Feature Wish List channel.
      If you, like me, desire to have this feature, please upvote the post new post.

      posted in UIFlow
      D
      Dario
    • [Core2] Add Speaker.beep and Speaker.volume to Core2

      I propose to add Speaker.beep, Speaker.volume and play tone blocks also to Core2

      0_1608416172382_f7c98a28-8798-4227-8aeb-bbcdd7691f41-image.png

      posted in Features Wish List
      D
      Dario
    • RE: Multiple AND/OR cases within an if statement

      @mathias can you please write the logic expression that you want to code in UIFlow?

      Example:
      (var1 > 50 and var1 < 70) and (var2 > 10 and var2 < 20) and (var3 > 30 or var4 > 50)

      posted in UIFlow
      D
      Dario
    • RE: Multiple AND/OR cases within an if statement

      I don't exactly know what you would like to do, but you can do something like this:

      0_1608561309057_26b23538-3e72-4e79-8f44-ffa389bc809f-image.png

      or like this:

      0_1608561336184_6e2086e1-ad1c-4ae0-85be-a58be76daa68-image.png

      posted in UIFlow
      D
      Dario