[Solved] control servo using android

Read the data as string using: string input = bluetooth.readString(); Then convert string to int using: int servopos = int(input); Then write the position to the servo:servo.write(servopos); Now depending on the data you send from android, you could need to : Trim it: input = input.trim(); Or constrain it : servopos = constrain(servopos,0,180); Your corrected … Read more

[Solved] Is it possible to connect phones by rubbing them?

The closest thing to what you’re looking for is called Near Field Communication (or NFC). Currently fully supported by many Android phones without major limitations. Apple devices are more limited in NFC usage (currently restricted to Apple Pay only). For more information, read Near field communication (Wikipedia). solved Is it possible to connect phones by … Read more