You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ouki-wang
8337515fb9
|
6 years ago | |
---|---|---|
.. | ||
example | 6 years ago | |
DFRobot_AS3935_Lib.py | 6 years ago | |
README.md | 6 years ago |
README.md
DFRobot_AS3935_Lib.py Library for Raspberry pi
This is the sample code for Gravity:Lightning Sensor, SKU: SEN0292.
Table of Contents
Installation
The Lightning Sensor should work with AS3935 (https://github.com/DFRobot/DFRobot_AS3935/tree/master/RaspberryPi/Python)
Run the program:
$> python DFRobot_AS3935.py
Methods
/*
* @brief Init The Lightning Sensor
*
* @param address I2C address(1~3)
* bus I2C bus
*/
DFRobot_AS3935(address, bus);
/*
* @brief Sensor reset
*/
def reset(self);
/*
* @brief Configure sensor
*
* @param capacitance Antenna tuning capcitance (must be integer multiple of 8, 8 - 120 pf)
* location Indoor/outdoor mode selection
* disturber Enable/disable disturber detection
*/
def manualCal(self, capacitance, location, disturber);
/*
* @brief Get mid-range type
*
* @return 0 Unknown src
* 1 Lightning detected
* 2 Disturber
* 3 Noise level too high
*/
def getInterruptSrc(self);
/*
* @brief get lightning distance
*
* @return unit kilometer
*/
def getLightningDistKm(self);
/*
* @brief get lightning energy intensity
*
* @return lightning energy intensity(0-1000)
*/
def getStrikeEnergyRaw(self);
Credits
Written by DFRobot_JH, 2018. (Welcome to our website)