Browse Source

Nahrát soubory do „03“

master
Nela Achillesová 5 years ago
parent
commit
cdbb776d4a
4 changed files with 42 additions and 0 deletions
  1. BIN
      03/photo1.jpg
  2. BIN
      03/photo2.jpg
  3. +42
    -0
      03/source.txt
  4. BIN
      03/video-1575101935.mp4

BIN
03/photo1.jpg View File

Before After
Width: 1920  |  Height: 1005  |  Size: 125KB

BIN
03/photo2.jpg View File

Before After
Width: 480  |  Height: 917  |  Size: 50KB

+ 42
- 0
03/source.txt View File

#include <Wire.h>
#include <BH1750.h>
#define ledka D0
BH1750 lightMeter;
void setup(){
Serial.begin(9600);
pinMode(ledka, OUTPUT);
// Initialize the I2C bus (BH1750 library doesn't do this automatically)
Wire.begin();
// On esp8266 you can select SCL and SDA pins using Wire.begin(D4, D3);
lightMeter.begin();
Serial.println(F("BH1750 Test begin"));
}
void loop() {
float lux = lightMeter.readLightLevel();
Serial.print("Light: ");
Serial.print(lux);
Serial.println(" lx");
if(lux < 200)
{
digitalWrite(ledka, HIGH);
}
else
{
digitalWrite(ledka, LOW);
}
delay(1000);
}

BIN
03/video-1575101935.mp4 View File


Loading…
Cancel
Save