android app development

Android app development to control Arduino over Bluetooth using Android Studio

Last Updated on May 11, 2026 by Engr. Shahzada Fahad

Android App Development:

Android app development– So far I have been using Android applications to control Arduino over Bluetooth. I will share the links of all the projects in which I have used the android applications. Due to a lot of requests from my subscribers and followers on my YouTube channel “Electronic Clinic” to explain how to create your own android application. Finally, I decided to share with you the knowledge, how to develop your own Android app to control Arduino.


 

 

For the best understanding and easy follow-up, I am going to control an LED from the android cell phone app. In this tutorial I will add two buttons in the app, one button will be used to turn on the LED and the other button will be used to turn off the LED. Later after understanding the basics then you can add multiple buttons and you can simply copy and paste the code the only difference will be in the ID, which you will see in the programming.

In this tutorial I am going to use a lot of pictures and I will try to explain everything, so this Tutorial can be a bit longer, but trust me if you follow all the steps and read this article, at the end you will be able to make your own Android app to control anything you want. Enough with the introduction, without any further delay, let’s get started!!!

The software’s used:

  1. The Software used for the Android app development
    • Android Studio
  2. Arduino IDE

About the Android Studio:

Android studio is one of the most commonly used software used for android app development which includes designing and programming. Before you follow this tutorial you should have some basic knowledge of how to use the Android studio. Otherwise, It can be really confusing for you. My recommendation is first you should follow some basic tutorials and then you can resume from here.

Before we start the android app development, first of all, I would like to explain the circuit diagram and Arduino programming. Because we can only design a good android application if we know exactly for what purpose we are making this application.

Circuit Diagram:

android app development

This is a very basic circuit diagram designed in CadeSoft Eagle 9.1.0 version. If you want to learn how to make a schematic and PCB then watch my tutorial given in the related projects section at the end.

An LED is connected with Pin number 13 of the Arduino through 330-ohm resistor. This is a 2.5v LED and that’s why I connected this current limiting resistor. If you have a 5v LED then there is no need to connect this resistor. In Video you will see I am not using this resistor as the led I am using is 5v. The main reason I added 2.5v LED in the circuit diagram is that this led is very commonly available. It really doesn’t matter if you use a 2.5v LED or a 5v led or even if you add a relay to control a 220 Vac bulb, it will have no effect on the programming.


 

 

On the left side, you can see a Bluetooth module, you can use HC-05 or HC-06 Bluetooth Module. If you are using a Bluetooth for the first time then you can watch my getting started tutorial on the Bluetooth module available in the related projects section. The Bluetooth module Tx and Rx pins are connected with the Arduino’s pin number 2 and pin number 3. Pin number and pin number 3 will be used as the Serial Port, which will be defined in the programming. While the VCC and GND are connected with the Arduino’s 5v and GND.

Arduino Bluetooth Programming:

Arduino Program Explanation:

As you know my friends in Arduino Uno we have only one Serial port which is available on pin number 0 and pin number 1. As I always say never use these pins with any Serial communication supported devices. The Arduino’s default Serial Port should only be used for debugging purposes. You can always define other Serial Ports using the SoftwareSerial library. So that’s the reason I added the SoftwareSerial.h header file.

I defined a Serial Port with the name Blue on pin number 2 and pin number 3 of the Arduino. The pin number is the Rx while Pin number 3 is the Tx.

On the third line, I defined a variable data of the type long int. This variable will be used to store the number which is sent from the Android cell phone.

 

 

LED is connected with pin number 13 of the Arduino.

Then I defined two variables password1 and password2 of the type long integer. The number 92 is used to turn on the led while 79 is used to turn off the led. This led can be replaced with a relay, this way you will be able to control anything you want.

Then in the void setup function, I set the LED as output and set it to off state using the digitalwrite function. low means off and High means ON.

To activate the serial communication I used the Serial.begin() function while 9600 is the baud rate and similarly for the Bluetooth module.  then starts the void loop function.

while(Blue.available()==0) ;

this line means that if the Bluetooth module has not received any data from the android cell phone then simply wait here.

if(Blue.available()>0)

this condition means if the Bluetooth module has received data from the android cell phone then store the received number in variable data and then using the if conditions the number stored in variable data is compared with the password1 and password2. If the number is equal to the password1 then the LED is turned ON and if the number stored in data is equal to password2 then the led is turned OFF. So that’s all about the Arduino’s programming.

Android app development:

First off all, open the Android Studio.

android app development


 

 

Click on Start a new Android Studio project

android app development

While the Choose your project form is open.

Select empty activity and click on the next button

android app development

After you click on the Next button, the configure your project form is opened, over here you set the project name, package name and you can select a directory where you want to store the application. Make sure the language is set to Java. So after you are done then you can click on the Finish button.

android app development

 

 

Wait for app synchronization

android app development

When your project is fully synchronized, as you can see the green dots in the following picture which is an indication that the synchronization is completed and we are ready for the next step.

android app development

Now we will make a layout for the Search and connect buttons. The search button will be used for searching the Bluetooth module and the connect button will be used to connect with the paired Bluetooth module.

For this click on the small arrow symbol given with the lightcontrol and find the Res and click on the small arrow to expand it, under the res then click on the layout to expand it and click on the activity_main.xml this will open the design screen.

android app development

 

 

The design screen is opened. Click on the small arrow in front of the java to expand it and then click on the MainActivity.
android app development

Now change the layout form constraint layout to linearlayout

android app development

As you can see in the picture below.

android app development

 

 

Now we make another linear layout within the main linearlayout

To create a button in xml we use the button attribute having some property which you can adjust as per your requirements.

android app development

To check the design layout for this change from text mode to the design. As you can see at the end of the coding there are two buttons with captions Design and Text. You can click on the Design button. As you can see the mouse cursor.

android app development

android app development


 

 

Now again click on the text button to open the coding. As in this App I am going to use only two buttons. So I can simply copy and paste the code and will change the caption of the button from search to connect.

android app development

Now if again you click on the design button you will see now two buttons are added.

 

android app development

 

It’s a good programming practice to keep checking your design layout as you continue to program. So now we are done with two buttons with captions search and connect. Now we will add the code for the paired device, for this, we use the listview attribute.

android app development

 

 

Click on the Design button to check.

android app development

Now open the mainActivity.java class

android app development

Change the appcompatActivity to Activity

android app development

 

 

android app development

Now you can follow the following pictures

android app development

Now create a java class

android app development

 

 

Enter the name as the ActivityHelper and click ok

android app development

android app development

ActivityHelper.java  Code:

android app development

Now create the second java class

android app development


 

 

Enter class name as the preferrencesActivity and click ok

android app development

android app development

android app development

 

 

PreferrencesActivity.java Code

Now open again MainActivity.java

android app development

 

PCBWay:

PCBWay is a trusted leader in the PCB industry, offering custom-designed boards at competitive prices to suit projects of all sizes—from basic to highly specialized.

Whether you’re working with standard FR-4 or need advanced solutions like Rogers, HDI, or Flexible and Rigid-Flex boards, PCBWay provides high-quality options without the high cost. Get an instant quote at pcbway.com/orderonline.

Curious about what others are creating? Explore innovative projects and ideas from the PCB community on PCBWay’s open-source platform at pcbway.com/project/.

MainActivity.java Code

To remove  this error just click on the red bulb and select create id value resource

android app development

 

 

And then click ok

android app development

Now remove this error click on red bulb and click on create layout resource file

android app development

And the click ok

android app development


 

 

So now you can see the list_item.xml is created

android app development

Open list_item.xml file and paste this code

Now you see all red error are removed.

android app development

Now we create the main controlling screen, for this right click on package folder

Then New

Then Activity

And click on the Empty Activity

android app development

 

 

Open  activity_controlling.xml

android app development

Now change the layout form constraint layout to RelativeLayout

android app development

 

android app development

Open activity_controlling.xml and switch form text to design mode

android app development

Create button  id on

android app development

 

 

android app development

Copy the same code and paste and change the id and name

android app development

Now open the Controlling.java class

android app development

android app development


 

 

Controlling.java code

Don’t forget to add the bluetooth permission in manifest.xml before you creat the APK file.

android app development

 

 

We are done with the designing and coding. Now the next step is to create the APK file.

Create .apk file:

Click on the build menu then hover the mouse on build bundle/(apk) and click on the build apk

android app development

And then wait for around one minute depending on your laptop or computer processing speed.

android app development

After generating the apk file then click on locate and transfer the app-debug.apk to phone and install

android app development


 

 

Download:

Download apk file:  light controlling apk

For the android app testing watch video given below.

Watch Video on YouTube:

How to create an Android app with Android Studio to control LED using Arduino

 

Android app Bluetooth related Projects:

 

 

Troubleshooting — Common Problems When Building This Project

Problem 1: The Android app is installed on the phone but it cannot find or connect to the HC-05 Bluetooth module

This is the single most reported problem with any Bluetooth Arduino project and almost every time it comes down to pairing and permissions rather than any fault in the code.

Before your app can connect to the HC-05, the module must first be paired with your phone through the Android Bluetooth settings — not through the app. Go to Settings, then Bluetooth, and scan for devices. You should see HC-05 appear. Tap it and enter the pairing code which is 1234 by default. Some modules use 0000. Once paired, close the settings and open your app. Now it should find and connect to the HC-05 successfully.

If you are running Android 12 or Android 13 on your phone, there is an additional issue. Google added new Bluetooth permissions in these versions — BLUETOOTH_CONNECT and BLUETOOTH_SCAN — which older tutorials do not mention because they were written before these versions existed. If your app targets API level 31 or higher and you did not declare these permissions in your AndroidManifest.xml file, the app will crash or silently fail to connect. Add these permissions and also request them at runtime using ActivityCompat.requestPermissions before trying to connect.

Problem 2: The HC-05 is paired and the app connects but the Arduino is not responding to button presses

The connection is established — you can see the HC-05 LED blinking at a slower rate which confirms it is connected — but pressing the ON or OFF button does nothing on the Arduino side.

First thing to check is the baud rate. In the Arduino code, the SoftwareSerial is initialized at 9600 baud rate. The HC-05 module must also be set to 9600. By default the HC-05 comes set to 9600 so this usually matches, but if someone previously changed it using AT commands it might be different. To confirm, put the HC-05 into AT command mode by holding the button on the module while powering it up. Open the Serial Monitor at 38400 baud and type AT. If you get OK back, then type AT+UART? to see the current baud rate setting.

Second thing to check is whether the TX and RX pins are correctly connected. The TX pin of the HC-05 goes to the RX pin defined in SoftwareSerial in your code and the RX pin of HC-05 goes to the TX. Getting these crossed is extremely common and results in the Arduino never receiving any data.

Third, make sure the passwords in the Android app code match exactly what is in the Arduino code. In the tutorial the value 92 turns the LED on and 79 turns it off. If you changed these values on the Arduino side but forgot to update them in the Android app, or vice versa, nothing will happen.

Problem 3: Android Studio is showing Gradle build errors and the project will not compile

Opening someone else’s Android Studio project or following along with an older tutorial often produces Gradle errors because Android Studio updates frequently and older project configurations become incompatible.

The most common errors are related to the Gradle version, the compileSdkVersion, and the targetSdkVersion being outdated. When you open the project, Android Studio will usually show a yellow bar at the top offering to upgrade the Gradle version automatically. Click that and let it upgrade. In most cases this alone fixes the build errors.

If errors persist, go to File then Project Structure then check that the Compile SDK Version matches the latest Android SDK you have installed. Also check that the Build Tools version is up to date. Go to Tools then SDK Manager and make sure the latest SDK build tools are installed.

For beginners, the cleanest approach is to create a brand new Android Studio project using the latest Empty Activity template, then copy only the Java code and the button layout from the tutorial into your new project rather than trying to fix an old one. Starting fresh with a current template avoids almost all Gradle compatibility headaches.

Problem 4: The app works fine in the emulator but crashes on a real phone

The Android emulator does not have real Bluetooth hardware. If your app appears to work in the emulator that is actually suspicious — Bluetooth functions in the emulator are simulated and do not reflect real behavior. Always test Bluetooth apps on a real physical Android device.

When the app crashes on a real phone, enable USB debugging on your phone, connect it to your computer, and in Android Studio go to Logcat. Run the app and watch the red error messages when it crashes. The error message will tell you exactly which line of code caused the crash and why. NullPointerException on a Bluetooth socket usually means the device was not found before trying to connect. SecurityException means a Bluetooth permission was not granted. These specific messages tell you exactly what to fix.

Problem 5: The Bluetooth connection keeps dropping after 30 seconds or a few minutes

An unstable connection that drops regularly is almost always caused by one of two things — the HC-05 module not getting enough power, or Android’s battery optimization killing the Bluetooth connection in the background.

For the power issue, check that your HC-05 is powered from the Arduino’s 5V pin with a good quality connection. The HC-05 draws up to 40mA during transmission which is fine for the Arduino’s 5V output, but a loose breadboard connection causes intermittent voltage dips that reset the module. Solder the connections or use a dedicated 3.3V regulator for the HC-05 for a more stable supply.

For the Android battery optimization issue, go to your phone’s Settings then Battery then Battery Optimization. Find your app in the list and set it to Not Optimized or Unrestricted. Android aggressively kills background connections to save battery and this directly affects Bluetooth apps that need to stay connected.

Problem 6: I want to add more buttons to control more things but do not know how to scale the code

This is actually the most common question after getting the basic project working. The good news is the code structure is designed to scale easily.

On the Arduino side, each command is just a number. You already have 92 for ON and 79 for OFF. To add a third device, pick any other number — say 85 for relay 2 ON and 66 for relay 2 OFF. Add those if conditions to the Arduino code just like the existing ones. On the Android side, add a new button to your layout in the XML designer, give it a new ID, and in Java copy the existing button click listener code and change the value being sent to your new number. The pattern repeats for every new button you add. There is no limit to how many commands you can add this way.

Frequently Asked Questions

Do I need to know Java to follow this tutorial?

You need a very basic understanding — enough to know what a variable is, how an if statement works, and how to call a function. You do not need to be a professional Java developer. The tutorial in this article walks through every line of the code with a full explanation. If you have never programmed before, spend one afternoon watching a 30-minute Java basics tutorial on YouTube first and everything in this article will make much more sense. Most of the Android app code follows a repetitive pattern — once you understand one button, adding ten more is just copy and paste with small changes.

Can I use HC-06 instead of HC-05 with this project?

Yes, completely interchangeable for this project. The HC-06 and HC-05 use the same AT command set and the same baud rate. The only practical difference is that the HC-06 can only work as a Bluetooth slave — meaning it can only receive connections, it cannot initiate them. The HC-05 can work as both master and slave. For this project where the phone is always the initiating device and the Arduino is always receiving, the HC-06 works perfectly and is sometimes slightly cheaper.

Can I use this same Android app to control an ESP32 or ESP8266 instead of Arduino?

Yes but with a small change. The ESP32 has built-in Bluetooth so you do not need an HC-05 module at all. You use the ESP32’s built-in BluetoothSerial library in your Arduino IDE code and the Android app code stays exactly the same — it still connects to a Bluetooth device and sends numbers. The ESP8266 does not have Bluetooth so you would still need an external HC-05 or HC-06 module with it, wired the same way as the Arduino version.

My phone is an iPhone. Can I use this app on iOS?

Unfortunately no. This tutorial uses Android Studio and the app runs only on Android. iPhone uses a completely different Bluetooth protocol called BLE (Bluetooth Low Energy) and iOS apps are built using Swift or Objective-C in Xcode which is a completely different development environment. The HC-05 and HC-06 modules use classic Bluetooth and are not compatible with iPhone at all. If you specifically need iOS control, you would need to switch to a BLE-compatible module like the HM-10 and build an iOS app separately. For Android users this project works exactly as described.

Is it possible to control the Arduino from a greater distance than the HC-05 allows?

The HC-05 has a typical range of about 10 meters in open space. Walls, furniture, and interference reduce this significantly. If you need longer range, Bluetooth is simply not the right technology for that. For control over hundreds of meters, use LoRa modules as covered in other articles on this site. For control over WiFi within your home from any room, replace the HC-05 with an ESP8266 or ESP32 and build a simple web server — the phone connects through WiFi and the range becomes limited only by your router coverage. For truly remote control over the internet from anywhere in the world, use the Blynk platform with an ESP32 which I have covered in several other projects.

Why are numbers used as commands instead of text like ON and OFF?

This is purely about efficiency and reliability. Sending the text string “ON” over Bluetooth sends two bytes — the letters O and N. Sending the number 92 sends only one byte. On a slow 9600 baud serial connection, fewer bytes means faster response. More importantly, single byte commands are less likely to be corrupted during transmission. Text strings can also cause confusion with newline characters or spaces that get accidentally added. Numbers are clean, simple, and unambiguous. This is the same approach used in professional serial communication protocols — keep the command set as small and simple as possible.

If you run into a specific error in Android Studio or a connection issue that is not listed here, paste the exact error message in the comments below and I will help you figure out what is going wrong.


Discover more from Electronic Clinic

Subscribe to get the latest posts sent to your email.

Engr. Shahzada Fahad

Engr. Shahzada Fahad is an Electrical Engineer with over 15 years of hands-on experience in electronics design, programming, and PCB development. He specializes in microcontrollers (Arduino, ESP32, STM32, Raspberry Pi), robotics, and IoT systems. He is the founder and lead author at Electronic Clinic, dedicated to sharing practical knowledge.

Related Articles

54 Comments

  1. thank you very much
    but i have an error at the main activity at line 315:
    Error:(315, 22) error: cannot find symbol variable action_settings

  2. Thank you for this nice tutorial.
    But still have problem with line “case R.id.action_settings:” which I don’t know how to solve.
    @SAVOIU Ioan : Tried to understand your link but didn’t know what to do as they mentionned to create a menu to insert action.settings, but we don’t need a menu so it’s a big mystery for me, also that I’m a newbie on Android Studio. So if someone can help

    1. I have also try to make a new folder named “menu_game” in layout folder and declared inside action_settings. There is no more error in the code but the app still crashes. the debugger gives : “Caused by: java.lang.NullPointerException: Attempt to invoke virtual method ‘void android.widget.ListView.setAdapter(android.widget.ListAdapter)” , the two lines concerned 🙁 initList(new ArrayList()); ) and ( listView.setAdapter(adapter); ). What’s wrong, if someone can answer, I can post codes but waiting for somebody…Please.

      1. Hi, @Mastaf, You did not need Setting. comment or remove that function

        ( @Override
        public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
        case R.id.action_settings:
        Intent intent = new Intent(MainActivity.this, PreferencesActivity.class);
        startActivityForResult(intent, SETTINGS);
        break;
        }
        return super.onOptionsItemSelected(item);
        } )

  3. Thanks for your answer Yamee Roar, I do understand know that is was for the ActionBar with the icon “settings” 😉 If you don’t setup the ActionBar with this variable, it’s unused…

  4. Is it possible you can leave us a copy of the entire project? For some reason the The project does not seem to work when I try and build it.

      1. So ive spent like multiple hours trying to figure what I am doing wrong. I can get the app to start but whenever I try to connect through Bluetooth the app crashes. The main issue I had with the code is the action_settings variable which I would comment out because I would get the error stating it was never declared. Would you by any chance know what the issue is?

          1. I am really not sure. The app keeps crashing. If you are able to leave a copy of the project it would be greatly appreciated.

  5. Dear Sir;
    thank you so much for your grear tutorial. I run correctly the code in my phone, but when i execute the app and touch search button, it doesn’t recognize and device, can you please help?

  6. Hallo thanks for this tutorial. I have Problem with “android.support.v7.app.AppCompatActivity; does not exist” i’m using sdkversion 29.

    1. replace this : import android.support.v7.app.AppCompatActivity;
      by this : import androidx.appcompat.app.AppCompatActivity;

  7. I have Problem with:
    java.lang.NullPointerException: Attempt to invoke virtual method ‘android.widget.ListAdapter android.widget.ListView.getAdapter()’ on a null object reference
    I can’t solve it. can you help me

  8. Hi, I have a problem when I tried to turn the light on with the app. I’ve double checked the wiring already so i thought it was my coding. therefore, i downloaded the apk with the link provided. It is still not working. Everything was fine like i can connect the bluetooth but when i touch the light on button, the led light was not responding. Also, i tried to use 330 ohm resistor as well.

    1. This is a fully tested project. IF for you even the APK file is not working, Then there must be some other problem with your hardware. Are you sure your Bluetooth module is ok? the wires are connected in the proper way?

  9. Just solved the problem with MainActivity errors (listview and action_settings)

    listview ERROR:

    Add into activity_main -> “android:id=”@+id/listview”

    action_settings ERROR:

    As the link that SAVOIU Ioan post, create the menu with the code:

    It should be already fixed

  10. Nice tutorial. Had to do some modifications to get it working, but I got it. Didn`t try to connect to bluetooth adapter as I must get it first tho.
    1.) Follow link posted by SAVOIU Ioan to solve action_settings problem.

    2.) replace this : import android.support.v7.app.AppCompatActivity;
    by this : import androidx.appcompat.app.AppCompatActivity;

    (Do this, posted by Tuday to solve “android.support.v7.app.AppCompatActivity; does not exist” problem).

    After that app should work, but one problem remains.
    If you press connect button with nothing selected from bluetooth device list app will crash. I`m picky so I worked on solution:

    In MainActivity.java add this line:

    connect.setEnabled(false);

    right after:
    search = (Button) findViewById(R.id.search);
    connect = (Button) findViewById(R.id.connect);

    so you get:
    search = (Button) findViewById(R.id.search);
    connect = (Button) findViewById(R.id.connect);
    connect.setEnabled(false);

    This will disable connect button if no device is selected from the list and prevent app from crashing.

    Thank you

  11. @Override
    public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
    case R.id.action_settings:
    Intent intent = new Intent(MainActivity.this, PreferencesActivity.class);
    startActivityForResult(intent, SETTINGS);
    break;
    }
    return super.onOptionsItemSelected(item);
    }
    }

    I’m having an issue with this: “Cannot find symbol variable action_settings
    Can you please help?

  12. @Override
    public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
    case R.id.action_settings:
    Intent intent = new Intent(MainActivity.this, PreferencesActivity.class);
    startActivityForResult(intent, SETTINGS);
    break;
    }

    Error: cannot find symbol variable action_settings
    Please help

  13. @Override
    public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
    case R.id.action_settings:
    Intent intent = new Intent(MainActivity.this, PreferencesActivity.class);
    startActivityForResult(intent, SETTINGS);
    break;
    }
    return super.onOptionsItemSelected(item);
    }

    error: cannot find symbol variable action_settings

  14. I have problem with the code it says I cannot resolve symbol R, I don’t know what this R do and what is it so I cant find the solution anyone might help?:(

  15. Which line of main activity should I add?
    connect.setEnabled(false);

    right after:
    search = (Button) findViewById(R.id.search);
    connect = (Button) findViewById(R.id.connect);

    so you get:
    search = (Button) findViewById(R.id.search);
    connect = (Button) findViewById(R.id.connect);
    connect.setEnabled(false);

  16. Im having an error, for some reason the app crashes when i touch the “search” button, it dosent say anything about any error on android studio, does anybody know how to fix this?

  17. Hi after creating the list_item.xml file you said all errors has been gone, but i still have 5 errors in the code, can you please help me out.
    3 of them required bluetooth permission when i click on the red bulb and then click again and gave the premission the error has gone,
    but 1 error remains and it is on line 101 about controlling.class,
    it say ” cannot resolve ‘controlling'”.
    and when i clicked on the red bulb it shows me the 4 ways which are
    create class
    create enum
    create inner class
    create interface

    what should i do now??

  18. ok,it is good , i like it, it can help me
    Im having an error, for some reason the app crashes when i touch the “search” button, it dosent say anything about any error on android studio, does anybody know how to fix this

  19. Hello hope you are doing well. Can you please explain you have specifically taken password1 as 92 and password2 as 79? is there a reason or I can change the numbers according to my choice

  20. How did you get around the bluetooth connection issue. startActivity has been deprecated… Whats the fix to the code??? Thanks.

  21. Hello, I was able to follow your code and installed it to my android. but when I click/touch the search button it crashes and exit? I tried to other phones and its the same. does anyone here encountered it?

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button

Discover more from Electronic Clinic

Subscribe now to keep reading and get access to the full archive.

Continue reading

Electronic Clinic
Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.