How to Build an Android App to Control Your WiFi Enabled Arduino

  Переглядів 300,457

ForceTronics

ForceTronics

День тому

In this video we look at how to make a simple Android App to control your Arduino via WiFi. To access the code from this video go to my blog at: forcetronic.blogspot.com/2016/...
To download the Android App .aia file click here: www.dropbox.com/s/nb2sf73n8g4...

КОМЕНТАРІ: 166
@giovannacosta7375
@giovannacosta7375 7 років тому
Really nice tutorial! I want to control my home stereo amplifier with an android app and MKR1000 seems perfect for that! Also thanks for the tip of using the MIT compliler for the app itself!
@skrame01
@skrame01 6 років тому
Great concise, practical, useful tutorial.
@19Kone92
@19Kone92 5 місяців тому
Thanks, my project worked after watching this Video!
@Misc_useful
@Misc_useful 5 років тому
Reallly beautiful tutorial...
@konstantinrebrov675
@konstantinrebrov675 5 років тому
Thank you sir. What are the minimum prerequisites for undertaking this project? I am comfortable with using the sockets library and proficient in C and C++ in general, and I know a little about mobile development.
@blundellharris3678
@blundellharris3678 7 років тому
Nice short precise video, thanks. Explained a lot.
@caiomolinari4790
@caiomolinari4790 4 роки тому
You're an impostor
@joeymullen
@joeymullen Рік тому
Awesome tutorial. Thank you so much!
@PalleHansen2730
@PalleHansen2730 4 роки тому
Perfect tutorial thanks a lot.
@chiorrimd
@chiorrimd Рік тому
Very Thanks! Objective video and your explanations too! Congratulations!
@erickcampos50
@erickcampos50 7 років тому
Excelent tutorial!
@krzysztofopas8583
@krzysztofopas8583 7 років тому
Well, it seems to bo greate. I can,t wait for the delivery of my wifi shield and check it out. Tkanks a lot for that tutorial :)
@Ddfamilia
@Ddfamilia 5 років тому
Awesome video, extremely well explained!
@user-ee2hw1bv3z
@user-ee2hw1bv3z 4 роки тому
I use Esp01 for this tutorial. Due to no analog port in Esp01, I use some words instead to show in webpage. But cannot show the word on webpage
@dcpowered
@dcpowered 4 роки тому
The dropbox download link for the Android App .aia file is not working. Could you please re-upload? Thank you for this great tutorial. It's much appreciated!
@djramremix284
@djramremix284 5 років тому
Hi, i have a question. can we use something.local/ledoff ? can we replace the ip? using android code ? it is working on the ios devices and also for windows i have downloaded bonojour.
@theo4948
@theo4948 3 роки тому
merci bro :-)
@anokhautomation4453
@anokhautomation4453 Рік тому
It was a very very useful tutorial 👍 thanks for sharing. Please post more tutorials with mkr1000.🙏
@andriusl9240
@andriusl9240 5 років тому
great video, good explanations etc. yet can you make example with esp8266, that would be amazing
@maxpolaris99
@maxpolaris99 5 років тому
hey thats my router!
@kubawlo
@kubawlo 2 роки тому
Great tutorial. I was just wondering about the safety of such connections, static IP adresses and hard-coding WiFi passwords onto arduino... Would you comment on that?
@ForceTronics
@ForceTronics 2 роки тому
Great question. This video was from multiple years ago, I believe it is just meant to work on your local network (local network meaning your router at home or office). Setting static IP addresses does not affect the security of your local network because IP addresses on your local network are not visible to the outside internet, outside internet can only communicate with your router's IP address. Unless somehow your router is hacked, the outside internet can't see IP addresses on your local network. As far as the hard coding of the WiFi password, that is a security risk if you share your code. Remember this is just an example application. If you are making a product or something for others to use you would not hard code passwords. All my videos are meant to be simple examples not finished products.
@someshvarvashisht6726
@someshvarvashisht6726 6 років тому
Thanks for this wonderful tutorial. I was looking for this. I just set the static ip address for the Arduino in the Arduino code and it worked fine. But y r u connecting the jumper wire ? My code working without the jumper wire.
@ForceTronics
@ForceTronics 6 років тому
The jumper wire is connecting the power supply to the ADC input to give you a full scale ADC reading (that is why the app is showing 1023 for a full scale 10 bit reading). The code will work whether the jumper is connected or not.
@simsim-mh4ky
@simsim-mh4ky 6 років тому
hello can you send me your android code please !!!!!
@ForceTronics
@ForceTronics 6 років тому
There is a link in the video description that will get the .aia Android file
@sitinadirahmohdnor1407
@sitinadirahmohdnor1407 6 років тому
hye..i have done this tutorial with wifi shield..but i dont know how it works..when i open the serial monitor there is only blank space appear eventhough i have disable all the //.. and when im press the button, the Led also display nothing..pls help me
@MitsuMyth
@MitsuMyth 3 роки тому
I made a arduino code for a humidity sensor but without the wifi algorithm. Should i just copy paste it or do i need to change within it?
@sohaibarif5996
@sohaibarif5996 4 роки тому
Hey! That's a great tutorial. But my question is can I use the same code with minor changes to trigger relay for controlling motor instead of LEDs.
@ForceTronics
@ForceTronics 4 роки тому
Yes. The LED was just meant to be a simply control example with app and WiFi. You can modify as needed for your application
@sohaibarif5996
@sohaibarif5996 4 роки тому
@@ForceTronics Can I use NodeMcu in place of Arduino MKR 1000
@ForceTronics
@ForceTronics 4 роки тому
@@sohaibarif5996 I believe they use different WiFi libraries so you would need to change the code
@AlemulRazi
@AlemulRazi 2 роки тому
Bangladeshi?
@dmarkieb
@dmarkieb 5 років тому
It would be nice to take the router out of the loop if you can make the Arduino and phone the only components in the network so you could go on the road with this.
@clementfisk7514
@clementfisk7514 6 років тому
hey anyone know how to send strings using this ? stuck on a project. Thanks in advance,
@19Kone92
@19Kone92 4 місяці тому
Hi, you showed how a char can be transferred when a certain value is expected on the Arduino side. I would now like to transfer an integer. I won't be able to do that with the "endsWith()" logic. Do you have any ideas what I could do instead?
@ForceTronics
@ForceTronics 4 місяці тому
I made this video years ago so I don't remember the details in the software. If I am using a standard library for the data transfer in the code you should look at the functions in that library to see if one handles integers. Or you can convert chars to integers and vice versus. If an 8 bit char is represented as an ASCII character from 0 to 9 you can convert it to an 8 bit unsigned integer from 0 to 9 by subtracting 48
@nawarkajji879
@nawarkajji879 6 років тому
Plz i need your help for ios app ?? Can you help me to build ios app to connect iphone to arduino ??
@nazreenamani7499
@nazreenamani7499 Рік тому
does this steps for CH340G Uno Board ? or it permissible for MKR1000 board only?
@djzenya5462
@djzenya5462 6 років тому
Can we do with Android Studio?
@MrSaLoMa1
@MrSaLoMa1 6 років тому
great work man ! can i connect arduino with mobile via wifi without a router ? because my project will be tested in a place without any routers and wifis ?
@ForceTronics
@ForceTronics 6 років тому
This series should help answer your question: ukposts.info/have/v-deo/kpqbnX6Bim6drWQ.html
@MrSaLoMa1
@MrSaLoMa1 6 років тому
ForceTronics thanks a lot 😍
@lindokuhlenkambule9318
@lindokuhlenkambule9318 4 роки тому
how do i connect wifi to ardunio and mit
@marwans4018
@marwans4018 4 роки тому
can i control arduino from anywhere using the internet ? using this app ?
@spddfg2611
@spddfg2611 6 років тому
how much meter it will control can we control a drone
@markdonadillo4099
@markdonadillo4099 5 років тому
can you help me with my project? the data captured from Arduino devices(Arduino IDE) I want it to send to the mobile application / these data are from ultrasonic sensor and dht 11 (range and temp/humidity) thanks sir
@nandyhaaru9298
@nandyhaaru9298 5 років тому
Im also trying to build same kind of app..i too need help :(
@javi117e6
@javi117e6 5 років тому
Would this work relatively the same if I used Xcode instead of app inventor?
@ForceTronics
@ForceTronics 5 років тому
Not sure I understand this question. Yes of course Xcode supports WiFi based apps
@lovelyboy990
@lovelyboy990 6 років тому
Hello, thanks for your efforts but i would like to know if i have the source code of an Android app that has a lot of customized functions and i need to build the interface part with the ESP8266, what is needed and how can i connect the app with ESP8266 (what protocol and library) Thanks in advance
@jhonnylopez3364
@jhonnylopez3364 6 років тому
#include #include
@bijuphilipjacob2961
@bijuphilipjacob2961 6 років тому
Just Awesome! Thank you so much. You are the man. Would you be kind and make a tutorial video on how to connect an AC well water pump to a relay? If you could also advise on the correct relay spec to purchase please. I plan to control my pump for the house from my cell phone using my Arduino UNO and a WiFi sheild. AC Well Pump Specs: -> 240 V -> 50 Hz -> 1.5 HP -> 6.6 A -> 2800 rev/min -> HEAD: 30 Feet If there is anything else you would need to know, kindly let me know. Eagerly awaiting your reply. Thanks & Best regards, Philip
@ForceTronics
@ForceTronics 6 років тому
I am glad you enjoyed the video. I typically do videos that are related to projects I am working on so I don't think I will be doing a tutorial on your exact application related to an AC well pump. Good luck on the project.
@bijuphilipjacob2961
@bijuphilipjacob2961 6 років тому
Sure, no worries...just trying to get all the help and advise I can. Maybe at the least you can advise me on just what spec relay is suited for the pump spec I mentioned? Thanks, Philip
@pranavdeep8453
@pranavdeep8453 6 років тому
HI, I'm currently working on a similar type. Have you made your project? If so pls leave me a mail on pranavdeep1997@gmail.com Thanks in advance :)
@devikasnair1271
@devikasnair1271 2 роки тому
sir, kindly tell me how to do this if using Arduino Mega 2560 board?
@anokhautomation4453
@anokhautomation4453 3 роки тому
is this code will work on esp8266?? can u make a tutorial for control relay firebase with esp8266 working on android app
@christinepellicane6689
@christinepellicane6689 2 роки тому
Does the Nano 33 IoT require a shield? Also wondering if the pre-made apps are required, or if somebody could just make a React app/simple web interface from scratch (designing the UI would be kinda fun, with HTML/CSS/JS. Event listeners, radio buttons and whatnot.) Thanks!
@ForceTronics
@ForceTronics 2 роки тому
I did not test this example code with the Nano 33 IoT so I can't really answer. If the code does not compile for the Nano 33 IoT then it will not work and needs to be modified
@Danny-pp8xz
@Danny-pp8xz 5 років тому
@ForceTronics can i use my airport express router (iphone)for this so i can modify it that i have light control +music tru a app on my phone?
@ForceTronics
@ForceTronics 5 років тому
Not sure I follow your question. Your phone and Arduino device must be on the same local network (same router). If there not you typically would use cloud storage in between
@robduncombe
@robduncombe 2 місяці тому
Hi, do you know how I could do exactly this but with an FS90 micro servo instead of an LED?
@ForceTronics
@ForceTronics 2 місяці тому
The goal of this video was to show how to add wireless control to a design. The LED was just used as an example. If you want to use something different than an LED that's beyond the scope of this video. You might want to find a tutorial on the fs90 micro servo and then combine what you learned there with my video
@Lordjunimon
@Lordjunimon 5 років тому
How can I make the Arduino read a number between 1 and 100 from a text box instead of the letters "H" or "L" , will I have to make 100 conditions in the MTI App or there is a easier way to do?
@ForceTronics
@ForceTronics 5 років тому
A text box will return text or ASCII characters so you either need to change the text box to a UI object that supports numbers or you will have to convert ASCII number characters to real number values
@ems918
@ems918 5 років тому
Everytime I run the MIT App Invenrtor 2 on my mobile phone, it always scanning qr code. How can I permanently store my project on my mobile phone ?
@ForceTronics
@ForceTronics 5 років тому
The MIT App Inventor II website provides instruction on how to do just that
@MrFaHaDX2
@MrFaHaDX2 3 роки тому
what type of shield can i use?
@brunodragas8661
@brunodragas8661 6 місяців тому
can you connect it via mobile network
@SurenderGA
@SurenderGA 2 роки тому
Can we do this but with a GSM sim and not inside a wifi network
@isimoto
@isimoto 7 років тому
Can you tell me if this code will work with the CC3200 LaunchPad board from TI? I think it need differnt libraries but I'm interested if the same Android app that you created will work with the CC3200. Thank you!
@ForceTronics
@ForceTronics 7 років тому
If you can use the HTTPS protocol with the CCS200 then the app will work
@kjack08093
@kjack08093 2 роки тому
Is it possible to setup and then control from your phone where WIFI/router/internet wouldnt otherwise exist? So like in a field direct from phone to arduino?
@eagleflight2627
@eagleflight2627 10 місяців тому
You can use a bluetooth module for direct connection between phone and arduino.
@brianchedrawi2996
@brianchedrawi2996 6 років тому
Can i see the android code from the aia file ? i build the whole app and i still have to make the connection. can i implement the same code on android studio ? thank you
@ForceTronics
@ForceTronics 6 років тому
There is a link to the file .aia file in the video description. This file will only work in App Inventor II to the best of my knowledge
@pakhe5629
@pakhe5629 6 років тому
Hi, how do we control the arduino MKR1000 using the android apps that we created in the android studio ?
@ForceTronics
@ForceTronics 6 років тому
I don't understand your question, isn't that covered in the video?
@MitsuMyth
@MitsuMyth 3 роки тому
@@ForceTronics he meant if he didnt use MIT but used arduino studio, how can he control the MKR1000
@yuthanayodsila5001
@yuthanayodsila5001 5 років тому
Hello.I want to know ,android connect WiFi, How much distance is it?
@ForceTronics
@ForceTronics 5 років тому
The Android operating system does not determine WiFi range. The hardware it is running does. You would have to check the specs of your Android hardware. There maybe common standards for smart phone wifi range, but if there is I don't know them
@emmanuel1631
@emmanuel1631 4 роки тому
Nice tutorial Q:will it work without mobile data, Just using mobile wifi Hotspot?
@ForceTronics
@ForceTronics 4 роки тому
Yes you can use WIFI
@prosti7875
@prosti7875 5 років тому
then I connected it to another wifi and it worked
@gachingoy
@gachingoy 4 роки тому
android phone should be the server. How are you going to control multiple mcus
@therealblujuice
@therealblujuice 5 років тому
Anyway to do this connecting directly to your phone instead of through a router?
@ForceTronics
@ForceTronics 5 років тому
That would be a Bluetooth use case versus a WiFi use case. Unless the device you are connecting to is an access point then this will not work. I would suggest researching WiFi and Ethernet network basics to understand the benefits and limitations in these types of networks.
@user-dh2kd3sh8f
@user-dh2kd3sh8f 3 роки тому
can you control your wifi enabled arduino from everywhere as long as it connected to internet?
@MitsuMyth
@MitsuMyth 3 роки тому
Yes
@markusenglmaier6796
@markusenglmaier6796 6 років тому
which kind of board i have to chose in my arduino software?
@ForceTronics
@ForceTronics 6 років тому
In the example I use the MKR1000 board. You should be able to use any board or shield that works with the WiFi101 library.
@huntingtimes5474
@huntingtimes5474 2 роки тому
Sir, could you check out the pard 007 and allow me to know how I can press forward to making an open wifi app? If you could it would be highly appreciated.
@ozumbachris8297
@ozumbachris8297 Рік тому
How can we access Arduino using another Arduino for accessing rather than using the phone, like having an Arduino send message to another Arduino through the internet, like using the Arduino as a remote controller
@ForceTronics
@ForceTronics Рік тому
I don't have a video on that topic, but I am sure if you search UKposts or the internet you can find a tutorial that will help you out
@alvin8871
@alvin8871 7 років тому
The arduino program logic and MIT APP program logic need to match?
@ForceTronics
@ForceTronics 7 років тому
I do not understand your question, please provide more detail on what you are asking. If it is a specific part of the video please provide a time stamp.
@alvin8871
@alvin8871 7 років тому
For example: I would like to write control logic(the pump base on high low levels to control on/off). For the Arduino, I need to written pump control logic? For MIT app block editor also need to drawings pump logic?
@alvin8871
@alvin8871 7 років тому
Base on the high low level signal to control pump on/off status, can you make a program code and seed to me?Or other base program code to learning. Thank
@ForceTronics
@ForceTronics 7 років тому
Yes you would to alter the code for both Arduino and the MIT app inventor to meet your custom needs. What I provide in this video is just meant to be an example for you to build on or customize for your own particular application. No I will not make custom code for you.
@brunoramosvieira5333
@brunoramosvieira5333 3 роки тому
I can use this sketch to control an ESP32 instead Arduino?
@ForceTronics
@ForceTronics 3 роки тому
No, different wifi libraries
@caribbeanchild
@caribbeanchild 4 роки тому
just open a port on your router
@khattaraslimane
@khattaraslimane 7 років тому
Please tell us if that is working with the ESP8622 wifi module arduino or not... thanks a lot
@ForceTronics
@ForceTronics 7 років тому
The Arduino code will not work on the ESP8622 because the MKR1000 and ESP8266 use different WiFi libraries. You can refer to this series to see an example with the ESP8266 ukposts.info/have/v-deo/kpqbnX6Bim6drWQ.html
@TheCronos83
@TheCronos83 7 років тому
So, please, can you tell me, what is the libraries needed to do the same program as this video, but with an ESP8266 ?Thank's you :p
@ForceTronics
@ForceTronics 7 років тому
Go to the Arduino IDE and find the ESP8266 example programs. Those examples will show you the libraries to use. Also if you follow the link from the above post I show the libraries in a different video.
@TheCronos83
@TheCronos83 7 років тому
Thank's you ;)
@khattaraslimane
@khattaraslimane 7 років тому
ForceTronics thank's a loot
@prosti7875
@prosti7875 5 років тому
I tried to connect my mkr1000 to the wifi and I put in my ssid and password but it doesn't connect can somebody help me
@tottyamadeus591
@tottyamadeus591 4 роки тому
Maybe the port 80 in your wifi is not open
@uniquetechchip8985
@uniquetechchip8985 6 років тому
👌
@robertmaceda996
@robertmaceda996 5 років тому
can this be used with a wemos d1 r1 board?
@ForceTronics
@ForceTronics 5 років тому
I am not familiar with the wemos d1 r1. If your asking whether the code is compatible my guess is no
@camerateur704
@camerateur704 4 роки тому
Do you know how you could do this with Android Studio instead?
@ForceTronics
@ForceTronics 4 роки тому
No I don't have code for the app that can be plugged into Android Studio
@labidiahmeddhia1895
@labidiahmeddhia1895 4 роки тому
hey does controlling the card via wifi works in long distances?
@ForceTronics
@ForceTronics 4 роки тому
I am not sure I understand your question. But WiFi has a range (often dependent on the router you are using) and if you are beyond that range you can't use WiFi. You can use the cellular infrastructure as long as you are in range of a cell tower.
@labidiahmeddhia1895
@labidiahmeddhia1895 4 роки тому
@@ForceTronics ah so to cover that problem i can put a mobile rooter fixed on the robot. and i connect to another rooter and send the commands via the IP adress of the robot. I can do that right?
@tanoshihiro
@tanoshihiro 5 років тому
Can we use esp for connecting the arduino to the app??
@ForceTronics
@ForceTronics 5 років тому
Yes but you will need to change code since ESP uses different WiFi library
@rexsace7104
@rexsace7104 4 роки тому
How about using ESP8266? Will it work using your code?
@nuovovideo
@nuovovideo 5 років тому
does it works with esp8266? or library are not compatible
@ForceTronics
@ForceTronics 5 років тому
I believe the esp uses a different wifi library so you would need to adjust code to handle that library
@Dyowed
@Dyowed 6 років тому
Newbie here sir! Does this code will word for wifi modules?
@ForceTronics
@ForceTronics 6 років тому
I am not sure what WiFi modules you are referring to
@Dyowed
@Dyowed 6 років тому
Esp8266?
@Dyowed
@Dyowed 6 років тому
btw. Thanks for the response sir!
@ForceTronics
@ForceTronics 6 років тому
No the ESP8266 uses a different WiFi library then the MKR1000 and WiFi shield. You would have to go in a change the libraries and possibly how some of the WiFi objects are used. I have various videos that show example code for the ESP8266 in this playlist if you are interested: ukposts.info/have/v-deo/knhoqZycpIZpxmQ.html
@Dyowed
@Dyowed 6 років тому
Oh Ok sir! Im just starting to study arduino sir. Thank you so much sir! I just want to control a servo using mobile phone ( Mit app inventor.)
@quickfixengineeringltd8035
@quickfixengineeringltd8035 3 роки тому
That MKR arduino looks like ESP32
@arduinostudioteam3615
@arduinostudioteam3615 2 роки тому
You can do it on Android with Arduino Studio app.
@muhdamiruddin6928
@muhdamiruddin6928 4 роки тому
can i use this with esp32 cause my project does not used arduino
@ForceTronics
@ForceTronics 4 роки тому
This example was done in the Arduino programming environment. If your using a different programming environment then you will need to change the code
@muhdamiruddin6928
@muhdamiruddin6928 4 роки тому
@@ForceTronics so if i want to change code...do u have example code for esp32
@muhdamiruddin6928
@muhdamiruddin6928 4 роки тому
and is arduino has a wifi module?
@nandyhaaru9298
@nandyhaaru9298 5 років тому
What should I do if i need to display value of temperature from temperature sensor in this app?..Anyone help pls :(
@Ddfamilia
@Ddfamilia 5 років тому
Based on the example showed, all you need to do is to hook up your temperature sensor where A0 is connected. Instead of having 5 V on A0 you should have whatever you are using for temperature measuring plus the proper scaling using the app inventor math functions. Remember that Arduino is only displaying the equivalent 0-1026 decimal value based on 0-5 V in A0, you are responsible for scaling that value based on your sensor temperature to voltage curve.
@anubhavsingh9049
@anubhavsingh9049 5 років тому
can we send image from esp8266 to android ?
@ForceTronics
@ForceTronics 5 років тому
I am sure you can but you will need to research the best way. If there is no existing software library then it will probably take some work to create your own
@jamessinadjan5
@jamessinadjan5 6 років тому
can i ask for the code in the arduino ide please?
@ForceTronics
@ForceTronics 6 років тому
Link to the code on my blog is in the video description
@Your1Click
@Your1Click 6 років тому
how to send serial data to arduino??
@ForceTronics
@ForceTronics 6 років тому
There is no virtual Serial port over WiFi as far as I know (if you find a way let me know). There is a virtual serial port for Bluetooth
@Your1Click
@Your1Click 6 років тому
and how to find the ip address of that esp8266 device ??
@simsim-mh4ky
@simsim-mh4ky 6 років тому
how to do that with arduino uno and wifi shiled ??
@ForceTronics
@ForceTronics 6 років тому
this tutorial uses the same WiFi library that is compatible with both the MKR1000 and the Arduino WiFi Shield so this code should work with the WiFi Shield. But I don't own the WiFi Shield so I did not test it with the Shield and I cannot answer any questions related to the WiFi Shield because I am not familiar with it
@mohamedsr5817
@mohamedsr5817 2 роки тому
Thx for no music
@zh8905
@zh8905 3 роки тому
i have solution to static ip address in esp8227
@medoarts270
@medoarts270 5 років тому
where the wifi code i can't download it doesn't works
@ForceTronics
@ForceTronics 5 років тому
I just tried both links and they worked fine. Not sure why they didn't work for you
@krutharthchickmagalur6211
@krutharthchickmagalur6211 7 років тому
wheres the code??
@ForceTronics
@ForceTronics 7 років тому
If you are looking for the Android app code there is a link to it in the video description. If you are looking for the Arduino code follow the link to my blog (link is in video description). If you are having trouble finding the blog post with the code use the search function and type in the name of the video to find it.
@LongTin-hr7ge
@LongTin-hr7ge 5 років тому
how to find the wifi IP?
@ForceTronics
@ForceTronics 5 років тому
If your router has a built-in web page you can get IP addresses for all connected devices there
@ForceTronics
@ForceTronics 5 років тому
If your router has a built-in web page you can get IP addresses for all connected devices there
@manarkhachi5841
@manarkhachi5841 7 років тому
please con you send me your email , if it's possible?
@duncanyoung8688
@duncanyoung8688 6 років тому
All links broken as per usual
@ForceTronics
@ForceTronics 6 років тому
Really? I just tested both the links in the video description and they worked for me
@raghuannavarapu9982
@raghuannavarapu9982 4 роки тому
dont be exited .we have to scan qr code when u close that apllication .how long will run that app in our background.waste of time read something useful
@ForceTronics
@ForceTronics 4 роки тому
You only have to scan QR code during development. Once your done with the development work you can convert it to a standalone app. Please don't spread misinformation
@tommipekkala7522
@tommipekkala7522 7 років тому
Really nice tutorial! I want to control my home stereo amplifier with an android app and MKR1000 seems perfect for that! Also thanks for the tip of using the MIT compliler for the app itself!
@friskasianturi3436
@friskasianturi3436 5 років тому
Hello, if i wanna sent character 's' to the arduino. how should i make the blocks?
@ForceTronics
@ForceTronics 5 років тому
Just do some basic tutorials on MIT App Inventor and you will figure it out
Combining Arduino, Android, and the Cloud Part 1
16:03
ForceTronics
Переглядів 49 тис.
Create your own App! Control an ESP32 (Arduino) via Bluetooth - Part 1
18:18
skibidi toilet 73 (part 1)
04:46
DaFuq!?Boom!
Переглядів 30 млн
BRAWLER MUTATIONS WILL BREAK THE GAME! - Brawl Talk
09:34
Brawl Stars
Переглядів 25 млн
How to create  own Android App to control Arduino LED
16:02
TexoBot
Переглядів 100 тис.
ESP8266 + Arduino + database - Control Anything from Anywhere
13:51
Electronoobs
Переглядів 616 тис.
15 Brilliant IoT Projects for Beginners!
9:25
ToP Projects Compilation
Переглядів 750 тис.
You can learn Arduino in 15 minutes.
16:34
Afrotechmods
Переглядів 9 млн
A quick look at my homelab.
4:56
Jeff Sponaugle
Переглядів 103 тис.
skibidi toilet 73 (part 1)
04:46
DaFuq!?Boom!
Переглядів 30 млн