Skip to main content

Smart Weather Station(using Arduino)

 

Smart Weather Station(using Arduino)


A weather station is a facility, either on land or sea, with instruments and equipment for measuring atmospheric conditions to provide information for weather forecasts and to study the weather and climate. The measurements taken include temperature, atmospheric pressure, humidity, wind speed, wind direction, and precipitation amounts. So today we are going to make a working prototype of it which helps us to find the temperature and dew. This project works on the principle of Bluetooth master and slave modes. Come on let’s get started


Step 1: Things Required

  • Arduino x 2
  • HC-05 Bluetooth Module x 2
  • 16x2 LCD Display x 1
  • DHT 11 x 1
  • Breadboard x 2
  • Communication Cable






Step 2: What Is the Bluetooth Master and Slave Mode?


Bluetooth networks (commonly referred to as piconets) use a master/slave model to control when and where devices can send data. In this model, a single master device can be connected to up to seven different slave devices. Any slave device in the piconet can only be connected to a single master. The master coordinates communication throughout the piconet. It can send data to any of its slaves and request data from them as well. Slaves are only allowed to transmit to and receive from their masters. They can't talk to other slaves in the piconet.

Step 3: Converting an HC-05 to Master and Slave Mode:






For this project, we need to configure both modules. To do that we need to switch to AT Command Mode and here’s how we will do that. First, we need to connect the Bluetooth module to the Arduino as given in the circuit schematics. What we need to do additionally is to connect the “EN” pin of the Bluetooth module to 5 volts and also switch the TX and RX pins at the Arduino Board.

SLAVE DEVICE:

Now while holding the small button over the “EN” pin we need to power the module and that’s how we will enter the command mode. If the Bluetooth module led is flashing every 2 seconds that means that we have successfully entered the AT command mode. After this, we need to upload the At Command.ino file to the Arduino but don’t forget to disconnect the RX and TX lines while uploading. Then we need to run the Serial Monitor and there select “Both NL and CR”, as well as, “9600 baud” rate which is the default baud rate of the Bluetooth module. Now we are ready to send commands and their format is as follows. All commands start with “AT”, followed by the “+” sign, then a and they end either with the “?” sign which returns the current value of the parameter or the “=” sign when we want to enter a new value for that parameter. Now we should configure the slave module. So for example, if we type just “AT” which is a test command we should get back the message “OK”. Then if we type “AT+UART?” we should get back the message that shows the default baud rate which is 38400. Then if we type “AT+ROLE?” we will get back a message “+ROLE=0” which means that the Bluetooth device is in slave mode. If we type “AT+ADDR?” we will get back the address of the Bluetooth module and it should look something like this: 98d3:34:905d3f. Now we need to write down this address as we will need it when configuring the master device. Actually, that’s all we need when configuring the slave device, to get its address, although we can change many different parameters like its name, baud rate, pairing password, and so on, but we won’t do that for this example.

MASTER DEVICE:

Ok now let’s move on and configure the other Bluetooth module as a master device. First, we will check the baud rate to make sure it’s the same 38400 as the slave device. Then by typing “AT+ROLE=1” we will set the Bluetooth module as a master device. After this using the “AT+CMODE=0” we will set the connect mode to “fixed address” and using the “AT+BIND=” command we will set the address of the slave device that we previously wrote down. Note here that when writing the address we need to use commas instead of colons. Also note that we could have skipped the previous step if we entered “1” instead of “0” at the “AT+CMODE” command, which makes the master connect to any device in its transmission range but that’s less secure configuration. Here you can find a complete list of commands and parameters: HC-05 AT Commands List

Nevertheless, that’s all we need for a basic configuration of the Bluetooth modules to work as a master and slave devices and now if we reconnect them in normal, data mode, and re-power the modules, in a matter of seconds the master will connect to the slave. Both modules will start flashing every 2 seconds indicating a successful connection.

Step 4: Final Assembly :





Now the Bluetooth part is over. Let us start the final assembly. For this, you need to take the master device and connect it in the following order. And then connect the slave device in the following order. After the connections are over upload the respective .ino files to the respective devices. Don’t forget to remove the RX and TX. And then re-power both the boards after a few seconds both the boards will automatically be connected. You can use any box as a casing for the boards I am using a cardboard box.

Step 5: Working:





Keep the slave unit outdoors and the master unit indoors you can monitor the temperature and dew from indoors without going outdoors.

Follow Me @ https://github.com/sanjus-robotic-studio

And Subscribe to my channel : Sanju's Robotics Studio


Code : LINK





Comments

Popular posts from this blog

Home Automation using Google Firebase

 Home Automation Using Google Firebase Introduction : This is a home automation project which uses firebase and nodeMCU. First why I have chosen Firebase is because it can be maintained easily it has progress report, Crash Analytics etc and exactly it is free of cost so we can use this project to control the lights, fans, TV, etc. So let's get started Supplies: NodeMcu - 1 Nos  Relay Module - 1 Nos  Breadboard - 1 Nos  Male to female jumpers – 3 Nos An internet connection An android phone Step 1: Creating Database First you need to go to  this website  and log in to your Google account.       And click on create a new project    And give your project name and click continue. After a few minutes, it says, “your project is ready “and a continue button appears to click it, the dashboard appears. On the left side database tab will be there click on it.   And slowly scroll down you will see create real-time database button click on it.   It opens a dialog box telling you to choose eithe