This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Thứ Sáu, 2 tháng 9, 2016

Máy in 3D Prusa i3

Để biết thêm thông tin chi tiết, vui lòng liên hệ trực tiếp đến tôi!

Thứ Hai, 29 tháng 8, 2016

Thông điệp cuộc sống (số 2)


Không phải cho đi là luôn nhận lại từ họ, 
mà hãy cảm nhận điều ta có được sau khi cho đi! 


Nguồn ảnh từ Facebook: Môi ngày một câu nói.

Thứ Năm, 24 tháng 3, 2016

CÁCH HỎI VÀ CHỈ ĐƯỜNG TRONG TIẾNG ANH

CÁCH HỎI VÀ CHỈ ĐƯỜNG TRONG TIẾNG ANH
Ngày hôm nay, hãy cùng mình học các hỏi và chỉ đường trong tiếng Anh nhé ^^!
1. Excuse me, could you tell me how to get to …?  xin lỗi, bạn có thể chỉ cho tôi đường đến … không?
2. Excuse me, do you know where the … is?  xin lỗi, bạn có biết … ở đâu không?
3. I'm looking for  tôi đang tìm …
4. Can you show me on the map?  bạn có thể chỉ cho tôi trên bản đồ không?
5. It's this way  chỗ đó ở phía này
6. Take this road  đi đường này
6. Go down there  đi xuống phía đó
7. Take the first on the left  rẽ trái ở ngã rẽ đầu tiên
8. Take the second on the right  rẽ phải ở ngã rẽ thứ hai
9. Turn right at the crossroads  đến ngã tư thì rẽ phải
10. Continue straight ahead for about a mile  tiếp tục đi thẳng khoảng 1 dặm nữa (1 dặm xấp xỉ bằng 1,6km)
11. On your left  bên tay trái bạn
12. On your right  bên tay phải bạn
13. Straight ahead of you  ngay trước mặt bạn

Thứ Ba, 8 tháng 3, 2016

Tại sao nhẫn cưới lại được đeo ở ngón áp út?



Có bao giờ bạn tự hỏi, tại sao nhẫn cưới lại được đeo ở ngón áp út không? <3Xem hết clip này sẽ rõ :
Posted by Lazada on 7 Tháng 3 2016

Thứ Bảy, 30 tháng 1, 2016

How to use Ds1307 with Arduino!

https://arduino-info.wikispaces.com/DS1307_RealTime_Clock_Brick
/* YourDuinoStarter Example: DS1307 Real Time Clock
 - WHAT IT DOES: Set and/or Run DS1307 Real Time Clock
 - SEE the comments after "//" on each line below
 - CONNECTIONS:
   Function  Arduino Pin  Mega Pin
   -         Gnd          Gnd
   +         +5V          +5V
   SDA       Analog A4    20
   SCL       Analog A5    21
 - V1.02 04/26/2015
   Questions: terry@yourduino.com */

/*-----( Import needed libraries )-----*/
#include <Wire.h>
#include "RTClib.h"

/*-----( Declare Constants and Pin Numbers )-----*/
// Not needed: RTC Lib expects connections as above

/*-----( Declare objects )-----*/
RTC_DS1307 rtc;    // Create a RealTimeClock object

/*-----( Declare Variables )-----*/
// NONE because the library handles this...

void setup()   /****** SETUP: RUNS ONCE ******/
{
  Serial.begin(9600); // Set up for Serial Monitor to be able to see this work
  // Set this in the lower right of the Serial Monitor screen
  
  Serial.println("YourDuino.com DS1307 Real Time Clock - Set / Run Utility");

  /*----( These lines allow code to work also on Arduino DUE )----- */
#ifdef AVR
  Wire.begin();
#else
  Wire1.begin(); // Shield I2C pins connect to alt I2C bus on Arduino Due
#endif

  rtc.begin(); // Start the RTC library code

  /*----( SET the date and time.  Comment OUT these lines after setting )----*/
  // Put these "//" in front of the line you do NOT want to use
  // following line sets the RTC to the date & time this sketch was compiled
     rtc.adjust(DateTime(F(__DATE__), F(__TIME__)));
  // This line sets the RTC with an explicit date & time, for example to set
  // May 21, 2015 at 6pm you would call: (use 24 hour time)
  //    rtc.adjust(DateTime(2015, 5, 21, 18, 0, 0));

}//--(end setup )---


void loop()   /****** LOOP: RUNS CONSTANTLY ******/
{
  DateTime now = rtc.now();  // Read data from the RTC Chip

  Serial.print(now.year(), DEC); //
  Serial.print('/');
  Serial.print(now.month(), DEC);
  Serial.print('/');
  Serial.print(now.day(), DEC);
  Serial.print(' ');
  Serial.print(now.hour(), DEC);
  Serial.print(':');
  Serial.print(now.minute(), DEC);
  Serial.print(':');
  Serial.print(now.second(), DEC);
  Serial.println();

  delay(3000);

}//--(end main loop )---

/*-----( Declare User-written Functions )-----*/
//NONE

//*********( THE END )***********

How to use DS18B20 with Arduino!

You can see documents about it:

http://www.hobbytronics.co.uk/ds18b20-arduino

https://github.com/PaulStoffregen/OneWire

http://playground.arduino.cc/Learning/OneWire

https://www.arduino.cc/en/Tutorial/HelloWorld