برترین 16 برنامه مشابه به BTduino - Arduino - Bluetooth

Arduino bluetooth controller 1.3
Giumig Apps
Use Android as a bluetooth remote controller for Arduino
Arduino Bluetooth Control
broxcode
Take full control of your microcontroller-based boards viabluetoothmodules
Arduino bluetooth 1.3.3
CircuitMagic
If you are planning to make Arduino project which you wanttocontrol with Android phone via Bluetooth, then this applicationmayhelpful lot! This application I have created for my Arduinoprojectto LED on and off via my Android phone. So I have createdtwobutton in this app to LED on/off and one input text box to sendanynumber of alphabet to send Arduino. For more informationaboutArduino project and Android application you can visit myblog.Below is the link for project page. http://goo.gl/IgJRux
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); } }
ArduDroid 0.155
Hazim Bitar
ArduDroid: A simple 2-Way Bluetooth-based Android ControllerforArduino UNO
Arduino BT Joystick Free
HeightDev
This is a lite version of ArduinoBluetoothJoystick.You can get the full version in: http://goo.gl/mSzSvrArduino its an AVR-development kit with microcontrollerandperipherals on a single board, designed to make more accessibletheprocess of using electronics in multidisciplinaryprojects.Thehardware consists of a plate simple open sourcehardware designedaround a microcontroller Atmel 8-bit AVR, althougha new model isdesigned around a 32-bit ARM Atmel.The Arduino Bluetooth Joystick comes to help in theimplementationand usability of their prototypes, allowing yourAndroid smartphonebecomes a control. With this you will be free ofextra spending tothe development or purchase of wirelesscontrollers, just by usingthe application.The application has been tested with the Bluetooth module HC-05andHC-06 both available at various online shopping sites, costinglessthan $ 10 each.Sample:Vídeo - http://www.youtube.com/watch?v=2dGccTmJeQ0Code - http://felipeporge.com/files/ArduinoExtras.rarHow to use:Each botton sends a character or string. You can customize allthebuttons to send the best data for your project. You also cansendthe accelerometer data.This is still the first version of the application.PLEASE IF YOU FIND ANY FAILURE OR QUESTIONS, PLEASE CONTACTU.S.THROUGH E-MAIL contact@felipeporge.com
Arduino Bluetooth Controller 1.0 Home Premium
JULIO LIMA
Arduino Bluetooth Controller 100% compatible withallmicrocontrollers.
Bluetooth Electronics
keuwlsoft
Control your electronic project with your Android deviceusingBluetooth.
Ardroid 0.2
thechampanurag
An Android Application for controlling any type of Arduino'sDigitaland PWM Pins with the help of Bluetooth. It can be used toControlArduino Uno's Digital and PWM pins , Send & Recievetextcommands to/from Arduino. Arduino code for above Applicationcan beDownload from the link: https://goo.gl/iRPKWP
Bluetooth Controller 8 Lamp 2.4
merahkemarun
Bluetooth controller 8 channel lamp for Arduino andcodevisionAvrprogramming. You can connected relay modul 8 channelforelectronicdevice with a working voltage of 220v, lamp, fans,tv,etc.. i amtest with arduino leonardo and serialcommnunicationlibrary toconnected RX pin 10 and TX pin 11. you canuse arduinouno orarduino mini etc... FEATURES: -Tutorial page-control 8channelon/off lamp -control All channel ON -control AllchannelOFF-download file Program Arduino_Bluetooth_8Lamp.ino+schemmatic-download file ProgramCvAvrBluetooth_8_Lamp_Atmega16.zip +schemmatic -downloadtutorialebook.pdf -support Bluetooth modulHC-05 ,HC-06 and HC-07etc Checkto main menu update to PremiumVersion WHY YOU SHOULDUPGRADE to thePREMIUM? If you upgrade topreium, then you will notfind ads thatappear in applications(remove ads). And you'll get thecoolfeatures in addition toremove the ads, which featurekeysynchronization of the lightsbeing lit as shown in thevideo.PREMIUM FEATURES *Unlocksynchronize button of the means*Remove AdsDOWNLOAD FILE: DownloadFile: -Program Code arduinoproject with8LEDhttps://www.dropbox.com/s/f13qc8g929ze8ft/Arduino_Bluetooth_8Lamp_with_LED.zip?dl=1-ProgramCodearduino project with8Relayhttps://www.dropbox.com/s/c49htqkmjwhbngg/Arduino_Bluetooth_8Lamp_with_Relay.zip?dl=1-ProgramCodearduino project 8 Relay EEPROM .............Update toProVersion-Program Code cvavr project atmega16ZIPhttps://goo.gl/CDC9ei -EbookTutorialPDF:http://drive.google.com/file/d/0B-M9mRnKKpvSejJfb3pnOEpRUjg/viewVIDEOTUTORIAL:1. Test APPS for Free version VS Pro Premium 2.UploadProgram toArduino 3. Setting And Connected Bluetooth toPhoneDeviceGroupDiscussions:https://www.facebook.com/groups/257664444610751https://plus.google.com/u/0/communities/110412488278847572335*ConnectedArduinoPIN Lamp 1 connected to PinOut 2 Arduino Lamp 2connected toPinOut 3Arduino Lamp 3 connected to PinOut 4 ArduinoLamp 4connected toPinOut 5 Arduino Lamp 5 connected to PinOut 6ArduinoLamp 6connected to PinOut 7 Arduino Lamp 7 connected toPinOut 8ArduinoLamp 8 connected to PinOut 9 Arduino *Serial datasendingfromBluetooth Controll Lamp.apk data '1'-'8' to on is lamp1-8data'A'-'H' to off is lamp 1-8 data '9' to on ALL is lamp data'I'tooff ALL is lamp
Arduino Bluetooth Control 3.0
Martyn Currey
Monitor and/or Control an Arduino over Bluetooth
Virtuino 6 6.0.33
Ilias Lamprou
HMI for SCADA & IoT platforms - MQTT, MODBUS, HTTP,Bluetooth,WIFI, Thingspeak
Arduino BlueTooth Controller 1.0
Pranay Lonkar
"Arduino Bluetooth Controller" smart way to control yourHomeAppliances.
Arduino BT Control 1.2
Poderak
Arduino BT Control èun'applicazionegratuitache vi permette di controllare con deisemplici comandi ilvostromodulo bluetooth. Per associare il modulobluetooth conl'app, ènecessario prima accendere il bluetooth delpropriodispositivo edassociarlo con il modulo (se viene richiestaunapassword,solitamente è 1234). Una volta associato ilmodulo,potretetrovarlo nella lista dell'applicazione.Hardware richiesto per il funzionamento:- Arduino.- Modulo bluetooth HC-04, HC-05 oppure HC-06.Software richiesto per il funzionamento:- Caricamento sketch apposito per Arduino.Nell'applicazione sono presenti avvisi riguardol'associazionetrail modulo bluetooth ed il vostro dispositivo. Inquesto modopotreteverificare l'effettiva comunicazione tra l'appel'Arduino.Nel seguente link, troverete una guida sulfunzionamentodell'appe lo sketch che dovete caricare sulvostroArduino:http://goo.gl/v4Ib7iArduino BT Controlisafree application that allows you to control withsimplecommandsyour bluetooth module. To pair the Bluetooth modulewiththe app,you must first turn on your device and associate itwiththebluetooth module (if a password is required, it isusually1234).Once associated with the module, you can find it intheapplicationlist.Hardware required for operation:- Arduino.- Bluetooth Module HC-04, HC-05 or HC-06.Software required for operation:- Loading a special sketch for Arduino.In the application there are warnings abouttheassociationbetween the bluetooth module and your device. Thiswayyou canverify the communication between the app andtheArduino.In the following link, you will find a guide on the appworksandthe sketch that you have to download toyourArduino:http://goo.gl/v4Ib7i
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 BT Joystick PRO
HeightDev
Arduino its an AVR-development kitwithmicrocontroller and peripherals on a single board, designed tomakemore accessible the process of using electronicsinmultidisciplinary projects.The hardware consists of a platesimpleopen source hardware designed around a microcontroller Atmel8-bitAVR, although a new model is designed around a 32-bitARMAtmel.The Arduino Bluetooth Joystick comes to help in theimplementationand usability of their prototypes, allowing yourAndroid smartphonebecomes a control. With this you will be free ofextra spending tothe development or purchase of wirelesscontrollers, just by usingthe application.The application has been tested with the Bluetooth module HC-05andHC-06 both available at various online shopping sites, costinglessthan $ 10 each.Sample:Vídeo - http://www.youtube.com/watch?v=2dGccTmJeQ0Code - http://felipeporge.com/files/ArduinoExtras.rarHow to use:Each botton sends a character or string. You can customize allthebuttons to send the best data for your project. You also cansendthe accelerometer data.This is still the first version of the application.PLEASE IF YOU FIND ANY FAILURE OR QUESTIONS, PLEASE CONTACTU.S.THROUGH E-MAIL atendimento@felipeporge.com