Basical information about how working with iblazr 2.
iblazr sync with the app by bluetooth.
IOS: official tool for iblazr original and iblazr 2 iblazr SDK
Android: iblazr 2 SDK
iblazr 2 works with FAFA service and FAF1 characteristic
You must create and send byte array to FAF1
For example: { 0x10, 0x00, 0x11, 0x7D, 0x16 }
Where:
0x10- command0x00- first "time-byte"0x11- second "time-byte"0x7D- temperature value. Available in range0x00 - 0x7D0x16- brightness value. Available in range0x00 - 0x16
0x01equal to10ms.0x0Aequal to100msand0x64equal to1 second.
If you need send more than 2550 seconds (0xff), you need pass time to first "time-byte".
iblazr recognize this like:
{ 0x10,0x00,0x0A, 0x7D, 0x16 }- "make flash for100ms"{ 0x10,0x0A,0xFF, 0x7D, 0x16 }- "make flash for28150ms"{ 0x10,0x0A,0x00, 0x7D, 0x16 }- "make flash for25600ms"- etc...
name | command | time | temperature | brightness
------------------- | --------------------------- | -------------------------- | ------------ | ------------
flash | 0x10 | 0x00 - will stop light | 0x00 - 0x7D | 0x00 - 0x16
status | 0x11 | 0x00 - 0xff | -//- | -//-
constant light | 0x16 | 0x00 - will infinite light | -//- | -//-
light specific LED | 0x12 (0x13,0x14,0x15) | 0x00 - 0xff | -//- | -//-
Send any questions to support@concepter.co or create new issue.