Ubaldo Porcheddu
Ubaldo Porcheddu
Hi Agentzh, the idea is to have an easy and quick access to the column names as retrieved by the sql query, is there a more efficient way to achieve...
The idea is that I could rewrite the main.py on the sd card without having to burn again the whole firmware nor risking to mess up with the internal storage
No, my idea is that I burn the firmware, so the device is ready and working, I can then pack it into a nice case but anytime I want to...
or having to connect via serial which is also not as easy as to connect via wifi for instance on the esp32...
of course Pulkin I could do it so but I would then need to connect the board to the HST pins, burn the firmware, then connect the uart, write the...
Question is now, should we run /boot.py and /main.py anyway first if they are present? ``` // Startup scripts pyexec_frozen_module("_boot.py"); pyexec_file_if_exists("boot.py"); if (mp_vfs_import_stat("/SKIPSD") == MP_IMPORT_STAT_NO_EXIST) { pyexec_file_if_exists("/t/boot.py"); } if (pyexec_mode_kind...
I could reproduce the same indeed: [Sun Sep 20 19:51:46 2020] usb 1-4: new full-speed USB device number 19 using xhci_hcd [Sun Sep 20 19:51:46 2020] usb 1-4: New USB...
well they seem to be quite interesting, KEYIN_1 is responsable to enable BOOT_MODE_FORCE_MONITOR, indeed if I bridge IO26 (GPIO_26=KEYIN_1) with RST and I plug the usb cable to the computer...
The audio output seems to be working for AUDIO_MODE_HANDSET and AUDIO_MODE_LOUDSPEAKER (1,2), both on the speaker pins, not very sure but the only difference I could appreciate is maybe that...
> there are a bug, when **audio.play_start** no existed file, you must run **audio.play_stop()** first > > ``` > >>> audio.play_start("/t/no_existe_file.amr",15) > Traceback (most recent call last): > File "",...