Posts by Henrique Becker • 31 points
6 posts
-
0
votes0
answers69
viewsQ: Android - Variable in Runnable
I’m developing a class for UDP communication with Android + an ESP82666, I just have a problem in it. My Runnable "Sender" can not get the List toSend updated, for it toSend is always empty. What…
-
0
votes1
answer232
viewsA: How exactly does the Moon’s canvas.Compose() work?
The image is in the 0.0 position (left/top) with the original size of 1280x720 and is left space below and right side. Canvas does not auto-resize by default. To resize a canvas you can try using…
luaanswered Henrique Becker 31 -
1
votes2
answers725
viewsA: Set PIC pin as input and output with CCS?
uses the directive: #use standard_io(A) then just use the normal functions for reading and writing: input (pin), output_high (pin) and output_low(pin).…
picanswered Henrique Becker 31 -
0
votes1
answer76
viewsA: Performance in applications with multiple loops
The main difference is the recursive function, which gives a great kill in performance. In short, Math.js is already well optimized, so it is not worth rewriting its functions, except for study…
-
1
votes1
answer325
viewsA: Setup.msi prompts the user to install . NET Framework 4.6.1
If not really necessary, avoid using the latest version of the framework, use a more popular one, so the installation becomes simpler for the user. With the Visual Studio Setup Project I think you…
-
1
votes1
answer113
viewsA: Problem showing received SMS
+CMTI: "ME",33 is the indication of the GSM module that a message has been received, you need to give a command to read the message. The commands may vary a little according to the module, but they…