@VVong_san_
glad to hear 'bout that

Posts made by kuriko
-
RE: Program upload error stickC plus2
@marcj091 said in Program upload error stickC plus2:
File "main-PY", line 16, in setup File "label plus-Py", line 33, in init ValueError: invalid Timer number
hmmm i think you should pay attention to this line
are you able to show your code? -
RE: UIFLOW IDE 2.3.0 to Core2 v2.1.7 push don't work
@mtc_ndr
The file may be deleted on the UiFlow IDE, but the device did not receive the synchronization information or lost the synchronization information, resulting in the device being unable to download the file.
You can try the following 2 methods:- Reburn the UiFlow2 firmware.
- Delete the 2 following files of device:
-
RE: Need help with Activating looping functions in UiFLow
@icarus121
Your problem is that you use "loop" in the callback function of "touchbutton0_was_pressed". This will cause your program to loop forever.
I recommend you add a flag to indicate whether button1 or button2 is pressed: in the loop, if button1 is pressed, execute program 1; the same applies to button2.
-
RE: UIFlow 2.0 sync error
@benhultink
seems like a network issue, have you checked your internet connection? have you turned system proxy on? have you tried change a network? -
RE: No enciende la pantalla.
@Salam-Rashid said in No enciende la pantalla.:
A quien pueda interesar: Problema solucionado. He desmontado el aparato le he desconectado la batería "es muy fácil, tiene un conector blanco de dos pines, con un cablecito Rojo y uno Blanco que se puede conectar y desconectar", con la batería quitada, lo he conectado al ordenador a trabes de su cable USB Tipo C y se ha encendido la pantalla. He desconectado el cable USB y lógicamente el modulo se ha apagado porque no tenia la batería puesta. He vuelto a conectar la batería he apretado el botón de encendido y ha vuelto a funcionar. así que problema resuelto. No se ni como ni porque surgió el problema, pero ya esta resuelto. La solución la he encontrado en este mismo foro en el idioma Japones, por el compañero @mongonta555. Gracias.
helpful!
-
RE: Atom JoyStickのATOM S3のファームをVisualStudioCodeのPlatformIOプラグインから書き込みたい
@stx28eeeee3
これは確かにストランジなエラーです。何が問題なのかわかりませんが、私が使用している AtomS3 テンプレートで試してみてください。
https://www.mediafire.com/file/jt8jo58x6ebevsl/AtomS3-template.zip/file -
RE: Problem with MQTT on Stick Plus C 2
@jvli5
I think your initialization is not done correctly. You can try to refer to other cases in the Project Zone. -
RE: M5Paper S3 not binding
@VVong_san_
you can email support@m5stack.com and see if they can check your device in the backend. And, remember to attach the MAC address of your device! -
RE: [UIFlow 2.0] Thank for UIFlow2.0 for Tab5, but...
@phillipsback
hmmm.... not sure about your problem. Are you able to provide some photos? -
RE: Where is Base M5GO Bottom on UIFlow2.0 ?
@LeoZeLion
You can use the built-in API to use the functions of Base M5GO Bottom directly without additional blocky -
RE: M5 GNSS module with ESP32 board
@alexcap
I just stacked it normally, it should be 3.3v refering to schematic. The HPWR pins is for the high voltage modules to transfering current like Module PwrCAN or PPS etc. -
RE: M5 GNSS module with ESP32 board
@alexcap
For me, just providing the correct power supply, you can get NMEA messages over the serial port (even without the antenna plugged in). The only things you need to make sure are the pinouts are correct and the module is getting the correct power supply. -
RE: M5Stamp-Pico Solid Blue Light
@marnix201
The blue LED indicates that it is currently working in USB mode or is not connected to the server
-
RE: ATOMS3R accelerometer and gyro readings always 0
@toffifee
have you tried Arduino example? we can determine if that was a hardware problem
https://github.com/m5stack/M5AtomS3/blob/main/examples/Basics/imu/imu.ino -
RE: burning impossible on Core 1 (basic)
@visevision
oh sorry i almost forgot
you can also burn the UiFlow 2 firmware using webburner (located at the left down corner of UiFlow2)
-
RE: burning impossible on Core 1 (basic)
@damien_hirlimann @visevision
you can try download the UiFlow2 firmware and manually flash using esptool, but you will lose the account binding function
https://github.com/m5stack/uiflow-micropython/releases/tag/2.2.7 -
RE: AtomS3 lite uart G1 G2
SoftwareSerial mySerial(1, 2); void setup() { mySerial.begin(115200); } void loop() { mySerial.write("Hello world!"); }