I contacted the M5Stack Tech Support (via https://m5stack.com/contact) and received a response yesterday. Since then, I have been able to log in to UIFlow2 without any problems.
I have not been told what caused this problem. So I'm not sure but It may have been a problem with my credential information stored on their server.
Posts made by wtakuo
-
RE: Login Problem on UIFlow2
-
RE: Login Problem on UIFlow2
Thank you for your replies. Unfortunately, I don't have a Windows PC, so I can't try with it.
I created a new account with a different email address. With the new account, I can log in to M5Stack Community, UIFlow1 and UIFlow2 without any problem. So, strangely enough, I cannot log in only to UIFlow2 with my current account.
I am not sure if I should migrate to the new account or not ... .
-
Login Problem on UIFlow2
Problem summary: I can log in to M5Stack Community and UIFlow1, but not to UIFlow2 (https://uiflow2.m5stack.com).
Of course, I tried resetting the password, but it didn't work.
I have also tried deleting the browser cache and cookies, but no luck.
I can't log in from the M5Burner app either. Deleting the app's configuration file (~/Library/Application Support/m5burner) and reinstalling it does the same.
The password consists only of upper and lower case letters and numbers.I thought that the M5Stack Community and UIFlow2 accounts were separate, so I tried to create a new account, but it says 'this email address is already in use' and I can't create one. If I try to create a uiflow2 account while I am logged in to the community, I am just sent to the community profile page. This means that UIFlow2 and the community should work with the same account, right?
I used to be able to log in to UIFlow2 when it was the beta, but now I can't seem to do it at all. Any hints would be appreciated.
Environment: macOS 14.4, Safari 17.4, Chrome 122.0.6261.129, Firefox 123.0.1 (all the latest versions at the moment)
-
RE: M5Stack website is broken on Safari
Thank you. A member in Japanese Facebook community gave me a nice advice; Simply zooming out the Safari window (command-minus) resolved the situation. The website seems to switch mobile and desktop views using the window resolution of the browser (instead of user-agent).
-
M5Stack website is broken on Safari
Hello,
The current M5Stack website looks broken in Safari (version 12.1, macOS 10.14.4). The site looks like a mobile site and its menu doesn't work. Clearing of the browser cache and the removing of browser extensions do not help. I have no problems on Chrome and Firefox (so I can post this message). But I'd like to use Safari as much as I can... -
RE: M5stack programming without Arduino IDE : how ?
Now my PR has just been incorporated into the latest commit of M5Stack. So I removed patch.txt.
In addition, to tidy up the repository of my fixed M5Stack-IDF, I moved my modifications to
components_patch
branch. Somain
branch no longer contains the fix now. If you'd like to try my fixed version of M5Stack-IDF, please do like the following commands.git clone --recursive -b components_patch https://github.com/wtakuo/M5Stack-IDF.git
Sorry for inconvenience due to the changes.
-
RE: M5stack programming without Arduino IDE : how ?
I fixed my patch in https://github.com/wtakuo/M5Stack-IDF.
The path variables in
component.mk
should look like the following.COMPONENT_SRCDIRS := src src/utility src/Fonts COMPONENT_ADD_INCLUDEDIRS := src
As shown in the above code, I added
src/Fonts
to COMPONENT_SRCDIRS and removed unnecessary"."
(current directory) from both paths. Header files in the subdirectories are specified using relative paths fromsrc
. So we don't need to add these subdirectories toCOMPONENT_ADD_INCLUDEDIRS
.Anyway, I sent pull request regarding this fix. If my PR is accepted, the patch file in https://github.com/wtakuo/M5Stack-IDF will be unnecessary.
-
RE: M5stack programming without Arduino IDE : how ?
My forked and updated version (implementing the setup in my previous post) of M5Stack-IDF template project is available: https://github.com/wtakuo/M5Stack-IDF
-
RE: M5stack programming without Arduino IDE : how ?
Hello.
I started to use M5Stack a month ago. I tried several simple projects using Arduino IDE. Before moving to ESP-IDF based development, I tried a trivial (hello world) project to test my settings.Unfortunately, current https://github.com/m5stack/M5Stack-IDF looks outdated and incomplete. So I use https://github.com/m5stack/M5Stack as an IDF component as well as https://github.com/espressif/arduino-esp32 .
The project directory looks like the following.
Makefile sdkconfig components/ arduino/ (recursive clone of https://github.com/espressif/arduino-esp32, idf-update branch) M5Stack/ (clone of https://github.com/m5stack/M5Stack) component.mk (should be modified. See below) ... main/ component.mk main.cpp (copy of components/M5Stack/examples/Basics/Hello/Hello.ino)
The only tweak I did is the addition of
src/utlitity
to the end of these path variables incomponents/M5Stack/component.mk
.COMPONENT_SRCDIRS := . src src/utility COMPONENT_ADD_INCLUDEDIRS := . src src/utility
Without this modification, make cannot correctly find the source codes and headers under
src/utility
.The above setup looks OK and works for other projects.
My questions are:
* Is this a correct setup for ESP-IDF projects? (Is there any better one?)
* Is there any way to avoid the modification ofcomponents/M5Stack/component.mk
?Thank you for attention.