<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>2024 북부여중 3-2 [아두이노를 활용한 부화기 만들기] 프로젝트 by YoonMi Kim</title>
      <link>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn</link>
      <description>아누이노와 생명의 만남</description>
      <language>en-us</language>
      <pubDate>2024-06-18 12:13:18 UTC</pubDate>
      <lastBuildDate>2024-07-10 23:53:32 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/8.0/png/270c.png</url>
      </image>
      <item>
         <title>전체소스 - 아두이노</title>
         <author>stier2778</author>
         <link>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3035480725</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2431498295/a6dc8255ba7b5448f2e4d0c8af5d7843/all.ino" />
         <pubDate>2024-06-23 16:19:31 UTC</pubDate>
         <guid>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3035480725</guid>
      </item>
      <item>
         <title>아두이노 수업계획안</title>
         <author>stier2778</author>
         <link>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3035510105</link>
         <description><![CDATA[<p>아두이노를 활용한 부화기 만들기    수업 계획안</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2431498295/1cf59b89b71f0cce204fb33179fa9b68/___________.hwp" />
         <pubDate>2024-06-23 17:50:25 UTC</pubDate>
         <guid>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3035510105</guid>
      </item>
      <item>
         <title>아두이노</title>
         <author>stier2778</author>
         <link>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3039855650</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://www.arduino.cc/" />
         <pubDate>2024-06-27 13:49:58 UTC</pubDate>
         <guid>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3039855650</guid>
      </item>
      <item>
         <title>팅커캐드(아두이노 회로도 그리기)</title>
         <author>stier2778</author>
         <link>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3039856964</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://www.tinkercad.com/" />
         <pubDate>2024-06-27 13:52:05 UTC</pubDate>
         <guid>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3039856964</guid>
      </item>
      <item>
         <title>키보드송</title>
         <author>stier2778</author>
         <link>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3047057112</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://youtu.be/HSsJfaJ5xao?si=EAMp8i9dY2tngfvI" />
         <pubDate>2024-07-07 15:28:56 UTC</pubDate>
         <guid>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3047057112</guid>
      </item>
      <item>
         <title>부저 코드</title>
         <author>stier2778</author>
         <link>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3047059463</link>
         <description><![CDATA[<pre><code class="language-cpp">#include "DHT.h"
#define DHTPIN 8        // SDA 핀의 설정
#define DHTTYPE DHT22   // DHT22 (AM2302) 센서종류 설정
 
DHT dht(DHTPIN, DHTTYPE);
int speakerPin = 7;

void setup() {
  Serial.begin(9600);
  dht.begin();
} 

void loop() {
  int h = dht.readHumidity();
  int t = dht.readTemperature();

  if (h &lt; 55 || t &gt; 39 || t &lt; 36 ){ 
    tone(speakerPin, 392);
    delay(500);

    noTone(speakerPin);
    delay(1000);

  }</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2024-07-07 15:39:14 UTC</pubDate>
         <guid>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3047059463</guid>
      </item>
      <item>
         <title>수위센서 코드</title>
         <author>stier2778</author>
         <link>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3047062185</link>
         <description><![CDATA[<pre><code class="language-cpp">#include &lt;Wire.h&gt;
#include &lt;LiquidCrystal_I2C.h&gt;

LiquidCrystal_I2C lcd(0x27,16,2);

int sensor = A0;            // 수위센서 A0핀 설정
int value = 0;      

void setup() 
{
  lcd.init();
  lcd.backlight();
    
}

void loop() {
  value = analogRead(sensor);    
 // 수위센서값을 읽어 변수 value에 저장
  delay(1000);     

  lcd.setCursor(15,0);
  lcd.print("WATER");
  lcd.setCursor(15,1);
  lcd.print(value);
}</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2024-07-07 15:47:50 UTC</pubDate>
         <guid>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3047062185</guid>
      </item>
      <item>
         <title>선생님</title>
         <author>stier2778</author>
         <link>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3047064369</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2431498295/4f5ad47e6c44444aa1c9f3685fa40f7f/KakaoTalk_20240626_154252382.jpg" />
         <pubDate>2024-07-07 15:56:33 UTC</pubDate>
         <guid>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3047064369</guid>
      </item>
      <item>
         <title>선생님</title>
         <author>stier2778</author>
         <link>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3047068131</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2431498295/b70d59a55a3127fee36e3c038724a907/20190614_084259_1_.jpg" />
         <pubDate>2024-07-07 16:11:09 UTC</pubDate>
         <guid>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3047068131</guid>
      </item>
      <item>
         <title>https://bit.ly/북부여중</title>
         <author>stier2778</author>
         <link>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3047070265</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2431498295/6d09dd00d2dd8a5d1511666a2cf8a4db/image.png" />
         <pubDate>2024-07-07 16:18:38 UTC</pubDate>
         <guid>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3047070265</guid>
      </item>
      <item>
         <title>온도습도 코드</title>
         <author>stier2778</author>
         <link>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3047875474</link>
         <description><![CDATA[<pre><code class="language-cpp">#include "DHT.h"
#include &lt;Wire.h&gt;
#include &lt;LiquidCrystal_I2C.h&gt;

#define DHTPIN 8        // SDA 핀의 설정
#define DHTTYPE DHT22   // DHT22 (AM2302) 센서종류 설정

int h = 0;
int t = 0;

DHT dht(DHTPIN, DHTTYPE);
LiquidCrystal_I2C lcd(0x27,16,2);

void setup() 
{
    dht.begin();
    lcd.init();
    lcd.backlight();   
}

void loop() {

  int h = dht.readHumidity();
  int t = dht.readTemperature();
  delay(1000);     

  lcd.setCursor(1,0);
  lcd.print("HUMID");
  lcd.setCursor(1,1);
  lcd.print(h);
  lcd.print("%");

  lcd.setCursor(7,0);
  lcd.print("TEMPE");
  lcd.setCursor(7,1);
  lcd.print(t);
  lcd.print("C");
}</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2024-07-08 11:38:52 UTC</pubDate>
         <guid>https://padlet.com/dampuniquecorporation/x4ndakvhp66wlrbn/wish/3047875474</guid>
      </item>
   </channel>
</rss>
