Navigation

    M5Stack Community

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

    ianlyonthomas

    @ianlyonthomas

    1
    Reputation
    9
    Posts
    948
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    ianlyonthomas Follow

    Posts made by ianlyonthomas

    • REMOTE+ m5StickCplus Chart data

      I am just experimenting with m5 and am trying to use REMOTE+. All OK until I try to use the CHART module. I have ENV2 hat attached and would like to use the data from this on the chart.
      I have tried creating a variable for the temperature and placing the variable in the definition block but getting no plotting on the remote screen. Can anyone advise please as there are no references within the documentation.

      Thanks

      Ian

      posted in UIFlow
      I
      ianlyonthomas
    • RE: UIFlow 1.7.8

      @m5stack where can I download 1.7.8 for desktop?
      I can use 1.7.8 on cloud and it contains functions I need (e.g. UnitV2) but, even o m5stack downloads - I can only get v1.7.4.

      Also, any chance of adding the version number to the file name?
      THanks
      Ian

      posted in Official Updates
      I
      ianlyonthomas
    • Unit V2 Connection

      Hi, I have just received M5Stack Unit V2 AI camera and, when I connect to laptop, the fan runs but no connection available.

      Please advise
      Thanks

      Ian

      posted in Units
      I
      ianlyonthomas
    • RE: Timer Camera X

      Can you advise how I can get the required Token as I have been trying for 2 days and still getting a failed error?

      Thanks

      Ian

      posted in PRODUCTS
      I
      ianlyonthomas
    • M5 TimerCam

      Hi,

      Has anyone been able to obtain a Token via M5Burner?
      Each time I try i get an error asking me to check my network - which is working fine.

      Ian

      posted in UIFlow
      I
      ianlyonthomas
    • RE: M5Stick C 'http GET'

      Bit confused as to why the 'Data' is ignored in GET.

      Switched to POST but data is still not delivered. I will continue to test and se if I can isolate issue.

      posted in UIFlow
      I
      ianlyonthomas
    • RE: M5Stick C 'http GET'

      For blocky screen shot https://imgpile.com/i/798bPr

      posted in UIFlow
      I
      ianlyonthomas
    • RE: M5Stick C 'http GET'

      Sorry, I was not clear.

      Within Data>Create Map, I have added key: Temperature, Value:30 and key:Humidity, Value:50

      These are not present within the Python code.

      I will upload an image of the blocky.

      Ian

      posted in UIFlow
      I
      ianlyonthomas
    • M5Stick C 'http GET'

      Hi,
      I am using M5Stick C and have put together a blocky which is a simple http GET process.
      i.e. connect to WiFi and send data via GET.
      The Data (Key&Value) is populated and the solution successfully sends to the correct URL but...

      No data is being included in the URL sent.
      On checking the Python code, the data is not added.

      Is this a bug?

      Python code generated via Blocky is below and I can provide .m5f if required.

      Thanks
      Ian

      from m5stack import *
      from m5ui import *
      from uiflow import *
      import wifiCfg
      import urequests

      setScreenColor(0x111111)

      wifiCfg.doConnect('XXXXXXXX', 'XXXXXXXXX')
      label0 = M5TextBox(0, 16, "Text", lcd.FONT_Default, 0xFFFFFF, rotate=0)
      label1 = M5TextBox(0, 55, "Text", lcd.FONT_Default, 0xFFFFFF, rotate=0)

      if wifiCfg.wlan_sta.isconnected():
      label1.setColor(0x3333ff)
      label1.setFont(lcd.FONT_DejaVu18)
      label1.setText('connected')
      try:
      req = urequests.request(method='GET', url='http://URL.com/insertGet.php', headers={})
      label1.setText('SENT')
      label0.setColor(0x33ff33)
      label0.setFont(lcd.FONT_DejaVu18)
      label0.setText(str(req.status_code))
      except:
      pass
      else:
      label1.setColor(0xff0000)
      label1.setText('NOT SENT')

      posted in UIFlow
      I
      ianlyonthomas