This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d1_mini_lite.name=WEMOS D1 mini Lite | |
d1_mini_lite.upload.tool=esptool | |
d1_mini_lite.upload.speed=921600 | |
d1_mini_lite.upload.resetmethod=nodemcu | |
d1_mini_lite.upload.maximum_size=434160 | |
d1_mini_lite.upload.maximum_data_size=81920 | |
d1_mini_lite.upload.wait_for_upload_port=true | |
d1_mini_lite.serial.disableDTR=true | |
d1_mini_lite.serial.disableRTS=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# CCS811_RPi | |
# | |
# Petr Lukas | |
# July, 11 2017 | |
# | |
# Version 1.0 | |
import struct, array, time, io, fcntl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <SPI.h> | |
#include <Wire.h> | |
#include <SFE_MicroOLED.h> | |
#include "Adafruit_VEML6070.h" | |
#define PIN_RESET 255 // | |
#define DC_JUMPER 0 // I2C Addres: 0 - 0x3C, 1 - 0x3D | |
MicroOLED oled(PIN_RESET, DC_JUMPER); // Example I2C declaration | |
Adafruit_VEML6070 uv = Adafruit_VEML6070(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <SPI.h> | |
#include <ESP8266WiFi.h> | |
#include <Wire.h> | |
#include <SFE_MicroOLED.h> | |
#define PIN_RESET 255 // | |
#define DC_JUMPER 0 // I2C Addres: 0 - 0x3C, 1 - 0x3D | |
MicroOLED oled(PIN_RESET, DC_JUMPER); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <BME280_MOD-1022.h> | |
#include <Wire.h> | |
// Wifi and ThingSpeak settings | |
#include <ESP8266WiFi.h> | |
const char* ssid = "Your SSID"; | |
const char* password = "Your password"; | |
const char* server = "api.thingspeak.com"; |
NewerOlder