Logo video2dn
  • Сохранить видео с ютуба
  • Категории
    • Музыка
    • Кино и Анимация
    • Автомобили
    • Животные
    • Спорт
    • Путешествия
    • Игры
    • Люди и Блоги
    • Юмор
    • Развлечения
    • Новости и Политика
    • Howto и Стиль
    • Diy своими руками
    • Образование
    • Наука и Технологии
    • Некоммерческие Организации
  • О сайте

Скачать или смотреть Arduino Tutorial 26# How to take Arduino sensor data to Excel sheet in windows 10/8/7

  • Robotica DIY
  • 2017-11-17
  • 71492
Arduino Tutorial 26# How to take Arduino sensor data to Excel sheet in windows 10/8/7
Arduino tutorialarduino tutorial for beginnersHow to take arduino sensor data to excel sheet in windows 10/8/7How to take arduino sensor data to excel sheetarduino sensor data to excel sheetplotting arduino sensor dataDHT22Arduino Uno
  • ok logo

Скачать Arduino Tutorial 26# How to take Arduino sensor data to Excel sheet in windows 10/8/7 бесплатно в качестве 4к (2к / 1080p)

У нас вы можете скачать бесплатно Arduino Tutorial 26# How to take Arduino sensor data to Excel sheet in windows 10/8/7 или посмотреть видео с ютуба в максимальном доступном качестве.

Для скачивания выберите вариант из формы ниже:

  • Информация по загрузке:

Cкачать музыку Arduino Tutorial 26# How to take Arduino sensor data to Excel sheet in windows 10/8/7 бесплатно в формате MP3:

Если иконки загрузки не отобразились, ПОЖАЛУЙСТА, НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если у вас возникли трудности с загрузкой, пожалуйста, свяжитесь с нами по контактам, указанным в нижней части страницы.
Спасибо за использование сервиса video2dn.com

Описание к видео Arduino Tutorial 26# How to take Arduino sensor data to Excel sheet in windows 10/8/7

Arduino Tutorial 26# How to take Arduino sensor data to excel sheet in windows 10/8/7
Scroll down for code.....
Please like & Subscribe for more videos

Tera term software
https://osdn.net/projects/ttssh2/rele...

DHT22 library Github link
https://github.com/adafruit/DHT-senso...

If you want to support my video please buy any product through my amazon affiliate link. I will receive a commission, at no extra cost to you.

LIST OF COMPONENT (affiliate links)

http://amzn.to/2vqIKJP (DHT22)
http://amzn.to/2fvSRJq (Arduino)
http://amzn.to/2wxPmWz (Breadboard)
http://amzn.to/2vJ3lvo (Jumper wire)
http://amzn.to/2vmSK8l (Resistor)

#include "DHT.h"
#define DHTPIN 2 // what digital pin we're connected to

// Uncomment whatever type you're using!
//#define DHTTYPE DHT11 // DHT 11
#define DHTTYPE DHT22 // DHT 22 (AM2302), AM2321
//#define DHTTYPE DHT21 // DHT 21 (AM2301)
DHT dht(DHTPIN, DHTTYPE);

void setup() {
Serial.begin(9600);
Serial.println("Date & Time, Humidity %, Temperature *C, Temperature *F");
dht.begin();
}

void loop() {
// Wait a few seconds between measurements.
delay(1000);
// Reading temperature or humidity takes about 250 milliseconds!
// Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor)
float h = dht.readHumidity();
// Read temperature as Celsius (the default)
float t = dht.readTemperature();
// Read temperature as Fahrenheit (isFahrenheit = true)
float f = dht.readTemperature(true);

// Check if any reads failed and exit early (to try again).
if (isnan(h) || isnan(t) || isnan(f)) {
Serial.println("Failed to read from DHT sensor!");
return;
}
Serial.print(",");
Serial.print(h);
Serial.print(",");
Serial.print(t);
Serial.print(",");
Serial.println(f);
}

Комментарии

Информация по комментариям в разработке

Похожие видео

  • О нас
  • Контакты
  • Отказ от ответственности - Disclaimer
  • Условия использования сайта - TOS
  • Политика конфиденциальности

video2dn Copyright © 2023 - 2025

Контакты для правообладателей [email protected]