diff --git a/LUFA/DoxygenPages/ChangeLog.txt b/LUFA/DoxygenPages/ChangeLog.txt
index 7fc06bd99ffddd2ebf3e984c4c565101ca2ead45..614acecda1f19d9e6699d1193ba4f66e00f6b061 100644
--- a/LUFA/DoxygenPages/ChangeLog.txt
+++ b/LUFA/DoxygenPages/ChangeLog.txt
@@ -52,6 +52,7 @@
   *   - Fixed AVRISP-MKII Clone failing to start application firmware once a TPI programming session is exited
   *   - Fixed DFU class bootloader not resetting the LED pins as high impedance inputs when a software jump to the user applications is requested
   *   - Fixed AVRISP-MKII Clone timing out on long programming commands such as programming the EEPROM on an ATMEGA8 (thanks to Martin Kelling)
+  *   - Fixed invalid PID value used in the TempDataLogger project host application (thanks to Anupam Pathak)
   *
   *  \section Sec_ChangeLog111009 Version 111009
   *  <b>New:</b>
diff --git a/Projects/TempDataLogger/TempLogHostApp/DataLoggerSettings.cs b/Projects/TempDataLogger/TempLogHostApp/DataLoggerSettings.cs
index 52a2110db3ad388471d588192681c772f6dc1713..98e6006ff831997560f6778128772d0c695d493e 100644
--- a/Projects/TempDataLogger/TempLogHostApp/DataLoggerSettings.cs
+++ b/Projects/TempDataLogger/TempLogHostApp/DataLoggerSettings.cs
@@ -13,7 +13,7 @@ namespace Project1HostApp
     public partial class frmDataloggerSettings : Form
     {
         private const int DEVICE_VID = 0x03EB;
-        private const int DEVICE_PID = 0xFAFA;
+        private const int DEVICE_PID = 0x2063;
 
         private struct Device_Report_t
         {