Navigation

    M5Stack Community

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

    ajb2k3

    @ajb2k3

    I tried to fill this in but easily distr........
    Ouuu Squirrel!

    137
    Reputation
    2058
    Posts
    8316
    Profile views
    19
    Followers
    2
    Following
    Joined Last Online
    Website www.ajb2k3.co.uk Location The Void between Worlds. Age 172

    ajb2k3 Follow
    AWS MOD Global Moderator M5Stack

    Posts made by ajb2k3

    • RE: Stamp ext IO2 How to program for both Input and Output and RGB on same unit

      Hi @teastain I am currently started a guide for the EXT I/O 2 units so give me a week to see what I find.

      posted in Units
      ajb2k3
    • RE: Audio In / Aux In / 3.5 mm In

      @modemmike It looks like M5Stack are already working on something like this according to twitter.

      posted in Features Wish List
      ajb2k3
    • RE: Cannot use Blynk with M5StickC +

      @candide There are many, many more services like M5Stack EZdata, Adafruit Io, Azure, AWS. I just published a book on amazon about these but can't find my manuscript!

      posted in General
      ajb2k3
    • RE: Cannot use Blynk with M5StickC +

      @candide are you trying to connect to the Blynk service with the white screen or the Blynk service with the black screen?
      The white screen is Blynk V2 and not currently comparable with the M5Stack due to a change in security system (Blynk V2 uses the digital twin system that is no implemented yet in UIFlow). If it’s the black system V1 then there can be a delay and you need to regenerate the access key.

      posted in General
      ajb2k3
    • [closed] Micropython Jquery confusion.

      I'm trying to run the following code but I seam to be missing something.

      from m5stack import *
      from m5stack_ui import *
      from uiflow import *
      
      screen = M5Screen()
      screen.clean_screen()
      screen.set_screen_bg_color(0xFFFFFF)
      
      image0 = M5Img("res/default.png", x=3, y=91, parent=None)
      
      import urequests
      r = urequests.get('https://community.m5stack.com/api/user/ajb2k3')
      r_dict = r.json()
      image0.set_network_img_src(((str('https;//community.m5stack.com') + (r_dict['picture']))))
      

      Nevermind I solved it with

      from m5stack import *
      from m5stack_ui import *
      from uiflow import *
      
      screen = M5Screen()
      screen.clean_screen()
      screen.set_screen_bg_color(0xFFFFFF)
      
      
      imgrespons = None
      
      
      
      image0 = M5Img("res/default.png", x=3, y=91, parent=None)
      label0 = M5Label('Text', x=35, y=41, color=0x000, font=FONT_MONT_14, parent=None)
      
      
      
      
      import urequests
      r = urequests.get('https://community.m5stack.com/api/user/ajb2k3')
      r_dict = r.json()
      imgrespons = ('https://community.m5stack.com' + r_dict['picture'])
      
      
      label0.set_text(str(imgrespons))
      image0.set_network_img_src(imgrespons)
      posted in Micropython
      ajb2k3
    • Atom U STTServer down

      I'm trying to workout how to use the AtomU STT unit but the green light never turns blue.

      posted in PRODUCTS
      ajb2k3
    • RE: Different Pages on M5Stack Core

      @rotor Ahh, I see what you mean, sorry, just woke up.
      I don't know any other way to do it in inflow.

      posted in UIFlow
      ajb2k3
    • FW1.9.9 Unable to control a servo connected to the Atom Matrix

      Using firmware 1.9.9, I am unable to control a servo connected to the grove port, every time I try to run the code, the matrix just shows a big red X !

      posted in UIFlow
      ajb2k3
    • RE: Different Pages on M5Stack Core

      Yes.
      You set the variable in your main loop but then you create function for each page with your display settings.
      The back in the main loop you write a code that using buttons A and C switches between the separate functions, clearing the screen each time you change function.

      posted in UIFlow
      ajb2k3
    • RE: M5StickC + Issue: Cannot execute program after download

      We need to see your source code in order to help

      posted in General
      ajb2k3