Lightning sensor library It is inherited from https://developer.mbed.org/users/casper/code/AS3935/

Dependents:   BLE_Lightning_sensor

Revision:
0:a1be9313a67a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/AS3935_ext.h	Thu Aug 27 16:15:47 2015 +0000
@@ -0,0 +1,41 @@
+/*
+AS3935_ext.h - AS3935 Franklin Lightning Sensor™ IC by AMS library
+Copyright (c) 2015 T.Naka. All rights reserved.
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 3 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the Free Software
+Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+*/
+
+#ifndef _AS3935_EXT_HPP
+#define _AS3935_EXT_HPP
+
+#include "mbed.h"
+#include "AS3935.hpp"
+
+class AS3935_ext : public AS3935 {
+    private:
+        PinName irq;
+        
+    public:
+        AS3935_ext(PinName sda, PinName scl, int adresse, PinName irq);
+
+        int MeasureLCOFreq();
+        void setIRQ(PinName irqpin);
+        void reset();
+
+
+};
+
+/* !_AS3935_EXT_HPP */
+#endif
\ No newline at end of file