Lucas Paul

Results 36 comments of Lucas Paul

Thank you for this. Now my "Round" object cannot parse the rounds **if there is only one round**... I get the following warning: `WARNING: The class 'Round' is not key...

I've also faced this issue, with one ESP32 board, which other tools were able to connect and flash files to. However, trying with a different ESP32 board, I was able...

For me, I ended up using a different board and the upload is working fine ever since... Did not have the time to dig deeper into the issue.

Hello! Do you have any updates on the situation? I'm trying to send a "sleep" command to the gsm module ("AT+CSCLK=1") but I only get an empty response '' when...

Does anyone know if the esp module is implemented in the LoBo firmware? The MicroPython docs here http://docs.micropython.org/en/latest/library/esp.html state that the Modem Sleep sleep mode is supported, but I cannot...

I also released an app last week and my top crash is caused by this library (which I'm very thankful for, it's a beautiful way to showcas enew features). Here's...

@quangctkm9207 Could you please clarify what you mean? On my test devices while I I was developing the app, I never saw this crash, it only appeared when I released...

@quangctkm9207 Thanks for replying! :) Yes, all of the crashes are on iOS 10.0.0 to 10.3.3, no crashes on iOS 9, 11 or 12. I'll try running the app on...

I ended up changing the properties (Views) of the view holder directly since there is no way to edit the data of a TreeNode and "refresh" the view holder layout....

To present the WebVC modally use the following: ```swift let webVC = SwiftModalWebVC(urlString: "http://google.com") self.present(webVC, animated: true, completion: nil) ``` and the "Done" button will be there. The pushed WebVC...