element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum Could anyone help me out with  the Raspi Zero and BMP085?
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Suggested Answer
  • Replies 7 replies
  • Answers 3 answers
  • Subscribers 665 subscribers
  • Views 2672 views
  • Users 0 members are here
  • rasberry pi
  • rasberry pi zero
  • raspberry_pi
  • bmp085
  • assistance
Related

Could anyone help me out with  the Raspi Zero and BMP085?

cagan
cagan over 4 years ago

Hello! I've been working with a Rasberry Pi zero for the past couple weeks, following a tutorial to interface with a Barometer sensor (the BMP 085,) and I've ran into a bit of a snag.
The sensor works, everything works electrically, I'm sure, that's more my background, but I'm not sure the code is set up right, or if the Pi can even tell something is connected.
When I try to run a sample code provided with files I didn't get from the tutorial (I found them on Adafruit's site) I get the following error:

Traceback (most recent call last):

File "simpletest.py", line 48, in <module>

print('Temp = {0:0.2f} *C'.format(sensor.read_temperature()))

File "build.bdist.linux-armv6l/egg/Adafruit_BMP/BMPO85.py", line 143, in read_

temperature

ZeroDivisionError: integer division or modulo by zero


I don't know any Python, just Java, so any help with interpreting this stuff and possibly fixing it would be wonderful, I'll leave links to Imgur images of my setup, with the third images containing my issue.

Here's a link to the tutorial:
https://tutorials-raspberrypi.com/raspberry-pi-and-i2c-air-pressure-sensor-bmp180/

https://imgur.com/mg8mWpx

This is the sensor.

https://imgur.com/YoDkQlo
This is the wiring setup, the blue wire on the top right will be replaced later, I just haven't had the chance to solder more pins onto the holes.

https://imgur.com/kctV6RP
This is me attempting to run a sample code provided to me from the tutorial, with the errors in question.



  • Sign in to reply
  • Cancel
Parents
  • ronaldgevern
    0 ronaldgevern over 3 years ago
    cagan said:
    ZeroDivisionError: integer division or modulo by zero

    The super class of ZeroDivisionError is ArithmeticError. This exception raised when the second argument of a division or modulo operation is zero. In Mathematics, when a number is divided by a zero, the result is an infinite number. It is impossible to write an Infinite number physically. Python interpreter throws “ZeroDivisionError: division by zero” error if the result is infinite number. While implementing any program logic and there is division operation make sure always handle ArithmeticError or ZeroDivisionError so that program will not terminate.

    try:
    z = x / y
    except ZeroDivisionError:
    z = 0

    Or check before you do the division:

    if y == 0:
    z = 0
    else:
    z = x / y

    The latter can be reduced to:

    z = 0 if y == 0 else (x / y)

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • ronaldgevern
    0 ronaldgevern over 3 years ago
    cagan said:
    ZeroDivisionError: integer division or modulo by zero

    The super class of ZeroDivisionError is ArithmeticError. This exception raised when the second argument of a division or modulo operation is zero. In Mathematics, when a number is divided by a zero, the result is an infinite number. It is impossible to write an Infinite number physically. Python interpreter throws “ZeroDivisionError: division by zero” error if the result is infinite number. While implementing any program logic and there is division operation make sure always handle ArithmeticError or ZeroDivisionError so that program will not terminate.

    try:
    z = x / y
    except ZeroDivisionError:
    z = 0

    Or check before you do the division:

    if y == 0:
    z = 0
    else:
    z = x / y

    The latter can be reduced to:

    z = 0 if y == 0 else (x / y)

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube