Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Arduino_Sensorkit
version=1.0.8
version=1.0.9
author=Lenard George, Pablo Marquínez
maintainer=Arduino <[email protected]>
sentence=Arduino Sensor Kit
Expand Down
2 changes: 1 addition & 1 deletion src/Arduino_SensorKit.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "Arduino_SensorKit.h"

//Declare component's classes
U8X8_SSD1306_128X64_NONAME_HW_I2C Oled(/* reset=*/ U8X8_PIN_NONE);
U8X8_SSD1306_128X64_NONAME_SW_I2C Oled(/* clock=*/ SCL, /* data=*/ SDA, /* reset=*/ U8X8_PIN_NONE);
DHT Environment(DHTPIN, DHTTYPE);
SensorKit_LIS3DHTR Accelerometer;
SensorKit_BMP280 Pressure;
2 changes: 1 addition & 1 deletion src/Arduino_SensorKit.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#endif

//Make the declared components from the .cpp to the sketch available
extern U8X8_SSD1306_128X64_NONAME_HW_I2C Oled;
extern U8X8_SSD1306_128X64_NONAME_SW_I2C Oled;
extern SensorKit_LIS3DHTR Accelerometer;
extern SensorKit_BMP280 Pressure;
extern DHT Environment;
Expand Down