@charlesRD I also found this to be a problem with UiFlow2, and found that the unit init.py file is missing the required entry for the LoRaWAN module. I have raised an issue in Github, and submitted a pull request to get it fixed.
Posts made by mikeluyten
-
RE: LoRaWAN EU868 RAK3172(H) program issue
-
RE: CoreS3 & HTTP Request block: urequests import error
@_andreas_ said in CoreS3 & HTTP Request block: urequests import error:
Hi,
FYI: I've got a response from m5stack support regarding this issue:
Below issue is caused by the mpy version changing. We may fix it by next version, which should be next Friday. Thx!
Can confirm, this is now fixed!
-
RE: Pb.Hub and RGB Unit
Any further updates about getting the PbHub v1.1 to drive more than one RGB LED?
I have provided external power to my LED's and still only the 1st LED will light up, also if it was a power issue, when trying to turn on the 2nd or 3rd led, it should not turn on the 1st LED. Looks to be a firmware issue with the PbHub where its not reading the LED number bytes in the message.
-
KeyCode does not work in UIFlow 2.0/Cardputer
When trying to use the KeyCode function (to get a KeyCode of "ENTER" in my case)
I get an error of KeyCode is not defined. -
RE: CoreS3 & HTTP Request block: urequests import error
urequests is not a typo, the u stands for μ, the Greek symbol for micro. Meaning: "micro"-requests, a smaller version of the requests library, slimmed down for micropython.
I have read that urequests has also now been replaced by urllib.request as a further optimised version for low memory ESP devices.I believe the included "requests" library may be too large for the memory of the S3, and urequests IS the intended library that should be included in the firmware (which it is not)
Using requests instead of urequests in my code I get the following error:
File "requests/init.py", line 180, in get
File "requests/init.py", line 93, in request
OSError: [Errno 12] ENOMEM