Navigation

    M5Stack Community

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

    Posts made by rupin.chheda

    • Packaging and shipment Delays

      Has anyone recently ordered parts and they have not as yet been shipped? I ordered on the 28th November and the parts have not as yet handed over to DHL, more than a week has passed.

      I feel, the true state of the factory/warehouse stocks is never clearly visible on the website, and the order is delayed. I got information that my order is confirmed, but then why is it delayed?

      posted in General
      R
      rupin.chheda
    • RE: RTC example for the M5Stack

      @lukasmaximus Why cant we sync the RTC with Network time?

      posted in Micropython
      R
      rupin.chheda
    • RE: PaHub With M5Stick

      @ajb2k3 I reported this to Mindy and Allen, seems they have updated this.

      posted in Units
      R
      rupin.chheda
    • RE: PaHub With M5Stick

      @ajb2k3 Can you suggest how much current can the I2C Grove port can source? Is this documented somewhere?

      posted in Units
      R
      rupin.chheda
    • RE: PaHub With M5Stick

      @ajb2k3 thanks for your response. If I replace the M5stickc with a Basic Dev Kit, will I still have these problems, with the same combination of units?

      posted in Units
      R
      rupin.chheda
    • RE: PaHub With M5Stick

      If I have a 1 to 3 Hub along with the following devices

      a) A PBHub to connect (Non I2C) digital and analog sensors
      b) An ENV Unit
      c) A RFID Unit.

      Will the 1 to 3 hub be able to connect to all the three (a,b, and c) using an M5StickC, without needing a PAHub.

      posted in Units
      R
      rupin.chheda
    • RE: Not recommended

      I agree with this argument that there are problems with the platform. Additionally, the store is also in disarray. Look at the included parts in the M5GO Lite and M5Go IoT Kit. They both are same, but there is a $16 price difference(Lite is cheaper). All of it points to one fundamental issue, lack of attention to detail. 0_1574915089049_bitmap.png

      posted in M5GO
      R
      rupin.chheda
    • RE: PaHub With M5Stick

      It feels like the documentation is badly broken. I have experienced this firsthand that it is almost impossible to decide what to buy just by looking at the parts themselves.

      I have created and cancelled two orders already after going through tens of forum posts and then realizing that the parts are incompatible.

      To add to the confusion, some core modules like the M5Go Lite Kit and M5go Starter kit has same "Included Parts" sections, but are different in price. See the two included screenshots. The title of the tab will tell you exactly which product the screenshot is for. The left image is of IoT Starter Kit, the right one is M5G0 Lite. Ofcourse both of them have six Units as written, but the photos show a different story.

      Things like these are all around the site.

      0_1574914745250_bitmap.png

      posted in Units
      R
      rupin.chheda
    • PaHub With M5Stick

      Re: PaHub Access cracked.

      Does the PAHub work with the M5StickC?

      posted in Units
      R
      rupin.chheda
    • RE: Uiflow HTTP request

      @lukasmaximus This worked! thanks!

      posted in UIFlow
      R
      rupin.chheda
    • RE: Uiflow HTTP request

      Yes, Kind of. But there is weird Behaviour.
      I used the following simple block

      0_1570255790792_d78f81f7-e728-4887-9a6d-3f4ae5163d4f-image.png ![alt text](image url)

      When I run the program using the play button on UIFlow, I get the text "Ok" printed on the LCD.

      I get excited and I download the code into the Device, and I get to see the text " Not OK"

      The Python Error I get is "list index out of range"

      Here is my modified code
      from m5stack import *
      from m5ui import *
      from uiflow import *
      import urequests

      setScreenColor(0x222222)

      label0 = M5TextBox(40, 93, "Text", lcd.FONT_Default,0xFFFFFF, rotate=0)

      try:
      req = urequests.request(method='GET', url='https://api.thingspeak.com/apps/thinghttp/send_request?api_key=AAXWP1R39OHJW1U1', headers={'Content-Type':'text/html'})
      lcd.print('ok', 0, 0, 0xffffff)
      except Exception as e:
      lcd.print('not ok', 0, 0, 0xffffff)
      label0.setText(str(e))

      posted in UIFlow
      R
      rupin.chheda
    • RE: UiFlow Beta 1.4.0

      https://github.com/EeeeBin/UIFlow-Firmware/releases

      posted in Official Updates
      R
      rupin.chheda
    • HTTP Block Gives Error

      How do you get started with the HTTP block? I cant do simple http requests like fetching a page from google.
      0_1570103593919_289ba94c-1742-46d7-b17d-e1e4413e6354-image.png

      My Firmware version is 1.3.2. The UI Flow version is the stable one.

      Please advise how to solve this issue.

      posted in UIFlow
      R
      rupin.chheda