소스 검색

Nahrát soubory do „03“

master
Nela Achillesová 5 년 전
부모
커밋
cdbb776d4a
4개의 변경된 파일42개의 추가작업 그리고 0개의 파일을 삭제
  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 파일 보기

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

BIN
03/photo2.jpg 파일 보기

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

+ 42
- 0
03/source.txt 파일 보기

@@ -0,0 +1,42 @@
#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 파일 보기


Loading…
취소
저장