The cookie settings on this website are adjusted to allow all cookies so that you have the very best experience. If you continue without changing your cookie settings, we'll assume that you are happy to receive all cookies on our website. However, if you would like to, you can change your settings at any time using the Change cookie settings link in the Special menu. 
    
 
+44 (0)20-84520161 Contact Us
Now FREE Delivery on UK mainland orders over £30+VAT

GY68 Barometric Pressure Sensor module for Arduino BMP180

  • Details

  • Recommended

  • Send

Details

Item Number
GY68
Item Condition
New
Price
£2.50 (inc VAT £3.00)

Options

Quantity


  • 3 Pin DIN Chassis Socket

    3 Pin DIN Chassis Socket

    DIN chassis socket 3 pin with flange

    DC300
    £1.00
  • 5 Pin 180 deg DIN Chassis Socket

    5 Pin 180 deg DIN Chassis Socket

    DIN chassis socket 5 pin 180 deg

    DC518
    £1.00
  • 1.5 Metre Screened Lead joining 2 x 5 pin 180 deg DIN plugs MIDI lead

    1.5 Metre Screened Lead joining 2 x 5 pin 180 deg DIN plugs MIDI lead

    Professional Quality Midi Lead - 5 pin DIN plug to 5 pin DIN plug Lead on 1.5 Metre screened cable. MIDI lead

    The cable is a robust 5mm diameter to ensure long life

     

    L5P1
    £2.75
  • Data Logger Shield with Real Time Clock for Arduino

    Data Logger Shield with Real Time Clock for Arduino

    Data Logger Shield with Real Time Clock for Arduino Uno 

    This Arduino compatible shield allows the logging and storage data from an Arduino project to an SD card.

    Having a built in Real Time Clock (RTC) insures data accuracy over long time periods and at times where your project may suffer from power loss. Supplied with a CR1220 lithium battery. 

    AUDL
    £4.50
  • Photo interrupter module for Arduino KY-010

    Photo interrupter module for Arduino KY-010

    Photointerrupter module for Arduino and other microcontroller projects

     
    This module has an optical slot device and 2 resistors fitted. The sensor will detect if an object is blocking the light between the emitter and receiver in the photointerrupter and can output a digital signal.
     
    Voltage : 3.5 to 5VDC
    Size 19x15mm
    KY010
    £2.50
  • Ultrasonic Ranging Module for Arduino

    Ultrasonic Ranging Module for Arduino

    Ultrasonic ranging module for Arduino and other microcontroller projects

     
    This is a module with a 40kHz ultrasonic transmitter / receiver pair mounted on the front of a small PCB, with the required control circuitry on the back.
    It sends a short 40kHz square wave out, and calculates the distance by recording the time it takes the wave to return to the sensor.
     
    Voltage : 5VDC
    Working Range : 20mm to 4500mm
    Accuracy : 2mm


    Example project: 

     
    HC SR04 Distance Measurement Tool
     
    This article will demonstrate how to build a simple distance measuring device using the HC SR05 ultrasonic sensor board. This project can be used standalone as a way of measuring short distances or, it can be incorporated into other projects that require distance measuring. This sensor works best when the two transceivers are parallel to a solid surface, at a distance between 2cm to 450cm. 
     
    Here’s what you will need:
     
    Tools
    Step 1
    First, you will need to connect the HCSR04 sensor to the Arduino. Simply use the male to female jumper leads to connect the two together as described below and in fig.1:

    HCSR04                                      Arduino
    VCC-----------------------------------------5V
    Trig------------------------------------------D3
    Echo----------------------------------------D2
    GND---------------------------------------GND
     
    Step 2
    Solder the KY1602 module onto the 1602 LCD screen. Pin 1 on the KY1602 module is the one closest to the 4 data and power pins. Once soldered, you can now connect the LCD display to the Arduino as shown in fig. 1.


                                                                                   fig. 1

     

    Step 3
    Connect the Arduino to a computer and install the libraries mentioned above. If you need help installing the libraries, CLICK HERE for a quick tutorial.
     

    Step 4
    You can now start writing the code to get this all working:


    First, clear the IDE window. Then, include the aforementioned libraries:
     
       
    #include <HCSR04.h>
    #include <LCD_I2C.h>
       
    



    Initialize the HCSR04 sensor. The numbers in the brackets correspond to the trigger and echo pins respectively:

       
    HCSR04 hc(3, 2);
       
    

     

    Initialize the KY1602 I2C LCD driver (address 0x27 in this example) and specify the LCD display (in this case 16 characters, 2 rows):

    LCD_I2C lcd(0x27, 16, 2);
       
    


     

    Begin the void setup function. Initialize the LCD screen and turn on the backlight:

       
    void setup()
    {
      lcd.begin();
      lcd.backlight();
    }  
    
    


    Begin the void loop function. Set the cursor to the first character:

    void loop()
    {
        lcd.setCursor(0,0);
    
    


    Print the distance calculated by the sensor on the LCD screen:

        lcd.print(hc.dist());
       
    

     

    Add 100ms delay:

    delay(100);                
    }
       
    

     

    The completed code should look like this:

    #include <HCSR04.h>
    #include <LCD_I2C.h>
    
    HCSR04 hc(3, 2);
    LCD_I2C lcd(0x27, 16, 2);
    
    void setup()
    {
      lcd.begin();
      lcd.backlight();
    }
    
    void loop()
    {
        lcd.setCursor(0,0);
        lcd.print(hc.dist());
        delay(100);                
    }
    
       
    

     

     
    Step 5
    Press the “Upload” button at the top (button with tick, located below “File”). The IDE will now compile the code and upload it to your Arduino (this will take a few moments).
     
    Step 6
    All done! The LCD will now start to display the distance calculated by the sensor.
     

     

    HCSR04
    £2.50
  • 6 Metre Screened Lead joining 2 x 5 pin 180 deg DIN plugs MIDI lead

    6 Metre Screened Lead joining 2 x 5 pin 180 deg DIN plugs MIDI lead

    Professional Quality Midi Lead - 5 pin DIN plug to 5 pin DIN plug Lead on 6 Metre screened cable. MIDI lead

    The cable is a robust 5mm diameter to ensure long life

     

     

    L5P6
    £5.75
  • GY-521 3 Axis Accelerometer Gyroscope module for Arduino MPU-6050

    GY-521 3 Axis Accelerometer Gyroscope module for Arduino MPU-6050

    3 Axis accelerometer and gyroscope module for Arduino and other microcontroller projects

    This module has an MPU-6050 accelerometer and gyroscope IC on a GY-521 breakout board, making it easy to use this amazing sensor.

    The MPU-6050 gives an accurate position and movement data via the standard I2C protocol making it simple to add to your project.

     

    Voltage : 3-5VDC

    Gyroscope Range 250 500 1000 2000 / s

    Acceleration Range : 2 4 8 16g 

    Size 22x16mm

    GY521
    £2.75
  • Tiny RTC - Arduino real time clock module

    Tiny RTC - Arduino real time clock module

    Tiny RTC module  

    This module uses the DS1307 chip, which can be used for keeping time in a very wide variety of projects. For example it can be used to add time stamps to sensor readings, display the time accurately or keep track of time even when there is no power supplied (although it will require a rechargeable CR2032 battery for this). The Tiny RTC supports the I2C protocol, which makes it very easy to interface with many microcontrollers. 
     
    Specs: 
    VCC:  5V DC
    Battery (optional): CR2032
    Power consumption: <500nA (in Battery Backup Mode)
    RAM: 56 Byte, non-volatile
    Memory: 32kb EEPROM
    Dimensions: 27mm x 28mm x 8.4mm
     
    RTC1
    £2.50

Send to Friend

: *
: *
: *
Type the characters you see in the picture:


*

Barometric pressure sensor module for Arduino and other microcontroller projects

 
This tiny module has a BMP180 precision pressure sensor soldered on to a GY-68 breakout board to make it easy to use this amazing sensor. The BMP180 will give you accurate pressure data via the standard I2C protocol making it simple to add to your project.
 
Voltage : 1.8 - 3.6VDC
Preasure Range 300hPa to 1100hPa (-500m to 9000m)
Current consumption 0.5µA
Size 13x10mm

Recently Viewed


Trustpilot