Skip to main content

CircuitPython driver library for the AS3935 lightning detector.

Project description

Introduction

Documentation Status Discord Build Status Code Style: Black

A CircuitPython driver library for the Franklin AS3935 lightning detector. The driver supports connections via SPI and I2C.

See the AS3935 datasheet for more details of chip operation.

Dependencies

This driver depends on:

Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle or individual libraries can be installed using circup.

Installing from PyPI

On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:

pip3 install adafruit-circuitpython-as3935

To install system-wide (this may be required in some cases):

sudo pip3 install adafruit-circuitpython-as3935

To install in a virtual environment in your current project:

mkdir project-name && cd project-name
python3 -m venv .env
source .env/bin/activate
pip3 install adafruit-circuitpython-as3935

Running The Unittests

To run the unittests on you will need to install Pytest and Pytest Mock.

pip3 install pytest pytest-mock

To install system-wide (this may be required in some cases):

sudo pip3 install pytest pytest-mock

Usage Example

For a SPI connection:

"""Loop and wait for an event.

Note that the sensor only responds to lightning and certain kinds of noise,
so unless it is stormy, there's not much to see here.
"""
import time
import board
import biffobear_as3935

# Edit the chip select and interrupt pins to match the connections to your board

interrupt_pin = board.D7  # Connected to the sensor interrupt pin

# For a SPI connection (recommended)
spi = board.SPI()  # Works for most Adafruit and Blinka boards
cs_pin = board.D5  # Connect to the sensor chip select pin
sensor = biffobear_as3935.AS3935(spi, cs_pin, interrupt_pin=interrupt_pin)

# For an I2C connection
# i2c = board.I2C()  # Works for most Adafruit and Blinka boards
# sensor = biffobear_as3935.AS3935_I2C(i2c, interrupt_pin=interrupt_pin)

while True:
    if sensor.interrupt_set:  # An event has occurred
        # The interrupt_status is cleared after a read, so assign it
        # to a variable in case you need the value later.
        event_type = sensor.interrupt_status
        if event_type == sensor.LIGHTNING:  # It's a lightning event
            print(f"Strike Energy = {sensor.energy}")
            print(f"Distance to storm front = {sensor.distance} km")
        elif event_type == sensor.DISTURBER:
            print("False alarm")
    else:
        print("No event detected")
    # Minimum time between strike events is 1 second so poll frequently!
    time.sleep(0.5)

Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.

Documentation

For information on building library documentation, please check out this guide.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

biffobear-circuitpython-as3935-2.0.3.tar.gz (42.5 kB view details)

Uploaded Source

File details

Details for the file biffobear-circuitpython-as3935-2.0.3.tar.gz.

File metadata

  • Download URL: biffobear-circuitpython-as3935-2.0.3.tar.gz
  • Upload date:
  • Size: 42.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for biffobear-circuitpython-as3935-2.0.3.tar.gz
Algorithm Hash digest
SHA256 2bba754776f9b6af1daa0384474a77e6b2347050a29e94d0a30f14a4e94ca331
MD5 46afc4debfe75b619dee3c8572c53799
BLAKE2b-256 4a836b476e3e20ff99406f1ac6b3bbff9732ef42471f4bca43bc767a6525643c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page