├── .gitignore ├── MiBand8Pro ├── Accelerometer │ ├── Accelerometer.fprj │ ├── app │ │ └── lua │ │ │ ├── cat.bin │ │ │ ├── image.lua │ │ │ ├── main.lua │ │ │ └── root.lua │ ├── images │ │ ├── cat.png │ │ └── preview.png │ └── output │ │ └── Accelerometer.face ├── AnalogTime │ ├── AnalogTime.fprj │ ├── app │ │ └── lua │ │ │ ├── arrHour.bin │ │ │ ├── arrMinute.bin │ │ │ ├── arrSecond.bin │ │ │ ├── image.lua │ │ │ ├── img_0001.bin │ │ │ ├── main.lua │ │ │ └── root.lua │ ├── images │ │ ├── arrHour.png │ │ ├── arrMinute.png │ │ ├── arrSecond.png │ │ ├── img_0001.png │ │ └── preview.png │ └── output │ │ └── Analog Time.face ├── AnalogTimeAnimated │ ├── AnalogTimeAnimated.fprj │ ├── app │ │ └── lua │ │ │ ├── arrHour.bin │ │ │ ├── arrMinute.bin │ │ │ ├── arrSecond.bin │ │ │ ├── image.lua │ │ │ ├── img_0001.bin │ │ │ ├── main.lua │ │ │ └── root.lua │ ├── images │ │ ├── arrHour.png │ │ ├── arrMinute.png │ │ ├── arrSecond.png │ │ ├── img_0001.png │ │ └── preview.png │ └── output │ │ └── Analog Time Anim.face ├── Animation │ ├── AOD │ │ ├── AOD.fprj │ │ └── images │ │ │ ├── img_0030.png │ │ │ ├── img_0031.png │ │ │ ├── img_0032.png │ │ │ ├── img_arr_0014_00.png │ │ │ ├── img_arr_0014_01.png │ │ │ ├── img_arr_0014_02.png │ │ │ ├── img_arr_0014_03.png │ │ │ ├── img_arr_0014_04.png │ │ │ ├── img_arr_0014_05.png │ │ │ ├── img_arr_0014_06.png │ │ │ ├── img_arr_0014_07.png │ │ │ ├── img_arr_0014_08.png │ │ │ ├── img_arr_0014_09.png │ │ │ ├── img_arr_0015_00.png │ │ │ ├── img_arr_0015_01.png │ │ │ ├── img_arr_0015_02.png │ │ │ ├── img_arr_0015_03.png │ │ │ ├── img_arr_0015_04.png │ │ │ ├── img_arr_0015_05.png │ │ │ ├── img_arr_0015_06.png │ │ │ ├── img_arr_0015_07.png │ │ │ ├── img_arr_0015_08.png │ │ │ └── img_arr_0015_09.png │ ├── Animation.fprj │ ├── app │ │ └── lua │ │ │ ├── cat_01.bin │ │ │ ├── cat_02.bin │ │ │ ├── cat_03.bin │ │ │ ├── image.lua │ │ │ ├── main.lua │ │ │ ├── num0.rle │ │ │ ├── num1.rle │ │ │ ├── num10.rle │ │ │ ├── num11.rle │ │ │ ├── num2.rle │ │ │ ├── num3.rle │ │ │ ├── num4.rle │ │ │ ├── num5.rle │ │ │ ├── num6.rle │ │ │ ├── num7.rle │ │ │ ├── num8.rle │ │ │ ├── num9.rle │ │ │ └── root.lua │ └── images │ │ ├── cat.png │ │ ├── cat_b.png │ │ ├── delim.png │ │ ├── num_0.png │ │ ├── num_1.png │ │ ├── num_2.png │ │ ├── num_3.png │ │ ├── num_4.png │ │ ├── num_5.png │ │ ├── num_6.png │ │ ├── num_7.png │ │ ├── num_8.png │ │ ├── num_9.png │ │ ├── preview.png │ │ └── tree.png ├── Diffusion │ ├── Diffusion.fprj │ ├── app │ │ ├── main.lua │ │ ├── number │ │ │ ├── 1.rle │ │ │ ├── 10.rle │ │ │ ├── 11.rle │ │ │ ├── 12.rle │ │ │ ├── 2.rle │ │ │ ├── 3.rle │ │ │ ├── 4.rle │ │ │ ├── 5.rle │ │ │ ├── 6.rle │ │ │ ├── 7.rle │ │ │ ├── 8.rle │ │ │ ├── 9.rle │ │ │ ├── left.rle │ │ │ ├── leftmid.rle │ │ │ ├── min0.rle │ │ │ ├── min1.rle │ │ │ ├── min2.rle │ │ │ ├── min3.rle │ │ │ ├── min4.rle │ │ │ ├── min5.rle │ │ │ ├── min6.rle │ │ │ ├── min7.rle │ │ │ ├── min8.rle │ │ │ ├── min9.rle │ │ │ ├── num0.rle │ │ │ ├── num1.rle │ │ │ ├── num10.rle │ │ │ ├── num11.rle │ │ │ ├── num2.rle │ │ │ ├── num3.rle │ │ │ ├── num4.rle │ │ │ ├── num5.rle │ │ │ ├── num6.rle │ │ │ ├── num7.rle │ │ │ ├── num8.rle │ │ │ ├── num9.rle │ │ │ ├── right.rle │ │ │ └── rightmid.rle │ │ └── uidmap.map │ ├── images │ │ └── preview.png │ └── output │ │ ├── Diffusion.face │ │ └── preview.png ├── DigitalTime │ ├── DigitalTime.fprj │ ├── app │ │ └── lua │ │ │ ├── delim.bin │ │ │ ├── image.lua │ │ │ ├── main.lua │ │ │ ├── num_0.bin │ │ │ ├── num_1.bin │ │ │ ├── num_2.bin │ │ │ ├── num_3.bin │ │ │ ├── num_4.bin │ │ │ ├── num_5.bin │ │ │ ├── num_6.bin │ │ │ ├── num_7.bin │ │ │ ├── num_8.bin │ │ │ ├── num_9.bin │ │ │ └── root.lua │ ├── images │ │ ├── img_0001.png │ │ ├── img_arr_0000_00.png │ │ ├── img_arr_0000_01.png │ │ ├── img_arr_0000_02.png │ │ ├── img_arr_0000_03.png │ │ ├── img_arr_0000_04.png │ │ ├── img_arr_0000_05.png │ │ ├── img_arr_0000_06.png │ │ ├── img_arr_0000_07.png │ │ ├── img_arr_0000_08.png │ │ ├── img_arr_0000_09.png │ │ └── preview.png │ └── output │ │ └── Digital Time.face ├── FlyingCat │ ├── AOD │ │ ├── AOD.fprj │ │ └── images │ │ │ ├── img_0030.png │ │ │ ├── img_0031.png │ │ │ ├── img_0032.png │ │ │ ├── img_arr_0014_00.png │ │ │ ├── img_arr_0014_01.png │ │ │ ├── img_arr_0014_02.png │ │ │ ├── img_arr_0014_03.png │ │ │ ├── img_arr_0014_04.png │ │ │ ├── img_arr_0014_05.png │ │ │ ├── img_arr_0014_06.png │ │ │ ├── img_arr_0014_07.png │ │ │ ├── img_arr_0014_08.png │ │ │ ├── img_arr_0014_09.png │ │ │ ├── img_arr_0015_00.png │ │ │ ├── img_arr_0015_01.png │ │ │ ├── img_arr_0015_02.png │ │ │ ├── img_arr_0015_03.png │ │ │ ├── img_arr_0015_04.png │ │ │ ├── img_arr_0015_05.png │ │ │ ├── img_arr_0015_06.png │ │ │ ├── img_arr_0015_07.png │ │ │ ├── img_arr_0015_08.png │ │ │ └── img_arr_0015_09.png │ ├── FlyingCat.fprj │ ├── app │ │ └── lua │ │ │ ├── cat_b.bin │ │ │ ├── cat_o.bin │ │ │ ├── delim.bin │ │ │ ├── image.lua │ │ │ ├── main.lua │ │ │ ├── num0.rle │ │ │ ├── num1.rle │ │ │ ├── num10.rle │ │ │ ├── num11.rle │ │ │ ├── num2.rle │ │ │ ├── num3.rle │ │ │ ├── num4.rle │ │ │ ├── num5.rle │ │ │ ├── num6.rle │ │ │ ├── num7.rle │ │ │ ├── num8.rle │ │ │ ├── num9.rle │ │ │ ├── num_0.bin │ │ │ ├── num_1.bin │ │ │ ├── num_2.bin │ │ │ ├── num_3.bin │ │ │ ├── num_4.bin │ │ │ ├── num_5.bin │ │ │ ├── num_6.bin │ │ │ ├── num_7.bin │ │ │ ├── num_8.bin │ │ │ ├── num_9.bin │ │ │ ├── root.lua │ │ │ └── tree.bin │ └── images │ │ ├── cat.png │ │ ├── cat_b.png │ │ ├── delim.png │ │ ├── num_0.png │ │ ├── num_1.png │ │ ├── num_2.png │ │ ├── num_3.png │ │ ├── num_4.png │ │ ├── num_5.png │ │ ├── num_6.png │ │ ├── num_7.png │ │ ├── num_8.png │ │ ├── num_9.png │ │ ├── preview.png │ │ └── tree.png └── dataman_dataSrc_list.txt ├── MiBand9 ├── TempControl │ ├── app │ │ └── lua │ │ │ ├── main.lua │ │ │ ├── memory.lua │ │ │ ├── temperature.lua │ │ │ └── watchVersion.lua │ ├── images │ │ └── preview_mb9.png │ ├── output │ │ └── preview_mb9.png │ └── watchface.fprj └── watchface_366269993 │ ├── app │ └── _lua │ │ └── smash │ │ ├── 0.rle │ │ ├── 1.rle │ │ ├── 2.rle │ │ ├── 3.rle │ │ ├── 4.rle │ │ ├── 5.rle │ │ ├── 6.rle │ │ ├── 7.rle │ │ ├── 8.rle │ │ ├── 9.rle │ │ ├── FRI.rle │ │ ├── MON.rle │ │ ├── SAT.rle │ │ ├── SUN.rle │ │ ├── THU.rle │ │ ├── TUE.rle │ │ ├── WED.rle │ │ ├── charge.rle │ │ ├── num%.rle │ │ ├── num0.rle │ │ ├── num1.rle │ │ ├── num2.rle │ │ ├── num3.rle │ │ ├── num4.rle │ │ ├── num5.rle │ │ ├── num6.rle │ │ ├── num7.rle │ │ ├── num8.rle │ │ ├── num9.rle │ │ ├── piece_bg.rle │ │ ├── piece_bottom.rle │ │ ├── piece_middle.rle │ │ ├── piece_top.rle │ │ ├── slash.rle │ │ └── smash.lua │ ├── images │ └── preview.png │ ├── preview.png │ └── watchface_366269993.fprj ├── MiBand9Pro ├── AnalogTimeTest │ ├── AnalogTimeTest.fprj │ ├── app │ │ └── lua │ │ │ ├── arrHour.png │ │ │ ├── arrMinute.png │ │ │ ├── arrSecond.png │ │ │ └── main.lua │ └── images │ │ └── preview_rgba.png ├── CurvedLabelTest │ ├── CurvedLabelTest.fprj │ ├── app │ │ └── lua │ │ │ ├── img.png │ │ │ └── main.lua │ └── images │ │ └── preview_rgba.png ├── ImageBarTest │ ├── ImageBarTest.fprj │ ├── app │ │ └── lua │ │ │ ├── img.png │ │ │ └── main.lua │ └── images │ │ └── preview_rgba.png └── PointerTest │ ├── PointerTest.fprj │ ├── app │ └── lua │ │ ├── img.png │ │ └── main.lua │ └── images │ └── preview_rgba.png ├── MiWatchS3 └── DigitalTime │ ├── DigitalTime.fprj │ ├── app │ └── lua │ │ └── main.lua │ └── images │ └── preview.png ├── README.md ├── RedmiWatch4 ├── AnalogTime │ ├── AnalogTime.fprj │ ├── app │ │ └── lua │ │ │ ├── arrHour.png │ │ │ ├── arrMinute.png │ │ │ ├── arrSecond.png │ │ │ ├── image.lua │ │ │ ├── img_0001.png │ │ │ ├── main.lua │ │ │ └── root.lua │ └── images │ │ ├── arrHour.png │ │ ├── arrMinute.png │ │ ├── arrSecond.png │ │ ├── img_0001.png │ │ └── preview.png ├── AnalogTimeAnimated │ ├── AnalogTimeAnimated.fprj │ ├── app │ │ └── lua │ │ │ ├── arrHour.png │ │ │ ├── arrMinute.png │ │ │ ├── arrSecond.png │ │ │ ├── image.lua │ │ │ ├── img_0001.png │ │ │ ├── main.lua │ │ │ └── root.lua │ └── images │ │ ├── arrHour.png │ │ ├── arrMinute.png │ │ ├── arrSecond.png │ │ ├── img_0001.png │ │ └── preview.png ├── Diffusion │ ├── Diffusion.fprj │ ├── app │ │ ├── main.lua │ │ ├── number │ │ │ ├── 1.rle │ │ │ ├── 10.rle │ │ │ ├── 11.rle │ │ │ ├── 12.rle │ │ │ ├── 2.rle │ │ │ ├── 3.rle │ │ │ ├── 4.rle │ │ │ ├── 5.rle │ │ │ ├── 6.rle │ │ │ ├── 7.rle │ │ │ ├── 8.rle │ │ │ ├── 9.rle │ │ │ ├── left.rle │ │ │ ├── leftmid.rle │ │ │ ├── min0.rle │ │ │ ├── min1.rle │ │ │ ├── min2.rle │ │ │ ├── min3.rle │ │ │ ├── min4.rle │ │ │ ├── min5.rle │ │ │ ├── min6.rle │ │ │ ├── min7.rle │ │ │ ├── min8.rle │ │ │ ├── min9.rle │ │ │ ├── num0.rle │ │ │ ├── num1.rle │ │ │ ├── num10.rle │ │ │ ├── num11.rle │ │ │ ├── num2.rle │ │ │ ├── num3.rle │ │ │ ├── num4.rle │ │ │ ├── num5.rle │ │ │ ├── num6.rle │ │ │ ├── num7.rle │ │ │ ├── num8.rle │ │ │ ├── num9.rle │ │ │ ├── right.rle │ │ │ └── rightmid.rle │ │ └── uidmap.map │ └── images │ │ └── preview.png └── TouchEvents │ ├── TouchEvents.fprj │ ├── app │ └── lua │ │ ├── cat.png │ │ ├── image.lua │ │ ├── main.lua │ │ └── root.lua │ └── images │ └── preview.png ├── _NonLuaModels ├── RedmiWatch3_Active │ ├── wf_FunctionCard │ │ ├── images │ │ │ ├── background.png │ │ │ ├── image_04_0000.png │ │ │ ├── image_04_0001.png │ │ │ ├── image_04_0002.png │ │ │ ├── image_04_0003.png │ │ │ ├── image_04_0004.png │ │ │ ├── image_04_0005.png │ │ │ ├── image_04_0006.png │ │ │ ├── image_04_0007.png │ │ │ ├── image_04_0008.png │ │ │ ├── image_04_0009.png │ │ │ ├── image_04_0010.png │ │ │ ├── image_09_0000.png │ │ │ ├── image_09_0001.png │ │ │ ├── image_09_0002.png │ │ │ ├── image_09_0003.png │ │ │ ├── image_09_0004.png │ │ │ ├── image_09_0005.png │ │ │ ├── image_09_0006.png │ │ │ ├── image_09_0007.png │ │ │ ├── image_09_0008.png │ │ │ ├── image_09_0009.png │ │ │ ├── image_10_0000.png │ │ │ ├── image_13_0000.png │ │ │ ├── image_13_0001.png │ │ │ ├── image_13_0002.png │ │ │ ├── image_13_0003.png │ │ │ ├── image_13_0004.png │ │ │ ├── image_13_0005.png │ │ │ ├── image_13_0006.png │ │ │ ├── image_13_0007.png │ │ │ ├── image_13_0008.png │ │ │ ├── image_13_0009.png │ │ │ ├── image_14_0000.png │ │ │ ├── image_15_0000.png │ │ │ ├── image_15_0001.png │ │ │ ├── image_15_0002.png │ │ │ ├── image_15_0003.png │ │ │ ├── image_15_0004.png │ │ │ ├── image_15_0005.png │ │ │ ├── image_15_0006.png │ │ │ ├── image_15_0007.png │ │ │ ├── image_15_0008.png │ │ │ ├── image_15_0009.png │ │ │ ├── image_17_0000.png │ │ │ ├── image_17_0001.png │ │ │ ├── image_17_0002.png │ │ │ ├── image_17_0003.png │ │ │ ├── image_17_0004.png │ │ │ ├── image_17_0005.png │ │ │ ├── image_17_0006.png │ │ │ ├── image_24_0000.png │ │ │ ├── image_24_0001.png │ │ │ ├── image_24_0002.png │ │ │ ├── image_24_0003.png │ │ │ ├── image_24_0004.png │ │ │ ├── image_24_0005.png │ │ │ ├── image_24_0006.png │ │ │ ├── image_24_0007.png │ │ │ ├── image_24_0008.png │ │ │ ├── image_24_0009.png │ │ │ ├── image_24_0010.png │ │ │ ├── image_28_0000.png │ │ │ ├── image_28_0001.png │ │ │ ├── image_28_0002.png │ │ │ ├── image_28_0003.png │ │ │ ├── image_28_0004.png │ │ │ ├── image_28_0005.png │ │ │ ├── image_28_0006.png │ │ │ ├── image_28_0007.png │ │ │ ├── image_28_0008.png │ │ │ ├── image_28_0009.png │ │ │ ├── image_35_0000.png │ │ │ ├── image_35_0001.png │ │ │ ├── image_35_0002.png │ │ │ ├── image_35_0003.png │ │ │ ├── image_35_0004.png │ │ │ ├── image_35_0005.png │ │ │ ├── image_35_0006.png │ │ │ ├── image_35_0007.png │ │ │ ├── image_35_0008.png │ │ │ ├── image_35_0009.png │ │ │ ├── image_35_0010.png │ │ │ ├── image_39_0000.png │ │ │ ├── image_39_0001.png │ │ │ ├── image_39_0002.png │ │ │ ├── image_39_0003.png │ │ │ ├── image_39_0004.png │ │ │ ├── image_39_0005.png │ │ │ ├── image_39_0006.png │ │ │ ├── image_39_0007.png │ │ │ ├── image_39_0008.png │ │ │ ├── image_39_0009.png │ │ │ ├── image_56_0000.png │ │ │ ├── image_56_0001.png │ │ │ ├── image_56_0002.png │ │ │ ├── image_56_0003.png │ │ │ ├── image_56_0004.png │ │ │ ├── image_56_0005.png │ │ │ ├── image_56_0006.png │ │ │ ├── image_56_0007.png │ │ │ ├── image_56_0008.png │ │ │ ├── image_56_0009.png │ │ │ ├── image_57_0000.png │ │ │ ├── image_57_0001.png │ │ │ ├── image_57_0002.png │ │ │ ├── image_57_0003.png │ │ │ ├── image_57_0004.png │ │ │ ├── image_57_0005.png │ │ │ ├── image_57_0006.png │ │ │ ├── image_57_0007.png │ │ │ ├── image_57_0008.png │ │ │ ├── image_57_0009.png │ │ │ ├── image_58_0000.png │ │ │ ├── image_59_0000.png │ │ │ ├── image_59_0001.png │ │ │ ├── image_59_0002.png │ │ │ ├── image_59_0003.png │ │ │ ├── image_59_0004.png │ │ │ ├── image_59_0005.png │ │ │ ├── image_59_0006.png │ │ │ ├── image_59_0007.png │ │ │ ├── image_59_0008.png │ │ │ ├── image_59_0009.png │ │ │ ├── image_60_0000.png │ │ │ ├── image_60_0001.png │ │ │ ├── image_60_0002.png │ │ │ ├── image_60_0003.png │ │ │ ├── image_60_0004.png │ │ │ ├── image_60_0005.png │ │ │ ├── image_60_0006.png │ │ │ ├── image_60_0007.png │ │ │ ├── image_60_0008.png │ │ │ ├── image_60_0009.png │ │ │ └── preview.png │ │ ├── output │ │ │ └── preview.png │ │ └── wf_FunctionCard.fprj │ └── wf_Inversion │ │ ├── images │ │ ├── background.png │ │ ├── image_04_0000.png │ │ ├── image_04_0001.png │ │ ├── image_04_0002.png │ │ ├── image_04_0003.png │ │ ├── image_04_0004.png │ │ ├── image_04_0005.png │ │ ├── image_04_0006.png │ │ ├── image_04_0007.png │ │ ├── image_04_0008.png │ │ ├── image_04_0009.png │ │ ├── image_04_0010.png │ │ ├── image_09_0000.png │ │ ├── image_09_0001.png │ │ ├── image_09_0002.png │ │ ├── image_09_0003.png │ │ ├── image_09_0004.png │ │ ├── image_09_0005.png │ │ ├── image_09_0006.png │ │ ├── image_09_0007.png │ │ ├── image_09_0008.png │ │ ├── image_09_0009.png │ │ ├── image_10_0000.png │ │ ├── image_13_0000.png │ │ ├── image_13_0001.png │ │ ├── image_13_0002.png │ │ ├── image_13_0003.png │ │ ├── image_13_0004.png │ │ ├── image_13_0005.png │ │ ├── image_13_0006.png │ │ ├── image_13_0007.png │ │ ├── image_13_0008.png │ │ ├── image_13_0009.png │ │ ├── image_14_0000.png │ │ ├── image_15_0000.png │ │ ├── image_15_0001.png │ │ ├── image_15_0002.png │ │ ├── image_15_0003.png │ │ ├── image_15_0004.png │ │ ├── image_15_0005.png │ │ ├── image_15_0006.png │ │ ├── image_15_0007.png │ │ ├── image_15_0008.png │ │ ├── image_15_0009.png │ │ ├── image_17_0000.png │ │ ├── image_17_0001.png │ │ ├── image_17_0002.png │ │ ├── image_17_0003.png │ │ ├── image_17_0004.png │ │ ├── image_17_0005.png │ │ ├── image_17_0006.png │ │ ├── image_24_0000.png │ │ ├── image_24_0001.png │ │ ├── image_24_0002.png │ │ ├── image_24_0003.png │ │ ├── image_24_0004.png │ │ ├── image_24_0005.png │ │ ├── image_24_0006.png │ │ ├── image_24_0007.png │ │ ├── image_24_0008.png │ │ ├── image_24_0009.png │ │ ├── image_24_0010.png │ │ ├── image_28_0000.png │ │ ├── image_28_0001.png │ │ ├── image_28_0002.png │ │ ├── image_28_0003.png │ │ ├── image_28_0004.png │ │ ├── image_28_0005.png │ │ ├── image_28_0006.png │ │ ├── image_28_0007.png │ │ ├── image_28_0008.png │ │ ├── image_28_0009.png │ │ ├── image_49_0000.png │ │ ├── image_49_0001.png │ │ ├── image_49_0002.png │ │ ├── image_49_0003.png │ │ ├── image_49_0004.png │ │ ├── image_49_0005.png │ │ ├── image_49_0006.png │ │ ├── image_49_0007.png │ │ ├── image_49_0008.png │ │ ├── image_49_0009.png │ │ ├── image_50_0000.png │ │ ├── image_56_0000.png │ │ ├── image_56_0001.png │ │ ├── image_56_0002.png │ │ ├── image_56_0003.png │ │ ├── image_56_0004.png │ │ ├── image_56_0005.png │ │ ├── image_56_0006.png │ │ ├── image_56_0007.png │ │ ├── image_56_0008.png │ │ ├── image_56_0009.png │ │ ├── image_57_0000.png │ │ ├── image_57_0001.png │ │ ├── image_57_0002.png │ │ ├── image_57_0003.png │ │ ├── image_57_0004.png │ │ ├── image_57_0005.png │ │ ├── image_57_0006.png │ │ ├── image_57_0007.png │ │ ├── image_57_0008.png │ │ ├── image_57_0009.png │ │ ├── image_58_0000.png │ │ ├── image_59_0000.png │ │ ├── image_59_0001.png │ │ ├── image_59_0002.png │ │ ├── image_59_0003.png │ │ ├── image_59_0004.png │ │ ├── image_59_0005.png │ │ ├── image_59_0006.png │ │ ├── image_59_0007.png │ │ ├── image_59_0008.png │ │ ├── image_59_0009.png │ │ ├── image_60_0000.png │ │ ├── image_60_0001.png │ │ ├── image_60_0002.png │ │ ├── image_60_0003.png │ │ ├── image_60_0004.png │ │ ├── image_60_0005.png │ │ ├── image_60_0006.png │ │ ├── image_60_0007.png │ │ ├── image_60_0008.png │ │ ├── image_60_0009.png │ │ ├── image_62_0000.png │ │ ├── image_62_0001.png │ │ ├── image_62_0002.png │ │ ├── image_62_0003.png │ │ ├── image_62_0004.png │ │ ├── image_62_0005.png │ │ ├── image_62_0006.png │ │ ├── image_62_0007.png │ │ ├── image_62_0008.png │ │ ├── image_62_0009.png │ │ ├── image_63_0000.png │ │ ├── image_63_0001.png │ │ ├── image_63_0002.png │ │ ├── image_63_0003.png │ │ ├── image_63_0004.png │ │ ├── image_63_0005.png │ │ ├── image_63_0006.png │ │ ├── image_63_0007.png │ │ ├── image_63_0008.png │ │ ├── image_63_0009.png │ │ └── preview.png │ │ ├── output │ │ └── preview.png │ │ └── wf_Inversion.fprj ├── RedmiWatch5_Active │ ├── DOTs │ │ ├── DOTs.fprj │ │ ├── images │ │ │ ├── img_0000.png │ │ │ ├── img_0001.png │ │ │ ├── img_0002.png │ │ │ ├── img_arr_0000_00.png │ │ │ ├── img_arr_0000_01.png │ │ │ ├── img_arr_0000_02.png │ │ │ ├── img_arr_0000_03.png │ │ │ ├── img_arr_0000_04.png │ │ │ ├── img_arr_0000_05.png │ │ │ ├── img_arr_0000_06.png │ │ │ ├── img_arr_0000_07.png │ │ │ ├── img_arr_0000_08.png │ │ │ ├── img_arr_0000_09.png │ │ │ ├── img_arr_0000_10.png │ │ │ ├── img_arr_0001_00.png │ │ │ ├── img_arr_0001_01.png │ │ │ ├── img_arr_0001_02.png │ │ │ ├── img_arr_0001_03.png │ │ │ ├── img_arr_0001_04.png │ │ │ ├── img_arr_0001_05.png │ │ │ ├── img_arr_0001_06.png │ │ │ ├── img_arr_0001_07.png │ │ │ ├── img_arr_0001_08.png │ │ │ ├── img_arr_0001_09.png │ │ │ ├── img_arr_0001_10.png │ │ │ ├── img_arr_0002_00.png │ │ │ ├── img_arr_0002_01.png │ │ │ ├── img_arr_0002_02.png │ │ │ ├── img_arr_0002_03.png │ │ │ ├── img_arr_0002_04.png │ │ │ ├── img_arr_0002_05.png │ │ │ ├── img_arr_0002_06.png │ │ │ ├── img_arr_0002_07.png │ │ │ ├── img_arr_0002_08.png │ │ │ ├── img_arr_0002_09.png │ │ │ ├── img_arr_0002_10.png │ │ │ ├── img_arr_0003_00.png │ │ │ ├── img_arr_0003_01.png │ │ │ ├── img_arr_0003_02.png │ │ │ ├── img_arr_0003_03.png │ │ │ ├── img_arr_0003_04.png │ │ │ ├── img_arr_0003_05.png │ │ │ ├── img_arr_0003_06.png │ │ │ ├── img_arr_0004_00.png │ │ │ ├── img_arr_0004_01.png │ │ │ ├── img_arr_0004_02.png │ │ │ ├── img_arr_0004_03.png │ │ │ ├── img_arr_0004_04.png │ │ │ ├── img_arr_0004_05.png │ │ │ ├── img_arr_0004_06.png │ │ │ ├── img_arr_0004_07.png │ │ │ ├── img_arr_0004_08.png │ │ │ ├── img_arr_0004_09.png │ │ │ ├── img_arr_0004_10.png │ │ │ ├── img_arr_0005_00.png │ │ │ ├── img_arr_0005_01.png │ │ │ ├── img_arr_0005_02.png │ │ │ ├── img_arr_0005_03.png │ │ │ ├── img_arr_0005_04.png │ │ │ ├── img_arr_0005_05.png │ │ │ ├── img_arr_0005_06.png │ │ │ ├── img_arr_0005_07.png │ │ │ ├── img_arr_0005_08.png │ │ │ ├── img_arr_0005_09.png │ │ │ ├── img_arr_0005_10.png │ │ │ ├── img_arr_0005_11.png │ │ │ ├── img_arr_0006_00.png │ │ │ ├── img_arr_0006_01.png │ │ │ ├── img_arr_0006_02.png │ │ │ ├── img_arr_0006_03.png │ │ │ ├── img_arr_0006_04.png │ │ │ ├── img_arr_0006_05.png │ │ │ ├── img_arr_0006_06.png │ │ │ ├── img_arr_0006_07.png │ │ │ ├── img_arr_0006_08.png │ │ │ ├── img_arr_0006_09.png │ │ │ ├── img_arr_0006_10.png │ │ │ ├── img_arr_0007_00.png │ │ │ ├── img_arr_0007_01.png │ │ │ ├── img_arr_0007_02.png │ │ │ ├── img_arr_0007_03.png │ │ │ ├── img_arr_0007_04.png │ │ │ ├── img_arr_0007_05.png │ │ │ ├── img_arr_0007_06.png │ │ │ ├── img_arr_0007_07.png │ │ │ ├── img_arr_0007_08.png │ │ │ ├── img_arr_0007_09.png │ │ │ ├── img_arr_0007_10.png │ │ │ ├── img_arr_0008_00.png │ │ │ ├── img_arr_0008_01.png │ │ │ ├── img_arr_0008_02.png │ │ │ ├── img_arr_0008_03.png │ │ │ ├── img_arr_0008_04.png │ │ │ ├── img_arr_0008_05.png │ │ │ ├── img_arr_0008_06.png │ │ │ ├── img_arr_0008_07.png │ │ │ ├── img_arr_0008_08.png │ │ │ ├── img_arr_0008_09.png │ │ │ ├── img_arr_0008_10.png │ │ │ └── preview.png │ │ └── output │ │ │ └── preview.png │ └── Dash │ │ ├── images │ │ ├── img_0000.png │ │ ├── img_0001.png │ │ ├── img_0002.png │ │ ├── img_0003.png │ │ ├── img_0004.png │ │ ├── img_0005.png │ │ ├── img_0006.png │ │ ├── img_0007.png │ │ ├── img_0008.png │ │ ├── img_0009.png │ │ ├── img_0010.png │ │ ├── img_0011.png │ │ ├── img_arr_0000_00.png │ │ ├── img_arr_0000_01.png │ │ ├── img_arr_0000_02.png │ │ ├── img_arr_0000_03.png │ │ ├── img_arr_0000_04.png │ │ ├── img_arr_0000_05.png │ │ ├── img_arr_0000_06.png │ │ ├── img_arr_0000_07.png │ │ ├── img_arr_0000_08.png │ │ ├── img_arr_0000_09.png │ │ ├── img_arr_0000_10.png │ │ ├── img_arr_0001_00.png │ │ ├── img_arr_0001_01.png │ │ ├── img_arr_0001_02.png │ │ ├── img_arr_0001_03.png │ │ ├── img_arr_0001_04.png │ │ ├── img_arr_0001_05.png │ │ ├── img_arr_0001_06.png │ │ ├── img_arr_0001_07.png │ │ ├── img_arr_0001_08.png │ │ ├── img_arr_0001_09.png │ │ ├── img_arr_0001_10.png │ │ ├── img_arr_0002_00.png │ │ ├── img_arr_0002_01.png │ │ ├── img_arr_0002_02.png │ │ ├── img_arr_0002_03.png │ │ ├── img_arr_0002_04.png │ │ ├── img_arr_0003_00.png │ │ ├── img_arr_0003_01.png │ │ ├── img_arr_0003_02.png │ │ ├── img_arr_0004_00.png │ │ ├── img_arr_0004_01.png │ │ ├── img_arr_0004_02.png │ │ ├── img_arr_0004_03.png │ │ ├── img_arr_0005_00.png │ │ ├── img_arr_0005_01.png │ │ ├── img_arr_0005_02.png │ │ ├── img_arr_0005_03.png │ │ ├── img_arr_0005_04.png │ │ ├── img_arr_0005_05.png │ │ ├── img_arr_0005_06.png │ │ ├── img_arr_0005_07.png │ │ ├── img_arr_0005_08.png │ │ ├── img_arr_0005_09.png │ │ ├── img_arr_0005_10.png │ │ ├── img_arr_0006_00.png │ │ ├── img_arr_0006_01.png │ │ ├── img_arr_0006_02.png │ │ ├── img_arr_0006_03.png │ │ ├── img_arr_0006_04.png │ │ ├── img_arr_0006_05.png │ │ ├── img_arr_0006_06.png │ │ ├── img_arr_0007_00.png │ │ ├── img_arr_0007_01.png │ │ ├── img_arr_0007_02.png │ │ ├── img_arr_0007_03.png │ │ ├── img_arr_0007_04.png │ │ ├── img_arr_0007_05.png │ │ ├── img_arr_0007_06.png │ │ ├── img_arr_0007_07.png │ │ ├── img_arr_0007_08.png │ │ ├── img_arr_0007_09.png │ │ ├── img_arr_0007_10.png │ │ ├── img_arr_0007_11.png │ │ ├── img_arr_0007_12.png │ │ ├── img_arr_0007_13.png │ │ ├── img_arr_0007_14.png │ │ ├── img_arr_0007_15.png │ │ ├── img_arr_0007_16.png │ │ ├── img_arr_0007_17.png │ │ ├── img_arr_0007_18.png │ │ ├── img_arr_0007_19.png │ │ ├── img_arr_0007_20.png │ │ ├── img_arr_0007_21.png │ │ ├── img_arr_0007_22.png │ │ ├── img_arr_0007_23.png │ │ ├── img_arr_0007_24.png │ │ ├── img_arr_0007_25.png │ │ ├── img_arr_0007_26.png │ │ ├── img_arr_0007_27.png │ │ ├── img_arr_0007_28.png │ │ ├── img_arr_0007_29.png │ │ ├── img_arr_0007_30.png │ │ ├── img_arr_0007_31.png │ │ ├── img_arr_0007_32.png │ │ ├── img_arr_0007_33.png │ │ ├── img_arr_0007_34.png │ │ ├── img_arr_0007_35.png │ │ ├── img_arr_0007_36.png │ │ ├── img_arr_0007_37.png │ │ ├── img_arr_0007_38.png │ │ ├── img_arr_0007_39.png │ │ ├── img_arr_0007_40.png │ │ ├── img_arr_0007_41.png │ │ ├── img_arr_0007_42.png │ │ ├── img_arr_0007_43.png │ │ ├── img_arr_0007_44.png │ │ ├── img_arr_0007_45.png │ │ ├── img_arr_0007_46.png │ │ ├── img_arr_0007_47.png │ │ ├── img_arr_0007_48.png │ │ ├── img_arr_0007_49.png │ │ ├── img_arr_0007_50.png │ │ ├── img_arr_0007_51.png │ │ ├── img_arr_0007_52.png │ │ ├── img_arr_0007_53.png │ │ ├── img_arr_0007_54.png │ │ ├── img_arr_0007_55.png │ │ ├── img_arr_0007_56.png │ │ ├── img_arr_0007_57.png │ │ ├── img_arr_0007_58.png │ │ ├── img_arr_0007_59.png │ │ ├── img_arr_0007_60.png │ │ └── preview.png │ │ ├── output │ │ ├── preview.png │ │ └── preview_aod.png │ │ └── wf_dash.fprj └── RedmiWatch5_Lite │ ├── DOTs │ ├── AOD │ │ ├── DOTs.fprj │ │ └── images │ │ │ ├── img_0000.png │ │ │ ├── img_0001.png │ │ │ ├── img_0002.png │ │ │ ├── img_arr_0000_00.png │ │ │ ├── img_arr_0000_01.png │ │ │ ├── img_arr_0000_02.png │ │ │ ├── img_arr_0000_03.png │ │ │ ├── img_arr_0000_04.png │ │ │ ├── img_arr_0000_05.png │ │ │ ├── img_arr_0000_06.png │ │ │ ├── img_arr_0000_07.png │ │ │ ├── img_arr_0000_08.png │ │ │ ├── img_arr_0000_09.png │ │ │ ├── img_arr_0000_10.png │ │ │ ├── img_arr_0001_00.png │ │ │ ├── img_arr_0001_01.png │ │ │ ├── img_arr_0001_02.png │ │ │ ├── img_arr_0001_03.png │ │ │ ├── img_arr_0001_04.png │ │ │ ├── img_arr_0001_05.png │ │ │ ├── img_arr_0001_06.png │ │ │ ├── img_arr_0001_07.png │ │ │ ├── img_arr_0001_08.png │ │ │ ├── img_arr_0001_09.png │ │ │ ├── img_arr_0001_10.png │ │ │ ├── img_arr_0002_00.png │ │ │ ├── img_arr_0002_01.png │ │ │ ├── img_arr_0002_02.png │ │ │ ├── img_arr_0002_03.png │ │ │ ├── img_arr_0002_04.png │ │ │ ├── img_arr_0002_05.png │ │ │ ├── img_arr_0002_06.png │ │ │ ├── img_arr_0002_07.png │ │ │ ├── img_arr_0002_08.png │ │ │ ├── img_arr_0002_09.png │ │ │ ├── img_arr_0002_10.png │ │ │ ├── img_arr_0003_00.png │ │ │ ├── img_arr_0003_01.png │ │ │ ├── img_arr_0003_02.png │ │ │ ├── img_arr_0003_03.png │ │ │ ├── img_arr_0003_04.png │ │ │ ├── img_arr_0003_05.png │ │ │ ├── img_arr_0003_06.png │ │ │ ├── img_arr_0004_00.png │ │ │ ├── img_arr_0004_01.png │ │ │ ├── img_arr_0004_02.png │ │ │ ├── img_arr_0004_03.png │ │ │ ├── img_arr_0004_04.png │ │ │ ├── img_arr_0004_05.png │ │ │ ├── img_arr_0004_06.png │ │ │ ├── img_arr_0004_07.png │ │ │ ├── img_arr_0004_08.png │ │ │ ├── img_arr_0004_09.png │ │ │ ├── img_arr_0004_10.png │ │ │ ├── img_arr_0005_00.png │ │ │ ├── img_arr_0005_01.png │ │ │ ├── img_arr_0005_02.png │ │ │ ├── img_arr_0005_03.png │ │ │ ├── img_arr_0005_04.png │ │ │ ├── img_arr_0005_05.png │ │ │ ├── img_arr_0005_06.png │ │ │ ├── img_arr_0005_07.png │ │ │ ├── img_arr_0005_08.png │ │ │ ├── img_arr_0005_09.png │ │ │ ├── img_arr_0005_10.png │ │ │ ├── img_arr_0005_11.png │ │ │ ├── img_arr_0006_00.png │ │ │ ├── img_arr_0006_01.png │ │ │ ├── img_arr_0006_02.png │ │ │ ├── img_arr_0006_03.png │ │ │ ├── img_arr_0006_04.png │ │ │ ├── img_arr_0006_05.png │ │ │ ├── img_arr_0006_06.png │ │ │ ├── img_arr_0006_07.png │ │ │ ├── img_arr_0006_08.png │ │ │ ├── img_arr_0006_09.png │ │ │ ├── img_arr_0006_10.png │ │ │ ├── img_arr_0007_00.png │ │ │ ├── img_arr_0007_01.png │ │ │ ├── img_arr_0007_02.png │ │ │ ├── img_arr_0007_03.png │ │ │ ├── img_arr_0007_04.png │ │ │ ├── img_arr_0007_05.png │ │ │ ├── img_arr_0007_06.png │ │ │ ├── img_arr_0007_07.png │ │ │ ├── img_arr_0007_08.png │ │ │ ├── img_arr_0007_09.png │ │ │ ├── img_arr_0007_10.png │ │ │ ├── img_arr_0008_00.png │ │ │ ├── img_arr_0008_01.png │ │ │ ├── img_arr_0008_02.png │ │ │ ├── img_arr_0008_03.png │ │ │ ├── img_arr_0008_04.png │ │ │ ├── img_arr_0008_05.png │ │ │ ├── img_arr_0008_06.png │ │ │ ├── img_arr_0008_07.png │ │ │ ├── img_arr_0008_08.png │ │ │ ├── img_arr_0008_09.png │ │ │ ├── img_arr_0008_10.png │ │ │ └── preview.png │ ├── DOTs.fprj │ ├── images │ │ ├── img_0000.png │ │ ├── img_0001.png │ │ ├── img_0002.png │ │ ├── img_arr_0000_00.png │ │ ├── img_arr_0000_01.png │ │ ├── img_arr_0000_02.png │ │ ├── img_arr_0000_03.png │ │ ├── img_arr_0000_04.png │ │ ├── img_arr_0000_05.png │ │ ├── img_arr_0000_06.png │ │ ├── img_arr_0000_07.png │ │ ├── img_arr_0000_08.png │ │ ├── img_arr_0000_09.png │ │ ├── img_arr_0000_10.png │ │ ├── img_arr_0001_00.png │ │ ├── img_arr_0001_01.png │ │ ├── img_arr_0001_02.png │ │ ├── img_arr_0001_03.png │ │ ├── img_arr_0001_04.png │ │ ├── img_arr_0001_05.png │ │ ├── img_arr_0001_06.png │ │ ├── img_arr_0001_07.png │ │ ├── img_arr_0001_08.png │ │ ├── img_arr_0001_09.png │ │ ├── img_arr_0001_10.png │ │ ├── img_arr_0002_00.png │ │ ├── img_arr_0002_01.png │ │ ├── img_arr_0002_02.png │ │ ├── img_arr_0002_03.png │ │ ├── img_arr_0002_04.png │ │ ├── img_arr_0002_05.png │ │ ├── img_arr_0002_06.png │ │ ├── img_arr_0002_07.png │ │ ├── img_arr_0002_08.png │ │ ├── img_arr_0002_09.png │ │ ├── img_arr_0002_10.png │ │ ├── img_arr_0003_00.png │ │ ├── img_arr_0003_01.png │ │ ├── img_arr_0003_02.png │ │ ├── img_arr_0003_03.png │ │ ├── img_arr_0003_04.png │ │ ├── img_arr_0003_05.png │ │ ├── img_arr_0003_06.png │ │ ├── img_arr_0004_00.png │ │ ├── img_arr_0004_01.png │ │ ├── img_arr_0004_02.png │ │ ├── img_arr_0004_03.png │ │ ├── img_arr_0004_04.png │ │ ├── img_arr_0004_05.png │ │ ├── img_arr_0004_06.png │ │ ├── img_arr_0004_07.png │ │ ├── img_arr_0004_08.png │ │ ├── img_arr_0004_09.png │ │ ├── img_arr_0004_10.png │ │ ├── img_arr_0005_00.png │ │ ├── img_arr_0005_01.png │ │ ├── img_arr_0005_02.png │ │ ├── img_arr_0005_03.png │ │ ├── img_arr_0005_04.png │ │ ├── img_arr_0005_05.png │ │ ├── img_arr_0005_06.png │ │ ├── img_arr_0005_07.png │ │ ├── img_arr_0005_08.png │ │ ├── img_arr_0005_09.png │ │ ├── img_arr_0005_10.png │ │ ├── img_arr_0005_11.png │ │ ├── img_arr_0006_00.png │ │ ├── img_arr_0006_01.png │ │ ├── img_arr_0006_02.png │ │ ├── img_arr_0006_03.png │ │ ├── img_arr_0006_04.png │ │ ├── img_arr_0006_05.png │ │ ├── img_arr_0006_06.png │ │ ├── img_arr_0006_07.png │ │ ├── img_arr_0006_08.png │ │ ├── img_arr_0006_09.png │ │ ├── img_arr_0006_10.png │ │ ├── img_arr_0007_00.png │ │ ├── img_arr_0007_01.png │ │ ├── img_arr_0007_02.png │ │ ├── img_arr_0007_03.png │ │ ├── img_arr_0007_04.png │ │ ├── img_arr_0007_05.png │ │ ├── img_arr_0007_06.png │ │ ├── img_arr_0007_07.png │ │ ├── img_arr_0007_08.png │ │ ├── img_arr_0007_09.png │ │ ├── img_arr_0007_10.png │ │ ├── img_arr_0008_00.png │ │ ├── img_arr_0008_01.png │ │ ├── img_arr_0008_02.png │ │ ├── img_arr_0008_03.png │ │ ├── img_arr_0008_04.png │ │ ├── img_arr_0008_05.png │ │ ├── img_arr_0008_06.png │ │ ├── img_arr_0008_07.png │ │ ├── img_arr_0008_08.png │ │ ├── img_arr_0008_09.png │ │ ├── img_arr_0008_10.png │ │ └── preview.png │ └── output │ │ ├── preview.png │ │ └── preview_aod.png │ └── Minimal │ ├── Minimal.fprj │ ├── images │ ├── img_arr_0000_00.png │ ├── img_arr_0000_01.png │ ├── img_arr_0000_02.png │ ├── img_arr_0000_03.png │ ├── img_arr_0000_04.png │ ├── img_arr_0000_05.png │ ├── img_arr_0000_06.png │ ├── img_arr_0000_07.png │ ├── img_arr_0000_08.png │ ├── img_arr_0000_09.png │ ├── img_arr_0001_00.png │ ├── img_arr_0001_01.png │ ├── img_arr_0001_02.png │ ├── img_arr_0001_03.png │ ├── img_arr_0001_04.png │ ├── img_arr_0001_05.png │ ├── img_arr_0001_06.png │ ├── img_arr_0001_07.png │ ├── img_arr_0001_08.png │ ├── img_arr_0001_09.png │ ├── img_arr_0002_00.png │ ├── img_arr_0002_01.png │ ├── img_arr_0002_02.png │ ├── img_arr_0002_03.png │ ├── img_arr_0002_04.png │ ├── img_arr_0002_05.png │ ├── img_arr_0002_06.png │ ├── img_arr_0002_07.png │ ├── img_arr_0002_08.png │ ├── img_arr_0002_09.png │ ├── img_arr_0003_00.png │ ├── img_arr_0003_01.png │ ├── img_arr_0003_02.png │ ├── img_arr_0003_03.png │ ├── img_arr_0003_04.png │ ├── img_arr_0003_05.png │ ├── img_arr_0003_06.png │ ├── img_arr_0003_07.png │ ├── img_arr_0003_08.png │ ├── img_arr_0003_09.png │ ├── img_arr_0005_00.png │ ├── img_arr_0005_01.png │ ├── img_arr_0005_02.png │ ├── img_arr_0005_03.png │ ├── img_arr_0005_04.png │ ├── img_arr_0005_05.png │ ├── img_arr_0005_06.png │ ├── img_arr_0005_07.png │ ├── img_arr_0005_08.png │ ├── img_arr_0005_09.png │ ├── img_arr_0005_10.png │ ├── img_arr_0005_10_.png │ ├── img_arr_0005_11.png │ ├── img_back.png │ └── preview.png │ └── output │ └── preview.png ├── _simulator └── RW4 │ └── diffusion │ ├── dataman.lua │ ├── main.lua │ └── number │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── left.png │ ├── leftmid.png │ ├── min0.png │ ├── min1.png │ ├── min2.png │ ├── min3.png │ ├── min4.png │ ├── min5.png │ ├── min6.png │ ├── min7.png │ ├── min8.png │ ├── min9.png │ ├── num0.png │ ├── num1.png │ ├── num10.png │ ├── num11.png │ ├── num2.png │ ├── num3.png │ ├── num4.png │ ├── num5.png │ ├── num6.png │ ├── num7.png │ ├── num8.png │ ├── num9.png │ ├── right.png │ └── rightmid.png ├── img └── lvgl_conv_settings.png └── readmeRU.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/.gitignore -------------------------------------------------------------------------------- /MiBand8Pro/Accelerometer/Accelerometer.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Accelerometer/Accelerometer.fprj -------------------------------------------------------------------------------- /MiBand8Pro/Accelerometer/app/lua/cat.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Accelerometer/app/lua/cat.bin -------------------------------------------------------------------------------- /MiBand8Pro/Accelerometer/app/lua/image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Accelerometer/app/lua/image.lua -------------------------------------------------------------------------------- /MiBand8Pro/Accelerometer/app/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Accelerometer/app/lua/main.lua -------------------------------------------------------------------------------- /MiBand8Pro/Accelerometer/app/lua/root.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Accelerometer/app/lua/root.lua -------------------------------------------------------------------------------- /MiBand8Pro/Accelerometer/images/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Accelerometer/images/cat.png -------------------------------------------------------------------------------- /MiBand8Pro/Accelerometer/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Accelerometer/images/preview.png -------------------------------------------------------------------------------- /MiBand8Pro/Accelerometer/output/Accelerometer.face: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Accelerometer/output/Accelerometer.face -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTime/AnalogTime.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTime/AnalogTime.fprj -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTime/app/lua/arrHour.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTime/app/lua/arrHour.bin -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTime/app/lua/arrMinute.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTime/app/lua/arrMinute.bin -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTime/app/lua/arrSecond.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTime/app/lua/arrSecond.bin -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTime/app/lua/image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTime/app/lua/image.lua -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTime/app/lua/img_0001.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTime/app/lua/img_0001.bin -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTime/app/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTime/app/lua/main.lua -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTime/app/lua/root.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTime/app/lua/root.lua -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTime/images/arrHour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTime/images/arrHour.png -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTime/images/arrMinute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTime/images/arrMinute.png -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTime/images/arrSecond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTime/images/arrSecond.png -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTime/images/img_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTime/images/img_0001.png -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTime/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTime/images/preview.png -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTime/output/Analog Time.face: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTime/output/Analog Time.face -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTimeAnimated/AnalogTimeAnimated.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTimeAnimated/AnalogTimeAnimated.fprj -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTimeAnimated/app/lua/arrHour.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTimeAnimated/app/lua/arrHour.bin -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTimeAnimated/app/lua/arrMinute.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTimeAnimated/app/lua/arrMinute.bin -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTimeAnimated/app/lua/arrSecond.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTimeAnimated/app/lua/arrSecond.bin -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTimeAnimated/app/lua/image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTimeAnimated/app/lua/image.lua -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTimeAnimated/app/lua/img_0001.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTimeAnimated/app/lua/img_0001.bin -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTimeAnimated/app/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTimeAnimated/app/lua/main.lua -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTimeAnimated/app/lua/root.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTimeAnimated/app/lua/root.lua -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTimeAnimated/images/arrHour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTimeAnimated/images/arrHour.png -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTimeAnimated/images/arrMinute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTimeAnimated/images/arrMinute.png -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTimeAnimated/images/arrSecond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTimeAnimated/images/arrSecond.png -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTimeAnimated/images/img_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTimeAnimated/images/img_0001.png -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTimeAnimated/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTimeAnimated/images/preview.png -------------------------------------------------------------------------------- /MiBand8Pro/AnalogTimeAnimated/output/Analog Time Anim.face: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/AnalogTimeAnimated/output/Analog Time Anim.face -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/AOD.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/AOD.fprj -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_0030.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_0031.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_0032.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0014_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0014_00.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0014_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0014_01.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0014_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0014_02.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0014_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0014_03.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0014_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0014_04.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0014_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0014_05.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0014_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0014_06.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0014_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0014_07.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0014_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0014_08.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0014_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0014_09.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0015_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0015_00.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0015_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0015_01.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0015_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0015_02.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0015_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0015_03.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0015_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0015_04.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0015_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0015_05.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0015_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0015_06.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0015_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0015_07.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0015_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0015_08.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/AOD/images/img_arr_0015_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/AOD/images/img_arr_0015_09.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/Animation.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/Animation.fprj -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/cat_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/cat_01.bin -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/cat_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/cat_02.bin -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/cat_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/cat_03.bin -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/image.lua -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/main.lua -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/num0.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/num0.rle -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/num1.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/num1.rle -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/num10.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/num10.rle -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/num11.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/num11.rle -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/num2.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/num2.rle -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/num3.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/num3.rle -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/num4.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/num4.rle -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/num5.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/num5.rle -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/num6.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/num6.rle -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/num7.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/num7.rle -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/num8.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/num8.rle -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/num9.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/num9.rle -------------------------------------------------------------------------------- /MiBand8Pro/Animation/app/lua/root.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/app/lua/root.lua -------------------------------------------------------------------------------- /MiBand8Pro/Animation/images/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/images/cat.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/images/cat_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/images/cat_b.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/images/delim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/images/delim.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/images/num_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/images/num_0.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/images/num_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/images/num_1.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/images/num_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/images/num_2.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/images/num_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/images/num_3.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/images/num_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/images/num_4.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/images/num_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/images/num_5.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/images/num_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/images/num_6.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/images/num_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/images/num_7.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/images/num_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/images/num_8.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/images/num_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/images/num_9.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/images/preview.png -------------------------------------------------------------------------------- /MiBand8Pro/Animation/images/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Animation/images/tree.png -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/Diffusion.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/Diffusion.fprj -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/main.lua -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/1.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/1.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/10.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/10.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/11.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/11.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/12.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/12.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/2.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/2.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/3.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/3.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/4.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/4.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/5.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/5.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/6.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/6.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/7.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/7.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/8.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/8.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/9.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/9.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/left.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/left.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/leftmid.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/leftmid.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/min0.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/min0.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/min1.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/min1.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/min2.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/min2.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/min3.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/min3.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/min4.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/min4.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/min5.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/min5.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/min6.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/min6.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/min7.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/min7.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/min8.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/min8.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/min9.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/min9.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/num0.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/num0.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/num1.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/num1.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/num10.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/num10.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/num11.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/num11.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/num2.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/num2.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/num3.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/num3.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/num4.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/num4.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/num5.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/num5.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/num6.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/num6.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/num7.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/num7.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/num8.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/num8.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/num9.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/num9.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/right.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/right.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/number/rightmid.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/number/rightmid.rle -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/app/uidmap.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/app/uidmap.map -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/images/preview.png -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/output/Diffusion.face: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/output/Diffusion.face -------------------------------------------------------------------------------- /MiBand8Pro/Diffusion/output/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/Diffusion/output/preview.png -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/DigitalTime.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/DigitalTime.fprj -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/app/lua/delim.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/app/lua/delim.bin -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/app/lua/image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/app/lua/image.lua -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/app/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/app/lua/main.lua -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/app/lua/num_0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/app/lua/num_0.bin -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/app/lua/num_1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/app/lua/num_1.bin -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/app/lua/num_2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/app/lua/num_2.bin -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/app/lua/num_3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/app/lua/num_3.bin -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/app/lua/num_4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/app/lua/num_4.bin -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/app/lua/num_5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/app/lua/num_5.bin -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/app/lua/num_6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/app/lua/num_6.bin -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/app/lua/num_7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/app/lua/num_7.bin -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/app/lua/num_8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/app/lua/num_8.bin -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/app/lua/num_9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/app/lua/num_9.bin -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/app/lua/root.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/app/lua/root.lua -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/images/img_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/images/img_0001.png -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/images/img_arr_0000_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/images/img_arr_0000_00.png -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/images/img_arr_0000_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/images/img_arr_0000_01.png -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/images/img_arr_0000_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/images/img_arr_0000_02.png -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/images/img_arr_0000_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/images/img_arr_0000_03.png -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/images/img_arr_0000_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/images/img_arr_0000_04.png -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/images/img_arr_0000_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/images/img_arr_0000_05.png -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/images/img_arr_0000_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/images/img_arr_0000_06.png -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/images/img_arr_0000_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/images/img_arr_0000_07.png -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/images/img_arr_0000_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/images/img_arr_0000_08.png -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/images/img_arr_0000_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/images/img_arr_0000_09.png -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/images/preview.png -------------------------------------------------------------------------------- /MiBand8Pro/DigitalTime/output/Digital Time.face: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/DigitalTime/output/Digital Time.face -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/AOD.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/AOD.fprj -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_0030.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_0031.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_0032.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_00.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_01.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_02.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_03.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_04.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_05.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_06.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_07.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_08.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0014_09.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_00.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_01.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_02.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_03.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_04.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_05.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_06.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_07.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_08.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/AOD/images/img_arr_0015_09.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/FlyingCat.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/FlyingCat.fprj -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/cat_b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/cat_b.bin -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/cat_o.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/cat_o.bin -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/delim.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/delim.bin -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/image.lua -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/main.lua -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num0.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num0.rle -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num1.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num1.rle -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num10.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num10.rle -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num11.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num11.rle -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num2.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num2.rle -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num3.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num3.rle -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num4.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num4.rle -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num5.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num5.rle -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num6.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num6.rle -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num7.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num7.rle -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num8.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num8.rle -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num9.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num9.rle -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num_0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num_0.bin -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num_1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num_1.bin -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num_2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num_2.bin -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num_3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num_3.bin -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num_4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num_4.bin -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num_5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num_5.bin -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num_6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num_6.bin -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num_7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num_7.bin -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num_8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num_8.bin -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/num_9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/num_9.bin -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/root.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/root.lua -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/app/lua/tree.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/app/lua/tree.bin -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/images/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/images/cat.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/images/cat_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/images/cat_b.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/images/delim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/images/delim.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/images/num_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/images/num_0.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/images/num_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/images/num_1.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/images/num_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/images/num_2.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/images/num_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/images/num_3.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/images/num_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/images/num_4.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/images/num_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/images/num_5.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/images/num_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/images/num_6.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/images/num_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/images/num_7.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/images/num_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/images/num_8.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/images/num_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/images/num_9.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/images/preview.png -------------------------------------------------------------------------------- /MiBand8Pro/FlyingCat/images/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/FlyingCat/images/tree.png -------------------------------------------------------------------------------- /MiBand8Pro/dataman_dataSrc_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand8Pro/dataman_dataSrc_list.txt -------------------------------------------------------------------------------- /MiBand9/TempControl/app/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/TempControl/app/lua/main.lua -------------------------------------------------------------------------------- /MiBand9/TempControl/app/lua/memory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/TempControl/app/lua/memory.lua -------------------------------------------------------------------------------- /MiBand9/TempControl/app/lua/temperature.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/TempControl/app/lua/temperature.lua -------------------------------------------------------------------------------- /MiBand9/TempControl/app/lua/watchVersion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/TempControl/app/lua/watchVersion.lua -------------------------------------------------------------------------------- /MiBand9/TempControl/images/preview_mb9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/TempControl/images/preview_mb9.png -------------------------------------------------------------------------------- /MiBand9/TempControl/output/preview_mb9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/TempControl/output/preview_mb9.png -------------------------------------------------------------------------------- /MiBand9/TempControl/watchface.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/TempControl/watchface.fprj -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/0.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/0.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/1.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/1.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/2.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/2.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/3.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/3.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/4.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/4.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/5.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/5.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/6.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/6.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/7.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/7.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/8.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/8.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/9.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/9.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/FRI.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/FRI.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/MON.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/MON.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/SAT.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/SAT.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/SUN.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/SUN.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/THU.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/THU.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/TUE.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/TUE.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/WED.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/WED.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/charge.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/charge.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/num%.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/num%.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/num0.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/num0.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/num1.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/num1.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/num2.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/num2.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/num3.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/num3.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/num4.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/num4.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/num5.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/num5.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/num6.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/num6.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/num7.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/num7.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/num8.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/num8.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/num9.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/num9.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/piece_bg.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/piece_bg.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/piece_bottom.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/piece_bottom.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/piece_middle.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/piece_middle.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/piece_top.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/piece_top.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/slash.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/slash.rle -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/app/_lua/smash/smash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/app/_lua/smash/smash.lua -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/images/preview.png -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/preview.png -------------------------------------------------------------------------------- /MiBand9/watchface_366269993/watchface_366269993.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9/watchface_366269993/watchface_366269993.fprj -------------------------------------------------------------------------------- /MiBand9Pro/AnalogTimeTest/AnalogTimeTest.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/AnalogTimeTest/AnalogTimeTest.fprj -------------------------------------------------------------------------------- /MiBand9Pro/AnalogTimeTest/app/lua/arrHour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/AnalogTimeTest/app/lua/arrHour.png -------------------------------------------------------------------------------- /MiBand9Pro/AnalogTimeTest/app/lua/arrMinute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/AnalogTimeTest/app/lua/arrMinute.png -------------------------------------------------------------------------------- /MiBand9Pro/AnalogTimeTest/app/lua/arrSecond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/AnalogTimeTest/app/lua/arrSecond.png -------------------------------------------------------------------------------- /MiBand9Pro/AnalogTimeTest/app/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/AnalogTimeTest/app/lua/main.lua -------------------------------------------------------------------------------- /MiBand9Pro/AnalogTimeTest/images/preview_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/AnalogTimeTest/images/preview_rgba.png -------------------------------------------------------------------------------- /MiBand9Pro/CurvedLabelTest/CurvedLabelTest.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/CurvedLabelTest/CurvedLabelTest.fprj -------------------------------------------------------------------------------- /MiBand9Pro/CurvedLabelTest/app/lua/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/CurvedLabelTest/app/lua/img.png -------------------------------------------------------------------------------- /MiBand9Pro/CurvedLabelTest/app/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/CurvedLabelTest/app/lua/main.lua -------------------------------------------------------------------------------- /MiBand9Pro/CurvedLabelTest/images/preview_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/CurvedLabelTest/images/preview_rgba.png -------------------------------------------------------------------------------- /MiBand9Pro/ImageBarTest/ImageBarTest.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/ImageBarTest/ImageBarTest.fprj -------------------------------------------------------------------------------- /MiBand9Pro/ImageBarTest/app/lua/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/ImageBarTest/app/lua/img.png -------------------------------------------------------------------------------- /MiBand9Pro/ImageBarTest/app/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/ImageBarTest/app/lua/main.lua -------------------------------------------------------------------------------- /MiBand9Pro/ImageBarTest/images/preview_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/ImageBarTest/images/preview_rgba.png -------------------------------------------------------------------------------- /MiBand9Pro/PointerTest/PointerTest.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/PointerTest/PointerTest.fprj -------------------------------------------------------------------------------- /MiBand9Pro/PointerTest/app/lua/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/PointerTest/app/lua/img.png -------------------------------------------------------------------------------- /MiBand9Pro/PointerTest/app/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/PointerTest/app/lua/main.lua -------------------------------------------------------------------------------- /MiBand9Pro/PointerTest/images/preview_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiBand9Pro/PointerTest/images/preview_rgba.png -------------------------------------------------------------------------------- /MiWatchS3/DigitalTime/DigitalTime.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiWatchS3/DigitalTime/DigitalTime.fprj -------------------------------------------------------------------------------- /MiWatchS3/DigitalTime/app/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiWatchS3/DigitalTime/app/lua/main.lua -------------------------------------------------------------------------------- /MiWatchS3/DigitalTime/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/MiWatchS3/DigitalTime/images/preview.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/README.md -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTime/AnalogTime.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTime/AnalogTime.fprj -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTime/app/lua/arrHour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTime/app/lua/arrHour.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTime/app/lua/arrMinute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTime/app/lua/arrMinute.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTime/app/lua/arrSecond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTime/app/lua/arrSecond.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTime/app/lua/image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTime/app/lua/image.lua -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTime/app/lua/img_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTime/app/lua/img_0001.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTime/app/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTime/app/lua/main.lua -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTime/app/lua/root.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTime/app/lua/root.lua -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTime/images/arrHour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTime/images/arrHour.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTime/images/arrMinute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTime/images/arrMinute.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTime/images/arrSecond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTime/images/arrSecond.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTime/images/img_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTime/images/img_0001.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTime/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTime/images/preview.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTimeAnimated/AnalogTimeAnimated.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTimeAnimated/AnalogTimeAnimated.fprj -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTimeAnimated/app/lua/arrHour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTimeAnimated/app/lua/arrHour.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTimeAnimated/app/lua/arrMinute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTimeAnimated/app/lua/arrMinute.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTimeAnimated/app/lua/arrSecond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTimeAnimated/app/lua/arrSecond.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTimeAnimated/app/lua/image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTimeAnimated/app/lua/image.lua -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTimeAnimated/app/lua/img_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTimeAnimated/app/lua/img_0001.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTimeAnimated/app/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTimeAnimated/app/lua/main.lua -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTimeAnimated/app/lua/root.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTimeAnimated/app/lua/root.lua -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTimeAnimated/images/arrHour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTimeAnimated/images/arrHour.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTimeAnimated/images/arrMinute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTimeAnimated/images/arrMinute.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTimeAnimated/images/arrSecond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTimeAnimated/images/arrSecond.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTimeAnimated/images/img_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTimeAnimated/images/img_0001.png -------------------------------------------------------------------------------- /RedmiWatch4/AnalogTimeAnimated/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/AnalogTimeAnimated/images/preview.png -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/Diffusion.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/Diffusion.fprj -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/main.lua -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/1.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/1.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/10.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/10.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/11.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/11.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/12.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/12.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/2.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/2.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/3.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/3.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/4.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/4.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/5.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/5.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/6.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/6.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/7.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/7.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/8.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/8.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/9.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/9.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/left.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/left.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/leftmid.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/leftmid.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/min0.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/min0.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/min1.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/min1.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/min2.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/min2.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/min3.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/min3.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/min4.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/min4.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/min5.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/min5.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/min6.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/min6.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/min7.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/min7.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/min8.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/min8.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/min9.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/min9.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/num0.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/num0.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/num1.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/num1.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/num10.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/num10.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/num11.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/num11.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/num2.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/num2.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/num3.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/num3.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/num4.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/num4.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/num5.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/num5.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/num6.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/num6.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/num7.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/num7.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/num8.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/num8.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/num9.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/num9.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/right.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/right.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/number/rightmid.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/number/rightmid.rle -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/app/uidmap.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/app/uidmap.map -------------------------------------------------------------------------------- /RedmiWatch4/Diffusion/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/Diffusion/images/preview.png -------------------------------------------------------------------------------- /RedmiWatch4/TouchEvents/TouchEvents.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/TouchEvents/TouchEvents.fprj -------------------------------------------------------------------------------- /RedmiWatch4/TouchEvents/app/lua/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/TouchEvents/app/lua/cat.png -------------------------------------------------------------------------------- /RedmiWatch4/TouchEvents/app/lua/image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/TouchEvents/app/lua/image.lua -------------------------------------------------------------------------------- /RedmiWatch4/TouchEvents/app/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/TouchEvents/app/lua/main.lua -------------------------------------------------------------------------------- /RedmiWatch4/TouchEvents/app/lua/root.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/TouchEvents/app/lua/root.lua -------------------------------------------------------------------------------- /RedmiWatch4/TouchEvents/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/RedmiWatch4/TouchEvents/images/preview.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch3_Active/wf_Inversion/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch3_Active/wf_Inversion/images/preview.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch3_Active/wf_Inversion/output/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch3_Active/wf_Inversion/output/preview.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch3_Active/wf_Inversion/wf_Inversion.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch3_Active/wf_Inversion/wf_Inversion.fprj -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/DOTs.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/DOTs.fprj -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_0000.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_0001.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_0002.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0000_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0001_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0002_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0003_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0003_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0003_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0003_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0003_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0003_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0003_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0003_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0003_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0003_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0003_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0003_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0003_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0003_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0004_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0005_11.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0006_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0007_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/img_arr_0008_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/images/preview.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/DOTs/output/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/DOTs/output/preview.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0000.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0001.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0002.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0003.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0004.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0005.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0006.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0007.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0008.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0009.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0010.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_0011.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0000_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0001_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0002_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0002_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0002_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0002_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0002_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0002_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0002_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0002_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0002_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0002_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0003_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0003_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0003_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0003_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0003_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0003_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0004_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0004_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0004_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0004_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0004_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0004_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0004_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0004_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0005_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0006_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0006_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0006_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0006_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0006_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0006_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0006_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0006_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0006_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0006_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0006_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0006_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0006_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0006_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_11.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_12.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_13.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_14.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_15.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_16.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_17.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_18.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_19.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_20.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_21.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_22.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_23.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_24.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_25.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_26.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_27.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_28.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_29.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_30.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_31.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/img_arr_0007_32.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/images/preview.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/output/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/output/preview.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/output/preview_aod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/output/preview_aod.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Active/Dash/wf_dash.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Active/Dash/wf_dash.fprj -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/AOD/DOTs.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/AOD/DOTs.fprj -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/AOD/images/img_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/AOD/images/img_0000.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/AOD/images/img_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/AOD/images/img_0001.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/AOD/images/img_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/AOD/images/img_0002.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/AOD/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/AOD/images/preview.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/DOTs.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/DOTs.fprj -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_0000.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_0001.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_0002.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0000_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0001_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0002_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0003_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0003_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0003_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0003_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0003_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0003_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0003_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0003_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0003_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0003_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0003_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0003_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0003_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0003_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0004_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0005_11.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0006_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0007_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_00.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_01.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_02.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_03.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_04.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_05.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_06.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_07.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_08.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_09.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/img_arr_0008_10.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/images/preview.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/output/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/output/preview.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/DOTs/output/preview_aod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/DOTs/output/preview_aod.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/Minimal/Minimal.fprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/Minimal/Minimal.fprj -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/Minimal/images/img_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/Minimal/images/img_back.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/Minimal/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/Minimal/images/preview.png -------------------------------------------------------------------------------- /_NonLuaModels/RedmiWatch5_Lite/Minimal/output/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_NonLuaModels/RedmiWatch5_Lite/Minimal/output/preview.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/dataman.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/dataman.lua -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/main.lua -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/1.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/10.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/11.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/12.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/2.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/3.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/4.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/5.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/6.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/7.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/8.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/9.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/left.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/leftmid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/leftmid.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/min0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/min0.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/min1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/min1.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/min2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/min2.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/min3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/min3.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/min4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/min4.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/min5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/min5.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/min6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/min6.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/min7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/min7.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/min8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/min8.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/min9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/min9.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/num0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/num0.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/num1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/num1.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/num10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/num10.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/num11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/num11.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/num2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/num2.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/num3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/num3.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/num4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/num4.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/num5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/num5.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/num6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/num6.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/num7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/num7.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/num8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/num8.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/num9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/num9.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/right.png -------------------------------------------------------------------------------- /_simulator/RW4/diffusion/number/rightmid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/_simulator/RW4/diffusion/number/rightmid.png -------------------------------------------------------------------------------- /img/lvgl_conv_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/img/lvgl_conv_settings.png -------------------------------------------------------------------------------- /readmeRU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m0tral/MiWatchLuaWatchfaces/HEAD/readmeRU.md --------------------------------------------------------------------------------