Top 17 Apps Similar to Arduino to Android over Wifi

Home Automation Arduino Pro 1.0
Domoticasa Arduino Pro lets you control your home devicesviasmartphones . Just connect your Arduino to a relay board andabluetooth module and program it with code that is located atthebottom of the page . Great for those who want to create aprojectto take the state exam or for those who want to indulge inthehobby . FUNZIONALITA` - Control room temperature - He tookcontrol- Gate Control - Temperature control - Air conditioningcontrol andheating HARDWARE - An Arduino , Arduino Mega , yunArduino orArduino Leonardo - Bluetooth Module HC - 05 and HC - 06-Temperature sensor LM35 - Relay board For the installationdiagramand the sketch pleasevisit:http://www.progettiarduino.com/domotica-open-source-con-arduino-bluetooth.html
Blynk - Arduino, ESP8266, RPi 2.27.32
Blynk Inc.
Control Arduino, ESP8266, ESP-12,NodeMCU,Particle Photon, Raspberry Pi and other microcomputers withthesmartphone over the Internet. Bluetooth and Bluetooth LowEnergysupport.Create beautiful interfaces with widgets like buttons,knobs,graphs, displays and many more!Start in 5 minutes:http://www.blynk.cc/getting-startedIf you have any questions, ask on our forum:http://community.blynk.ccYou can even share your project with friends and other makersbysimply sending them the link.Use our Blynk Cloud or deploy your own Blynk Server in a minuteandhave full privacy and control in your hands.Supported boards and shields:• ESP8266• ESP32• NodeMCU• Arduino Uno• Arduino Mega• Arduino Nano• Arduino Mini• Arduino YÚN (Bridge)• Arduino Due• Arduino 101• Raspberry Pi• Particle Core (ex Spark Core)• Particle Photon• SparkFun Blynk Board• TinyDuino (CC3000)• Wicked WildFire (CC3000)Shields and connections:• USB, connected to your laptop or desktop computer (noshieldrequired!)• Ethernet shield (W5100)• Adafruit CC3000 WiFi• Official Arduino WiFi shield• ENC28J60• HC-05, HC-06, HC-08, HM-10, etc.And much much more...
Droid Control for Arduino 2.1
Anton Antonov
This application in combination with"DroidHost for Arduino" allows you to remote control your Arduinoprojectvia WiFi / 3G *without* any shields.Steps:1.Download this app.2.Download "Droid Host for Arduino" app on *another* androiddeviceand connect Arduino MEGA/UNO with USB cable to theseconddevice.3.Configure the TCP connection between the apps.4.Both application will communicate via WiFi /3G and allow youtoremote control your Arduino project.This application can also receive video stream from "DroidHostfor Arduino".In general "Droid Host for Arduino" is something likeWiFi/3Gmodem/shield for your Arduino board and this app issomething likea joystick/controller that can send commands to"Droid Host forArduino" and the arduino board.You can find "Droid Host for Arduino" here:https://play.google.com/store/apps/details?id=arduino.robot
RemoteXY: Arduino control 4.13.4
Control Arduino and other boards via WiFi, Bluetooth, USB,Internetusing GUI
ArduDroid 0.155
Hazim Bitar
ArduDroid: A simple 2-Way Bluetooth-based Android ControllerforArduino UNO
LCDsketcher 4 ARDUINO 3.00
TriCon
LCDsketcher - generates sketches for your own LCD
Bluetooth Control for Arduino 1.1
merahkemarun
Arduino Bluetooth Relay 4CH App is android application which isusedto control 4 channel relay module via Bluetooth withBluetoothserial communication module support HC-05, HC-06, orHC-07, UsingArduino or AVR i am test with arduino UNO and serialcommnunicationlibrary to connected RX pin 10 and TX pin 11. you canuse arduinouno or arduino leonardo etc... Fitur App: -control 4channel on/offralay -control All channel ON -control All channelOFF -downloadfile Program Arduino_Bluetooth_Ralay_4ch.ino -downloadfileTutorial PDF with schemmatic Download File: -arduino projectZIP :https://goo.gl/Vq1n9D -tutorial & schematic wiring PDF:https://goo.gl/b2UVY1 or you can Copy program here to ArduinoIDE/* Relay IN1 connected to PinOut 2 Arduino Relay IN2 connectedtoPinOut 3 Arduino Relay IN3 connected to PinOut 4 Arduino RelayIN4connected to PinOut 5 Arduino --->you can connected torelaymodul 4 channel Serial data sending from Arduino BluetoothRelay4CH.apk data '1'-'4' to on is Ralay CH 1-4 data 'A'-'D' to offisRalay CH 1-4 data '9' to on ALL CH 1-4 data 'I' to off ALL CH1-4*/ #include SoftwareSerial mySerial(10, 11); //Pin10 RX , Pin 11TXconnected to--> Bluetooth TX,RX #define relay1 2 #definerelay23 #define relay3 4 #define relay4 5 char val; void setup(){pinMode(relay1,OUTPUT);pinMode(relay2,OUTPUT);pinMode(relay3,OUTPUT);pinMode(relay4,OUTPUT);digitalWrite(relay1,HIGH);digitalWrite(relay2,HIGH);digitalWrite(relay3,HIGH);digitalWrite(relay4,HIGH);mySerial.begin(9600); Serial.begin(9600);} void loop() { //cekdata serial from bluetooth android App if(mySerial.available()>0 ) { val = mySerial.read();Serial.println(val); } //Relay ison if( val == '1' ) {digitalWrite(relay1,LOW); } else if( val =='2' ) {digitalWrite(relay2,LOW); } else if( val == '3' ){digitalWrite(relay3,LOW); } else if( val == '4' ){digitalWrite(relay4,LOW); } //relay all on else if( val == '9' ){digitalWrite(relay1,LOW);digitalWrite(relay2,LOW);digitalWrite(relay3,LOW);digitalWrite(relay4,LOW); } //relay isoff else if( val == 'A' ) {digitalWrite(relay1,HIGH); } else if(val == 'B' ) {digitalWrite(relay2,HIGH); } else if( val == 'C' ){digitalWrite(relay3,HIGH); } else if( val == 'D' ){digitalWrite(relay4,HIGH); } //relay all off else if( val == 'I'){ digitalWrite(relay1,HIGH);digitalWrite(relay2,HIGH);digitalWrite(relay3,HIGH);digitalWrite(relay4,HIGH); } }
ArduinoDroid - Arduino IDE 6.3.1
Anton Smirnov
Important:The app takes about 210Mb as it contains IDE, compiler anduploader.Make sure you have enough free space in internal storageand itcan't be installed on sd card because of Androidsecuritypolicy.Features:* open/edit Arduino sketches* example sketches and libraries included* code syntax highlighting with themes support ** code complete ** real-time diagnostics (errors and warnings) and fixes ** sketch navigator ** tiny built-in software keyboard ** compile sketches (no root required)* upload sketches (Arduino Uno/Uno_r3, Duemilanove, Nano, Mega2560,Leonardo, Micro/Pro Micro, Pro, Pro Mini, Yun, Esplora,RobotControl, Robot Motor boards are supported, android deviceswithUSB-host support required)* serial monitor* works offline (no internet connection required)* Dropbox support* Google Drive support* material designApp blog:http://www.arduinodroid.infoTroubleshooting:http://www.arduinodroid.info/p/troubleshooting.htmlAdvanced paid features (marked with *) review:http://www.arduinodroid.info/p/advanced-features.htmlSee also CppDroid app:http://www.cppdroid.info© "Arduino" is a trademark of Arduino team.
Arduino bluetooth controller 1.3
Giumig Apps
Use Android as a bluetooth remote controller for Arduino
ArduinoCommander 4.2.2
Anton Smirnov
Control your Arduino board from yourAndroiddevice over Bluetooth, Ethernet or USB (Diecimila,Duemilanove, Unor1/r2/r3, Mega, Leonardo, Nano) using WYSIWYGinterface, Androidsensors or JavaScript script.View video on how to use it on YouTube:http://youtu.be/O6fNJY5WjZgCheck out ArduinoDroid - Arduino IDE for Android:https://play.google.com/store/apps/details?id=name.antonsmirnov.android.arduinodroidWhat do you think about this idea of crowd-funding forfeaturesin the apps:http://bit.ly/WW98omTranslate ArduinoCommander UI into your native language:http://bit.ly/YKpqS4Features:- discover and connect to Arduino board:- over bluetooth (Bluetooth shield like Sparkfun bluetoothmodems(http://bit.ly/zFBqsg) or these (http://bit.ly/AzqnJV) is required)- over ethernet (W5100-based ethernet shield (official (http://bit.ly/N8RqpY) or these (http://bit.ly/Lgk2MS) and sketcharerequired)- over USB (USB Host mode support on android device and Android3.1+are required)- over USB as Android Accessory (USB Host shield likethese(http://bit.ly/MwTQ2t), Android 3.1+ andsketchare required)- display board firmware version, name and Firmataprotocolversion- set pin mode (analog/digital input/output, pwm, servo)- get/set pin values- LED and pin mode animation- beautiful WYSIWYG interface for any screen dimensionsAdvanced features:- arduino sensors (set PWM output using android devicesensors(accelerometer, gyroscope, ...))- save and load pins configuration from file- speech input- Arduino Mega board support- PWM JavaScript generator (set PWM output usingJavaScriptscript)- meter view (vintage VU meter for analog input)- Arduino Nano v2/3 boards support- oscilloscope- sketch uploadingAdvanced features are paid and marked using asterix (*) intheappUpload StandardFirmata sketch to your arduino board first (Menu/Upload sketch */ StandardFirmata @ 57600)Visit application page (http://anettosoftware.co.uk/ac.php)to view screenshots, read full app description andusageinstructions.© "Arduino" is a trademark of Arduino team.
Arduino Uno Port Control 2.2
Erdem Aslan
Control your Arduino Uno Board from your Android device!!
UsbTerminal 2.0.25
Lior Hass
Terminal emulator for serial devices connected with USB
Arduino CNC Controller 1.0 Beta
Luis P. B.
Controller to create CNC mill using Arduino Mega and a manualMillvia USB
Virtual Shield for Arduino 1.0.2
area54labs
VirtualShield is a prototyping toolkitforArduino. The toolkit use your Android device to act likeArduinoShield and sensors, such as sending data to Middleware orgettinglocation data. The toolkit can help you learn Arduino withlesscost and less code. For tutorials and documentation, gotosaggafarsyad.github.io/VirtualShieldRequirements:- Arduino board/modules- Android device with Bluetooth support- Bluetooth module with baud rate 115200bps (I recommendHC-05module)Features:- Internet Shield, send data to your web service- Sensor Shield, use Android sensors. Only AccelerometerandLocation sensor is currently available- Run in background service
Arduino SMS 1.1
With this App you can send andreadeasilymessages.You can send from your Arduino to your phone, a phone numberandatext over Bluetooth.The App then sends the text to this number.Or the phone reads incoming messages and sends the phonenumberandtext to your Arduino.To find out how to use this App with an Arduino or ifyouwouldlike a few sample codes, you can visitthispage:http://nicolasdalloap.jimdo.com/Features:enable / disable Bluetoothsearch for devicesshow paired devicesconnect a devicesend messages (SMS)read messages (SMS)Important: You must first have paired your Bluetooth module.
HMI Controller for Arduino L 2.1
As Never Been So easy to check your Arduino board!
1Sheeld: The Arduino Shield 1.9.0
What is 1Sheeld? 1Sheeld is a platform for Arduino that allowsyoutotap into your smartphone's sensors and capabilities and letsyouusethem in your Arduino projects. Basically, It is ahardwareshieldthat sits on top of your Arduino board andcommunicatesoverBluetooth to this Android app, to transfer databetween it andyoursmartphone. Instead of buying an accelerometersensor, use theonein your smartphone, want to connect Arduino tothe internet?noneed to buy a WiFi shield, use your smartphone as agatewaytoaccess the internet. 1Sheeld makes you use allyoursmartphone'ssensors and capabilities for hardware prototyping.Whatcan you dowith 1Sheeld? The sky is the limit! You have apowerfulAndroidsmartphone that can be used to control your RC car,tweetwhenplants are thirsty, and have fun automating yourenvironment.Wherecan I buy 1Sheeld? It is available throughdistributorsworldwide,check our website to knowmore:http://www.1sheeld.com/buy What isthis app? 1Sheeld app isusedalong with our hardware shield toeither control Arduino, readyoursmartphone's sensors in yourArduino sketch, post on socialmedia,or even control your Androiddevice. Does it work with ArduinoMega,Leonardo, Uno and Due? Yup,our shield should work with anyArduinoboard as long as it has theshields’ form factor and arecompatiblewith Arduino Uno shields ingeneral. Is it open source?Yes, all ofthe schematics, firmware,and this app are open source.Check outour Github account :http://github.com/integreight Wherecan I findyour Arduino libraryand its documentation? You will findof all ofthe requiredresources, libraries, documentation andtutorials onour website:http://1sheeld.com What are the shields youare givingme access toright now? Currently, you have access toaround 40shields. Here isa list of them: 1- Accelerometer Sensor 2-Buzzer3- Camera 4-Clock 5- Color Detector 6- Data Logger 7- Email8- FaceDetection9- Facebook 10- Foursquare 11- Game Pad 12- GLCD13- GPS14-Gravity Sensor 15- Gyroscope Sensor 16- Internet 17-Keyboard18-Keypad 19- LCD 20- LED 21- Light Sensor 22- MagnetometerSensor23-Mic 24- Music Player 25- NFC 26- Notifications27-OrientationSensor 28- Pattern 29- Phone 30- Pressure Sensor31-ProximitySensor 32- Push Button 33- Seven Segment 34- Skype35-Slider 36-SMS 37- Temperature Sensor 38- Terminal 39- Texttospeech 40-Toggle Button 41- Twitter 42- Vibration 43-VoiceRecognition Wealso have integrated 2 plugins to Tasker app(Beta),an event and acondition plugins, that will allow you tobring thepower ofhardware into you automation scripts. Note: Youactuallyneed tohave 1Sheeld hardware to be able to use this app,but youcan useour new demo mode to explore its capabilities andmake yourbuyingdecision later. If you liked our app, don't forgetto rateit. Wecan't wait for your 5/5 review. If you have anyproblems,asuggestion, or just wanted to say hi, just drop us anemail atinfo(AT) integreight (DOT) com and we will be very happy toanswer.