SERVER 2012 R2 foundation

When you go to install an upgrade, the supported upgrade paths are checked in 2 registry Values located in “HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\Current Version”

Value 1: ProductName / Value 2: EditionID

If you can look up these values in an existing server, you find that Server 2012 R2 Standard ProductName=Windows Server 2012 R2 Standand / EditionID=ServerStandard

By changing the values that were in there for Foundation to these, I was able to immediately (no reboot needed) launch the Server 2012 R2 Standard setup and it proceeded to perform an in-place upgrade that worked flawlessly.

Hopefully this helps out someone else stuck in a similar circumstance. PS – You can use a similar procedure to upgrade Windows 7/10 Professional to Enterprise

ที่มา https://serverfault.com/questions/473565/in-place-upgrade-from-windows-server-2012-foundation-to-windows-server-2012-stan

User Certificate folder in Windows 7

ชื่อไฟล์ ดูได้จาก Thumbprint ไปหา ไฟล์ ได้ที่ folder

%APPDATA%\Microsoft\SystemCertificates\My\Certificates

ที่อยู่ของ Key
%USERPROFILE%\AppData\Roaming\Microsoft\Crypto\RSA\SID


%USERPROFILE%\AppData\Roaming\Microsoft\Credentials
%USERPROFILE%\AppData\Roaming\Microsoft\Protect\SID

Ref:https://superuser.com/questions/411909/where-is-the-certificate-folder-in-windows-7

Creative A350 Mini Din9 (MD-90SM) Pinout

Creative A350 Mini Din 9Creative A350 Mini Din 9 pin MD-90SM Pinout 
1. Signal Ground
2  Signal Ground  (Right Ground)
3. L in from 3.5 mm Jack
4  R in from 3.5 mm Jack
Right Speaker (R) Out
6 VCC+ to Switch On/OFF
7. Signal Ground
8  Right Speaker (R) Out
9 Switch to STAND BY PIN 


10.0.14393.3503

[10.0.14393.3503]
LocalOnlyPatch.x86=1
LocalOnlyOffset.x86=A6578
LocalOnlyCode.x86=jmpshort
LocalOnlyPatch.x64=1
LocalOnlyOffset.x64=8D8A1
LocalOnlyCode.x64=jmpshort
SingleUserPatch.x86=1
SingleUserOffset.x86=36CE5
SingleUserCode.x86=nop
SingleUserPatch.x64=1
SingleUserOffset.x64=1B6A4
SingleUserCode.x64=Zero
DefPolicyPatch.x86=1
DefPolicyOffset.x86=31209
DefPolicyCode.x86=CDefPolicy_Query_eax_ecx
DefPolicyPatch.x64=1
DefPolicyOffset.x64=F185
DefPolicyCode.x64=CDefPolicy_Query_eax_rcx
SLInitHook.x86=1
SLInitOffset.x86=45912
SLInitFunc.x86=New_CSLQuery_Initialize
SLInitHook.x64=1
SLInitOffset.x64=22C80
SLInitFunc.x64=New_CSLQuery_Initialize

[10.0.14393.3503-SLInit]
bInitialized.x86 =C2F94
bServerSku.x86 =C2F98
lMaxUserSessions.x86 =C2F9C
bAppServerAllowed.x86 =C2FA0
bRemoteConnAllowed.x86=C2FA4
bMultimonAllowed.x86 =C2FA8
ulMaxDebugSessions.x86=C2FAC
bFUSEnabled.x86 =C2FB0
bServerSku.x64 =E73D0
lMaxUserSessions.x64 =E73D4
bAppServerAllowed.x64 =E73D8
bInitialized.x64 =E8470
bRemoteConnAllowed.x64=E8474
bMultimonAllowed.x64 =E8478
ulMaxDebugSessions.x64=E847C
bFUSEnabled.x64 =E8480

ป้าพรกล่าวกับเจ๊วีน

WOW I write about my love for motherland and your response is to insult me. This anger, disrespect and disregard for something you don’t fully understand is the antithesis of what it means to be Thai. Every history (including your own) has parts that can be scrutinized. Why not move forward holding onto the proudest virtues rather than condemning it all. I send your peace ,love and understanding.

You are doing our country, yourself and the world an injustice with your hateful rhetoric. Why note use your education to inspire positive changes rather than an this angry doctrine?? As a mother, I too what whats best for our youth and their future. But the middle finger is not a wise one to choose when pointing the way. I am Not being political… just expressing my sadness for this explosive approach

คุณกำลังทำให้ประเทศของเราตัวคุณเองและโลกนี้มีความอยุติธรรมด้วยวาทศิลป์ที่น่าเกลียดชังของคุณ เหตุใดจึงควรใช้การศึกษาของคุณเพื่อสร้างแรงบันดาลใจให้เกิดการเปลี่ยนแปลงในเชิงบวกแทนที่จะใช้คำสอนที่น่าโกรธ ในฐานะแม่ฉันก็เช่นกันสิ่งที่ดีที่สุดสำหรับเยาวชนและอนาคตของพวกเขา แต่นิ้วกลางไม่ฉลาดที่จะเลือกเมื่อชี้ทาง. ฉันไม่ได้ยุ่งเกี่ยวกับการเมือง … แค่แสดงความเสียใจต่อวิธีการที่รุนแรงนี้

Arduino Wind Direction

int VaneValue;// raw analog value from wind vane
int Direction;// translated 0 – 360 direction
int CalDirection;// converted value with offset applied
int LastValue;

#define Offset 0;

void setup() {
LastValue = 1;
Serial.begin(19200);
Serial.println(“Vane Value\tDirection\tHeading”);
}

void loop() {
VaneValue = analogRead(A1);
Direction = map(VaneValue, 0, 1023, 0, 360);
CalDirection = Direction + Offset;

if(CalDirection > 360)
CalDirection = CalDirection – 360;

if(CalDirection < 0)
CalDirection = CalDirection + 360;

// Only update the display if change greater than 2 degrees.
if(abs(CalDirection – LastValue) > 5)
{
Serial.print(VaneValue); Serial.print(“\t\t”);
Serial.print(CalDirection); Serial.print(“\t\t”);
getHeading(CalDirection);
LastValue = CalDirection;
}
delay(100);
}

// Converts compass direction to heading
void getHeading(int direction) {
if (direction >= 52 && direction <= 53) {
Serial.println(“SSE”);
}
else if (direction >= 58 && direction <=61) {
Serial.println(“SE”);
}
else if (direction >= 56 && direction <= 57) {
Serial.println(“SEE”);
}
else if (direction >= 86 && direction <=92) {
Serial.println(“S”);
}
else if (direction >= 68 && direction <=70) {
Serial.println(“SSW”);
}
else if (direction >= 110 && direction <=123) {
Serial.println(“SW”);
}
else if (direction >= 104 && direction <=106) {
Serial.println(“SWW”);
}
else if (direction >= 172 && direction <=176) {
Serial.println(“E”);
}
else if (direction >= 154 && direction <=156) {
Serial.println(“NEE”);
}
else if (direction >= 278 && direction <=280) {
Serial.println(“NE”);
}
else if (direction >= 226 && direction <=230){
Serial.println(“W”);
}
else if (direction >= 251 && direction <= 253) {
Serial.println(“NNE”);
}
else if (direction >= 312 && direction <= 314){
Serial.println(“N”);
}
else if (direction >= 292 && direction <= 293){
Serial.println(“NNW”);
}
else if (direction >= 332 && direction <= 337){
Serial.println(“NW”);
}
else if (direction >= 216 && direction <= 218){
Serial.println(“NWW”);
}
else
Serial.println(“N”);
}

 

Ref:http://www.philpot.me/weatherinsider.html

Arduino Uno Wind Speed Way 2

#include <math.h>
#include <millisDelay.h>

#define windSensorPin 2
millisDelay timerDelay;

int windCounter = 0;
float windSpeedM = 0;
float windSpeedK = 0;
int windPulse = 0;
int pulses = 0;
int startTest = 1;
int windTest1 = 1;
int windTest2 = 0;
int windTimer = 1;
int result = 1;

int timerStart = 1;

void setup() {
// Set console baud rate
Serial.begin(19200);
pinMode(windSensorPin, OUTPUT);
// pinMode(RainPin, OUTPUT);
// pinMode(windDirectionPin, INPUT);
delay(10);

}

void loop() {
if (digitalRead(windSensorPin) < 1 && startTest == 1 )
{
// windDirValue = analogRead(windDirectionPin);
// windDir = map(windDirValue, 1, 1024, 1, 5000);
windTest1 = 1;
windTest2 = 1;
windTimer = 1;
result = 1;
startTest = 0;
}
WindSpeed();
if (digitalRead(windSensorPin) < 1 && timerStart == 1)
{
timerDelay.start(3000);
result = 1;
timerStart = 0;
}
if (timerDelay.justFinished() && result == 1)
{
windSpeedM = 1.25 * (pulses/3);
windSpeedK = windSpeedM * 1.60934;
Serial.print(“WindSpeed: “);
Serial.print(windSpeedM);
Serial.print(” mph tt”);
Serial.print(windSpeedK);
Serial.println(” kphtt”);

// Blynk.virtualWrite(V2,windSpeed);
pulses = 0;
windSpeedM = 0;
startTest = 1;
result = 0;
timerStart = 1;

}

}
void WindSpeed()
{
if (digitalRead(windSensorPin) < 1)
{
windCounter++;
}
if (windCounter > 0 && digitalRead(windSensorPin) == 1 && windTest1 == 1)
{
windPulse += 1;
windCounter = 0;

}

if (windPulse == 3 && windTest2 == 1)
{
pulses += 2;
//Serial.println(pulses);
windPulse = 0;
}

}

ref:https://community.createlabz.com/knowledgebase/mini-weather-station-rain-gauge-wind-speed-wind-direction-using-blynk-and-sim800c/

Arduino Uno Wind Speed Way 1

#include “TimerOne.h” // Timer Interrupt set to 2 second for read sensors
#include <math.h>
#include <Time.h>

// speed ok near speed-3.ino

#define WindSensorPin (2) // The pin location of the anemometer sensor
char wind[10]; //empty array where to put the numbers going to the master

int LastValue;
//int wind = 0;
volatile bool IsSampleRequired; // this is set true every 2.5s. Get wind speed
volatile unsigned int TimerCount; // used to determine 2.5sec timer count
volatile unsigned long Rotations; // cup rotation counter used in interrupt routine
volatile unsigned long ContactBounceTime; // Timer to avoid contact bounce in interrupt routine
float WindSpeed; // speed miles per hour
byte x = 0;

void setup() {
Serial.begin(19200);
pinMode(WindSensorPin, INPUT);
attachInterrupt(digitalPinToInterrupt(WindSensorPin), isr_rotation, FALLING);
Serial.println(“Davis Anemometer Test”);
Serial.println(“Speed (MPH)tKnotstDirectiontStrength”);
Timer1.initialize(500000);
Timer1.attachInterrupt(isr_timer);

}

void loop() {
if(IsSampleRequired)
{
// convert to mp/h using the formula V=P(2.25/T)
// V = P(2.25/2.5) = P * 0.9
WindSpeed = Rotations * 0.48;

Rotations = 0; // Reset count for next sample
// wind = WindSpeed;

IsSampleRequired = false;

Serial.print(WindSpeed); Serial.println(“tt”);
// Serial.print(getKnots(WindSpeed)); Serial.print(“t”);
// Serial.print(CalDirection);
// getHeading(CalDirection); Serial.print(“tt”);
// getWindStrength(WindSpeed);

}
}
void isr_timer() {

TimerCount++;

if(TimerCount == 5)
{
IsSampleRequired = true;
TimerCount = 0;
}
}
void isr_rotation () {

if ((millis() – ContactBounceTime) > 15 ) { // debounce the switch contact.
Rotations++;
ContactBounceTime = millis();
}

ref:http://cmfc-weatherstation.blogspot.com/2016/

10.0.19041.84

[10.0.19041.84]
LocalOnlyPatch.x86=1
LocalOnlyOffset.x86=B46B9
LocalOnlyCode.x86=jmpshort
LocalOnlyPatch.x64=1
LocalOnlyOffset.x64=87611
LocalOnlyCode.x64=jmpshort
SingleUserPatch.x86=1
SingleUserOffset.x86=3AD27
SingleUserCode.x86=Zero
SingleUserPatch.x64=1
SingleUserOffset.x64=0BF0C
SingleUserCode.x64=Zero
DefPolicyPatch.x86=1
DefPolicyOffset.x86=3D7D9
DefPolicyCode.x86=CDefPolicy_Query_eax_ecx
DefPolicyPatch.x64=1
DefPolicyOffset.x64=17ED5
DefPolicyCode.x64=CDefPolicy_Query_eax_rcx
SLInitHook.x86=1
SLInitOffset.x86=66658
SLInitFunc.x86=New_CSLQuery_Initialize
SLInitHook.x64=1
SLInitOffset.x64=1BDFC
SLInitFunc.x64=New_CSLQuery_Initialize
[10.0.19041.84-SLInit]
bInitialized.x86 =CF920
bServerSku.x86 =CF924
lMaxUserSessions.x86 =CF928
bAppServerAllowed.x86 =CF930
bRemoteConnAllowed.x86=CF938
bMultimonAllowed.x86 =CF93C
ulMaxDebugSessions.x86=CF940
bFUSEnabled.x86 =CF944
bInitialized.x64 =103FF8
bServerSku.x64 =103FFC
lMaxUserSessions.x64 =104000
bAppServerAllowed.x64 =104008
bRemoteConnAllowed.x64=104010
bMultimonAllowed.x64 =104014
ulMaxDebugSessions.x64=104018
bFUSEnabled.x64 =10401C

net start termservice

ชนิดของ CREE LED

Cree เป็นบริษัท ผลิต Chip LED อยู่ที่ Durham รัฐ North Carolina โดยผลิต LED ความสว่างสูงหลายรุ่นที่ใช้กันอย่างแพร่หลายในไฟฉาย ทาง CREE ไม่ได้ทำไฟฉายขาย โดยตรง แม้ว่าบาง บริษัท จะอธิบายผลิตภัณฑ์ของตนว่าเป็น “ไฟฉาย CREE” นี่หมายถึงไฟ LED ภายในไฟฉาย เป็นของ Cree

Cree แยกหลอด LED แต่ละรุ่นโดยพิจารณาจากฟลักซ์ทั้งหมดหรือเอาต์พุตแสง ถังฟลักซ์แต่ละช่องห่างกันประมาณ 7% ที่กระแสอ้างอิงบางอย่างเช่น 350mA หรือ 750mA แต่ที่กระแสไฟฟ้าที่สูงขึ้นเอาต์พุตจะสูงขึ้นจนถึงกระแสสูงสุดบางส่วน Cree วัดเอาท์พุทที่อุณหภูมิอ้างอิง 85 °เซลเซียสซึ่งเป็นอุณหภูมิการทำงานที่สมจริงกว่า แต่ในอดีตพวกเขาวัดที่ 25 ° โดยทั่วไปผลผลิตจะสูงขึ้นที่อุณหภูมิต่ำกว่า

Cree แบ่งประเภทของไฟ LED สีขาวว่ามีความอบอุ่นเป็นกลางและเย็น แต่ยังรวมถึง “สีขาวกลางแจ้ง” ที่อยู่ระหว่างและซ้อนทับกันเป็นกลางและเย็น (4000-5300K) สีจะถูกจัดถังโดยใช้ระบบตามมาตรฐานANSI_White สีอ่อนของ Cree แบ่งย่อยและขยายในภูมิภาค ANSI โดยให้ถังขยะเช่น 1B เย็น 5B1 เป็นกลางและ 7D2 ที่อบอุ่นแม้ว่าจะมีสีและส่วนย่อยอื่น ๆ อีกมากมาย คลิกที่ภาพด้านขวาเพื่อดูถังขยะทั้งหมดแม้ว่าจะไม่มีถังขยะทั้งหมด

นอกจากนี้ Cree ยังผลิตLED CRIสูงโดยมีค่า CRI 80, 85 และ 90 แทนด้วยถังขยะ H1, P1 และ U1 ตามลำดับ (แยกกัน L1 หมายถึง LED สีขาว CRI ปกติและ O1 เป็นสีขาวกลางแจ้ง)

ด้านล่างนี้เป็นหมายเลขเอาต์พุตสำหรับกระแสที่แตกต่างกันสำหรับถังความสว่างต่างๆของ LED รุ่นปัจจุบันเพิ่มเติม มีข้อมูลเพิ่มเติมเกี่ยวกับCree Product Characterization Toolซึ่งเป็นเครื่องคำนวณออนไลน์ที่ช่วยให้คุณค้นหาผลลัพธ์ตามปัจจัยต่างๆได้มากขึ้น ตัวเลขในหน้านี้เช่นเดียวกับที่กำหนดโดย PCT จะขึ้นอยู่กับแผนภูมิในเอกสารข้อมูล LED

MT-G2

LED กำลังสูงขนาดใหญ่มีรุ่นที่ทำงานที่ 6, 9 หรือ 36 โวลต์พร้อมกำลังไฟสูงสุด 18 วัตต์วางจำหน่ายครั้งแรกประมาณเดือนพฤศจิกายน 2555 LED มีขนาด 8.9 มม. x 8.9 มม. และไฟจะท่วมเมื่อเทียบกับ XM ที่เล็กกว่า ล. ไฟการผลิตดวงแรกที่ใช้ LED นี้คือ Crelant 7G10 และ Solarforce S200 ซึ่งเปิดตัวในเดือนพฤษภาคม 2013 ไฟ LED อยู่ในถังขยะที่อุณหภูมิ 85 ° C ถังขยะที่แสดงด้านล่างเพิ่มขึ้น 15% เพื่อให้เอาต์พุตที่ 25 ° C เพื่อให้เปรียบเทียบกับ LED อื่น ๆ ได้ง่ายขึ้น

ถังขยะ1100mA
100%
1500mA
172%
3000mA
230%
D0460-506598-6581058-1164
E0506-552658-718พ.ศ. 1164-1270
F0552-598718-7771270-1375
G0598-644777-8371375-1481
H0644-690837-897พ.ศ. 1481-1587
J0690-736897-957พ.ศ. 1587-1693
K0736-782957-1017พ.ศ. 1693-1799
M0782-8281017-1076พ.ศ. 2342-2547
N0828-8741076-1136พ.ศ. 2447-2553
P0874-920พ.ศ. 1136-1196พ.ศ. 2553-2116
Q0 *920-977พ.ศ. 1196-1681พ.ศ. 2116-2248

XHP70

ตัวปล่อยหลายไดอะซิลขนาดใหญ่มีให้เลือกในรุ่น 6 โวลต์และ 12 โวลต์ มีให้เลือกมากมายโดย Nitecore และอื่น ๆ

ถังขยะ
2100mA (6V) 1050mA (12 โวลต์)
100%
3200mA (6 โวลต์)
1600mA (12 โวลต์)
142%
4800mA (6V)
2400mA (12 โวลต์)
192%
H4970-10401377-1477พ.ศ. 2405-2540
J21040-1120พ.ศ. 1477-1590พ.ศ. 2540-2150
J4พ.ศ. 1120-1200พ.ศ. 1590-17042150-2304
K21200-1290พ.ศ. 1704-18322304-2477
K41290-1380พ.ศ. 2375-25032477-2650
M2พ.ศ. 1380-1485พ.ศ. 2503-21092650-2851
M4พ.ศ. 1485-15902109-22582851-3053
N2พ.ศ. 1590-17102258-24283053-3283
N4 *พ.ศ. 1710-1830พ.ศ. 2428-25993283-3514
P2พ.ศ. 2373-2508พ.ศ. 2599-27903514-3773

XM-L2

ขนาด 5 มม. x 5 มม. เท่าเดิม XM-Lแต่มีเอาต์พุตเพิ่มขึ้นสูงสุด 20% เปิดตัวในเดือนธันวาคม 2012 เช่นเดียวกับ XP-G2 XM-L2 เป็นสีเงินด้านบนมีสายเชื่อมสองเส้นและดายมีจุดแทนเส้น XM-L2 มีขนาดใหญ่กว่า XP-G2 อย่างมากและมีรูกลมที่ด้านซ้ายบนเมื่อเทียบกับรูสี่เหลี่ยมของ XP-G2 ไฟการผลิตชุดแรกที่นำเสนอ XM-L2 คือThruNite Catapult V3 และ TN31 ในเดือนมกราคม 2013 ตามด้วยไฟ Xeno จำนวนหนึ่งซึ่งมีตัวเลือกสำหรับโทนสีกลางใน Feburary ข่าวประชาสัมพันธ์ .

Cree XM-L2 เอกสารข้อมูลสินค้าCree XM-L2 มีขนาดเท่ากับ XM-L เดิม แต่มีการออกแบบใหม่

ถังขยะ700mA
100%
1000mA
138%
1500mA
194%
3000mA
328%
S4164-172225-236317-332538-564
S5172-182236-249332-351564-597
S6182-200249-274351-386597-656
T2200-220274-301386-425656-722
T3220-240301-329425-463722-787
T4240-260329-356463-502787-853
T5260-280356-384502-540853-918
T6280-300384-411540-579918-984
U2300-320411-438579-618984-1050
U3320-340438-466618-6561050-1115
U4 *340-360466-493656-6951115-1181

XP-E2

เปิดตัวในเดือนกันยายน 2012 การออกแบบใหม่นี้คล้ายกับ XP-G2 Cree อ้างว่าได้ผลผลิตมากกว่าXP-E เดิมถึง 20% ในราคาครึ่งหนึ่งในแง่ของลูเมนต่อดอลลาร์ ด้วยขนาดของแม่พิมพ์ที่เล็ก LED นี้จะพ่นได้ดีสำหรับจำนวนเอาต์พุต ใช้กับไฟฉาย Fenix ​​ขนาดเล็กบางรุ่น กด realease , แผ่นข้อมูลCree XP-E2 LED มีขนาดเล็กกว่า XP-G2

ถังขยะ350mA
100%
700mA
171%
1000mA
218%
P267-74115-127147-161
P374-81127-138161-176
P481-87138-150176-191
คำถามที่ 287-94150-161191-205
ไตรมาสที่ 394-100161-171205-218
Q4100-107171-183218-233
คำถามที่ 5107-114183-195233-249
R2114-122พ.ศ. 2495-2552249-266
R3122-130209-222266-283
R4 *130-138223-236284-301

XP-G2

เปิดตัวในเดือนกรกฎาคม 2012, XP-G2 คือการออกแบบใหม่ที่มีขนาดเดียวกับก่อนหน้านี้ XP-G ในเดือนสิงหาคม 2555 Foursevensเป็น บริษัท แรกที่นำ LED นี้มาใช้โดยอ้างว่ามีเอาต์พุตเพิ่มขึ้นถึง 20% และฮอตสปอตที่เล็กกว่า 5% เพื่อการโยนที่มากขึ้นเมื่อเทียบกับรุ่นเดียวกันที่ใช้ XP-G ข่าวประชาสัมพันธ์ , แผ่นข้อมูลCree XP-G2 LED มีขนาดเท่ากับ XP-G แต่มีการออกแบบที่แตกต่างกัน

ถังขยะ350mA
100%
700mA
183%
1000mA
243%
1500mA
329%
Q4100-107183-196243-260330-353
คำถามที่ 5107-114196-209260-277353-376
R2114-122209-223277-297376-402
R3122-130223-238297-316402-429
R4130-139238-255316-338429-458
R5139-148255-271338-360458-488
S2148-156271-286360-379488-514
S3156-164286-300379-399514-541
S4 *164-172300-315399-418541-567

XP-G3

ประกาศในเดือนเมษายน 2559 XP-G3 ถูกปกคลุมด้วยสารเรืองแสงสีเหลืองอย่างสมบูรณ์และสามารถขับเคลื่อนไปยังกระแสที่สูงกว่า XP-G2 โดยมีกระแสสูงสุด 2 แอมป์แทนที่จะเป็น 1.5 ดูเหมือนว่า LED รุ่น High CRI จะมีให้เลือกใช้ในทุกเฉดสีแม้กระทั่งโทนสีเย็น ข่าวประชาสัมพันธ์ , แผ่นข้อมูล

ถังขยะ350mA
100%
1000mA
197%
1500mA
345%
2000mA
427%
R2114-122225-240284-304393-421
R3122-130240-256304-324421-449
R4130-139256-274324-346449-480
R5139-148274-292346-369480-511
S2148-156292-307369-388511-538
S3156-164307-323388-408538-566
S4164-172323-339408-428566-593
S5 *172-182339-359428-453593-628

XP-L

Cree XP-L HD LED ใส่แม่พิมพ์ขนาดใหญ่ไว้ในแพ็คเกจขนาด XP-G ภายใต้โดมฝ้าCree XP-L HI ไม่อยู่กับโดมทำให้โยนได้มากขึ้นเปิดตัวในเดือนพฤษภาคม 2014 XP-L วางแม่พิมพ์ขนาดเดียวกับ XM-L2 ลงบนบอร์ดขนาด 3.5 มม. ของ XP-G (โกนขอบโดมออกเพื่อให้พอดี) เนื่องจากแม่พิมพ์ที่มีขนาดใหญ่มันจะไม่เหวี่ยงพอ ๆ กับ XP-G ที่มีขนาดเล็กกว่า แต่มันให้แสงมากกว่าและสามารถขับเคลื่อนด้วยกระแสที่สูงขึ้น ถังขยะที่มีกระแสไฟสูงกว่า XM-L2 ถังขยะที่สูงกว่านั้นเป็นเรื่องปกติสำหรับ XP-L แต่ V5 bin XP-L นั้นเทียบเท่ากับเอาต์พุตโดยประมาณกับ U2 bin XM-L2 ในเดือนมิถุนายน 2558 Cree ได้เริ่มจัดส่งLED รุ่น ” ความเข้มสูง ” หรือ “HI” ด้วยการเคลือบผิวแบบเรียบแทนที่จะเป็นโดมที่สามารถให้หลอด LED ที่ไม่มีโดมได้โดยไม่มีปัญหา เวอร์ชันโดมดั้งเดิมเรียกว่า “ความหนาแน่นสูง” หรือ “HD” ถังความสว่างของทั้งสองเหมือนกัน

ถังขยะ1050mA
100%
1500mA
135%
2000mA
169%
3000mA
225%
T6280-300377-404472-506629-674
U2300-320404-431506-540674-719
U3320-340431-458540-573719-764
U4340-360458-485573-607764-809
U5360-380485-512607-641809-854
U6380-400512-539641-675854-899
V2400-420539-566675-708899-944
V3420-440566-593708-742944-989
V4440-460593-620742-776989-1034
V5460-480620-647776-8101034-1079
V6480-500647-674810-8431079-1124

XM-L

Cree XM-L LED พร้อมแถบสีเหลือง 6 เส้นและสายเชื่อม 3 เส้นใช้กันอย่างแพร่หลายในไฟฉายกำลังสูง LED ขนาดใหญ่กว่านี้มีวางจำหน่ายครั้งแรกในเดือนพฤศจิกายน 2554 โดยให้ประสิทธิภาพ 160 ลูเมนต่อวัตต์ที่ 350mA เอาต์พุตสูงถึง 340 ลูเมนที่ 700mA (bin U3 ซึ่งยังหายาก) ดังนั้นจึงมีประสิทธิภาพมากกว่าและให้แสงสว่างที่กระแสใด ๆ มากกว่า LED Cree แบบ single-die ก่อนหน้านี้ อย่างไรก็ตามการปรับปรุงเอาต์พุตโดยรวมที่ใหญ่ที่สุดคือ XM-L สามารถขับเคลื่อนไปที่ 3000mA สำหรับเอาต์พุต 1100 ลูเมนส์ เนื่องจาก XM-L อยู่ในถังขยะที่ 700mA ตัวเลขถังขยะจึงไม่สัมพันธ์กันทุกประการกับไฟ LED ที่มีขนาดเล็กกว่าซึ่งอยู่ในถังขยะที่ 350mA แม่พิมพ์ LED มีขนาด 2 มม. x 2 มม. บนวัสดุพิมพ์ขนาด 5 มม. x 5 มม. พร้อมแถบสีเหลือง 6 เส้นและสายเชื่อม 3 เส้นซึ่งตรงข้ามกับ XP-G ที่มีแถบ 4 เส้นและสายเชื่อม 2 เส้นและ XP-E ที่มี 3 แถบและสายเชื่อม 2 เส้น ไฟการผลิตชุดแรกที่มี XM-L คือรุ่นThruNite Catapult V2 (ครั้งแรกที่จะจัดส่ง) EagleTac M3C4 เป็น4Sevens Quark MiNi และJETBeam M1xm แนะนำในเดือนธันวาคมปี 2010 แต่ร้านค้าปลีกงบประมาณ KaiDomain มีไฟ LED และP60ลดลงอินเช่นเดียวกับ P60 ไฟรอบในเวลาเดียวกัน โทนสีที่เป็นกลางและอบอุ่นเริ่มจัดส่งในเดือนมีนาคม 2554

ถังขยะ700mA
100%
1000mA
137.5%
1500mA
195%
3000mA
325%
T2200-220275-303390-429650-715
T3220-240303-330429-468715-780
T4240-260330-358468-507780-845
T5260-280358-385507-546845-910
T6280-300385-413546-585910-975
U2300-320413-440585-624975-1040
U3 *320-340440-468624-6631040-1105

ที่มา http://flashlightwiki.com/Cree