Entries by อ.เอ้ด

กู้ไฟล์จาก System Volume Information

Windows Explorer Tool folder Options View ติ๊ก Show Hidden files กับ Hide protected operting system System Volume Information ถ้าเข้าไม่ได้ ติด Access in denied ไปแก้ Security ให้ permission เป็น Administrators เพราะของเดิมมีแต่ System อีกตัวคือ แก้ Auditing ให้ Administrators Full Contrtol อย่าลิม Replace all child object ทั้งคู่ เมื่อเข้าไปแล้ว สามารถเข้าไปดู ใน folder ต่างๆ ว่ามี file ที่ต้องการอยู่หรือไม่ ชื่อจะไม่เหมือนเดิมแต่ ext จะแสดงอยู่ […]

ดู product key Windows

1.Produkey โดย nirsoft  http://www.nirsoft.net/utils/product_cd_key_viewer.html รุ่น ที่สามารถดูได้ Microsoft Windows 98/ME Microsoft Windows 2000 Microsoft Windows NT Microsoft Windows XP Microsoft Windows Vista Microsoft Windows Server 2003 Microsoft Windows 7 (Doesn’t work with Microsoft Volume Licensing) Microsoft Windows 8 (Doesn’t work with Microsoft Volume Licensing) Microsoft Windows 10 (Doesn’t work with all types of licenses) Microsoft Office 2000 […]

Arduino Uno + ESP-01 AT Command #1

#include <SoftwareSerial.h> SoftwareSerial esp8266(6,7); //Rx ==> Pin 6; TX ==> Pin7 #define speed8266 115200 void setup() { esp8266.begin (speed8266); Serial.begin(speed8266); Serial.println(“ESP8266 Setup test – use AT commands”); } void loop() { while(esp8266.available()) { Serial.write(esp8266.read()); } while(Serial.available()) { esp8266.write(Serial.read()); } } +++++ // cr:http://www.instructables.com/id/Using-ESP-01-and-Arduino-UNO/ // cr:https://create.arduino.cc/projecthub/mjrobot/iot-made-easy-w-uno-esp-01-thingspeak-mit-app-inventor-da6a50 #include <SoftwareSerial.h> SoftwareSerial esp8266(6,7); //Rx ==> Pin 6; TX ==> […]

Remember The Name – Fort Minor

You ready?! Let’s go! Yeah, for those of you that want to know what we’re all about It’s like this y’all (c’mon!) [Chorus:] This is ten percent luck, twenty percent skill Fifteen percent concentrated power of will Five percent pleasure, fifty percent pain And a hundred percent reason to remember the name! Mike! – He […]

Youtube Auto for android auto

download android auto    https://www.apkmirror.com/apk/google-inc/android-auto/android-auto-2-8-5745-release/android-auto-maps-media-messaging-voice-2-8-574513-release-android-apk-download/ Youtube  Auto http://www.thekirankumar.com/blog/2017/12/29/play-youtube-video-android-auto-app/

ESP32 MircoPython Install

https://www.python.org/downloads/ download ตัว python-2.7.14 ที่ https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi ติดตั้ง โปรแกรมจะสร้าง folder ที่ c:\python27 cmd ออก command prompt พิมพ์ cd\python27  แล้ว Enter cd Scripts pip install esptool    //ติดตั้ง esptool pip install adafruit-ampy esptool.py –port COM3 flash_id   //ตรวจสอบ การเชื่อมต่อ esptool.py –port COM3 erase_flash //ลบ flash ของเดิมออก รอติดตั้ง micropython สลับไป เปิดเวป https://www.micropython.org/downloads/#esp32 download firmware http://micropython.org/resources/firmware/esp32-20171224-v1.9.3-217-g5de064fb.bin เมื่อได้ไฟล์ esp32-20171224-v1.9.3-217-g5de064fb.bin มาแล้ว copy ไปไว้ใน c:\python27 แล้ว […]

ESP8266 ESP-01 Blynk Virtual port Relay

/************************************************************** * Blynk is a platform with iOS and Android apps to control * Arduino, Raspberry Pi and the likes over the Internet. * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * * Downloads, docs, tutorials: http://www.blynk.cc * Sketch generator: http://examples.blynk.cc * Blynk community: http://community.blynk.cc […]

ESP8266 ESP-01 Relay Blynk #1

/************************************************************** * Blynk is a platform with iOS and Android apps to control * Arduino, Raspberry Pi and the likes over the Internet. * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * * Downloads, docs, tutorials: http://www.blynk.cc * Sketch generator: http://examples.blynk.cc * Blynk community: http://community.blynk.cc […]