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.
-
RE: Stamp ext IO2 How to program for both Input and Output and RGB on same unit
-
RE: Audio In / Aux In / 3.5 mm In
@modemmike It looks like M5Stack are already working on something like this according to twitter.
-
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!
-
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. -
[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)
-
Atom U STTServer down
I'm trying to workout how to use the AtomU STT unit but the green light never turns blue.
-
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. -
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 !
-
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. -
RE: M5StickC + Issue: Cannot execute program after download
We need to see your source code in order to help