Posts by Wesley Campos • 23 points
3 posts
-
1
votes3
answers7251
viewsA: How to read keyboard numbers in C#?
In C language, use getch() to capture the first character typed, example: char op; op=getch(); //Lê a primeira tecla que for digitado no teclado, e grava na variável printf("Caractere digitado: %c",…
-
0
votes4
answers7507
viewsA: Arduino and Android Bluetooth Connection (Java) - Inputstream storing old data
Have this tutorial here (Bluetooth communication between Arduino and Android). It took me a while to understand how the code works, but after a good study I managed to mold my app on top of the code…
-
1
votes1
answer3678
viewsQ: How to send data from an Activity to a Fragment?
As you can see in the code below I can send data from one Fragment to the other and tbm from one Fragment to Activity but I’ve tried everything to send from Activity to Fragment but I’m not getting…