micrOSDevToolKit 2.13.0__py3-none-any.whl → 2.17.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of micrOSDevToolKit might be problematic. Click here for more details.

Files changed (221) hide show
  1. micrOS/release_info/micrOS_ReleaseInfo/system_analysis_sum.json +125 -121
  2. micrOS/source/Common.py +48 -26
  3. micrOS/source/Config.py +13 -5
  4. micrOS/source/Espnow.py +100 -58
  5. micrOS/source/Files.py +77 -41
  6. micrOS/source/Hooks.py +18 -34
  7. micrOS/source/Logger.py +2 -7
  8. micrOS/source/Network.py +36 -16
  9. micrOS/source/Server.py +22 -8
  10. micrOS/source/Shell.py +9 -6
  11. micrOS/source/Tasks.py +34 -13
  12. micrOS/source/Web.py +69 -31
  13. micrOS/source/__pycache__/Common.cpython-312.pyc +0 -0
  14. micrOS/source/__pycache__/Files.cpython-312.pyc +0 -0
  15. micrOS/source/__pycache__/Logger.cpython-312.pyc +0 -0
  16. micrOS/source/__pycache__/Server.cpython-312.pyc +0 -0
  17. micrOS/source/config/_git.keep +0 -0
  18. micrOS/source/micrOS.py +7 -0
  19. micrOS/source/micrOSloader.py +2 -10
  20. micrOS/source/microIO.py +2 -2
  21. micrOS/source/modules/IO_esp32c6.py +38 -0
  22. micrOS/source/modules/LM_L298N.py +161 -0
  23. micrOS/source/modules/LM_cluster.py +250 -0
  24. {toolkit/workspace/precompiled → micrOS/source/modules}/LM_esp32.py +5 -0
  25. micrOS/source/modules/LM_espnow.py +36 -0
  26. micrOS/source/{LM_i2c.py → modules/LM_i2c.py} +1 -1
  27. micrOS/source/{LM_light_sensor.py → modules/LM_light_sensor.py} +2 -2
  28. micrOS/source/modules/LM_mqtt_client.py +246 -0
  29. micrOS/source/{LM_neoeffects.py → modules/LM_neoeffects.py} +14 -4
  30. micrOS/source/{LM_neomatrix.py → modules/LM_neomatrix.py} +140 -38
  31. micrOS/source/{LM_oled_ui.py → modules/LM_oled_ui.py} +2 -2
  32. micrOS/source/{LM_oledui.py → modules/LM_oledui.py} +2 -2
  33. micrOS/source/{LM_pacman.py → modules/LM_pacman.py} +74 -29
  34. micrOS/source/{LM_presence.py → modules/LM_presence.py} +2 -2
  35. micrOS/source/{LM_robustness.py → modules/LM_robustness.py} +49 -2
  36. micrOS/source/{LM_tcs3472.py → modules/LM_tcs3472.py} +4 -6
  37. micrOS/source/web/dashboard.html +2 -0
  38. micrOS/source/web/matrix_draw.html +390 -0
  39. micrOS/source/web/uapi.js +9 -6
  40. {microsdevtoolkit-2.13.0.dist-info → microsdevtoolkit-2.17.0.dist-info}/METADATA +30 -37
  41. {microsdevtoolkit-2.13.0.dist-info → microsdevtoolkit-2.17.0.dist-info}/RECORD +201 -191
  42. toolkit/DevEnvCompile.py +21 -12
  43. toolkit/DevEnvOTA.py +27 -16
  44. toolkit/DevEnvUSB.py +35 -21
  45. toolkit/LM_to_compile.dat +3 -1
  46. toolkit/MicrOSDevEnv.py +37 -21
  47. toolkit/dashboard_apps/QMI8685_GYRO.py +1 -1
  48. toolkit/dashboard_apps/SystemTest.py +8 -5
  49. toolkit/{MicrosFiles.py → lib/MicrosFiles.py} +24 -4
  50. toolkit/lib/pip_package_installer.py +5 -2
  51. toolkit/micrOSdashboard.py +2 -2
  52. toolkit/micrOSlint.py +17 -7
  53. toolkit/simulator_lib/__pycache__/simulator.cpython-312.pyc +0 -0
  54. toolkit/simulator_lib/__pycache__/uos.cpython-312.pyc +0 -0
  55. toolkit/simulator_lib/mqtt_as/Note.md +15 -0
  56. toolkit/simulator_lib/mqtt_as/__init__.py +950 -0
  57. toolkit/simulator_lib/mqtt_as/__pycache__/__init__.cpython-312.pyc +0 -0
  58. toolkit/simulator_lib/mqtt_as/clean.py +69 -0
  59. toolkit/simulator_lib/mqtt_as/mqtt_v5_properties.py +239 -0
  60. toolkit/simulator_lib/mqtt_as/range.py +90 -0
  61. toolkit/simulator_lib/mqtt_as/range_ex.py +119 -0
  62. toolkit/simulator_lib/simulator.py +14 -1
  63. toolkit/simulator_lib/uos.py +2 -0
  64. toolkit/workspace/precompiled/Common.mpy +0 -0
  65. toolkit/workspace/precompiled/Config.mpy +0 -0
  66. toolkit/workspace/precompiled/Espnow.mpy +0 -0
  67. toolkit/workspace/precompiled/Files.mpy +0 -0
  68. toolkit/workspace/precompiled/Hooks.mpy +0 -0
  69. toolkit/workspace/precompiled/Logger.mpy +0 -0
  70. toolkit/workspace/precompiled/Network.mpy +0 -0
  71. toolkit/workspace/precompiled/Server.mpy +0 -0
  72. toolkit/workspace/precompiled/Shell.mpy +0 -0
  73. toolkit/workspace/precompiled/Tasks.mpy +0 -0
  74. toolkit/workspace/precompiled/Web.mpy +0 -0
  75. toolkit/workspace/precompiled/config/_git.keep +0 -0
  76. toolkit/workspace/precompiled/micrOS.mpy +0 -0
  77. toolkit/workspace/precompiled/micrOSloader.mpy +0 -0
  78. toolkit/workspace/precompiled/microIO.mpy +0 -0
  79. toolkit/workspace/precompiled/{IO_esp32.mpy → modules/IO_esp32.mpy} +0 -0
  80. toolkit/workspace/precompiled/{IO_esp32c3.mpy → modules/IO_esp32c3.mpy} +0 -0
  81. toolkit/workspace/precompiled/modules/IO_esp32c6.mpy +0 -0
  82. toolkit/workspace/precompiled/{IO_esp32s2.mpy → modules/IO_esp32s2.mpy} +0 -0
  83. toolkit/workspace/precompiled/{IO_esp32s3.mpy → modules/IO_esp32s3.mpy} +0 -0
  84. toolkit/workspace/precompiled/{IO_m5stamp.mpy → modules/IO_m5stamp.mpy} +0 -0
  85. toolkit/workspace/precompiled/{IO_qtpy.mpy → modules/IO_qtpy.mpy} +0 -0
  86. toolkit/workspace/precompiled/modules/IO_rp2.mpy +0 -0
  87. toolkit/workspace/precompiled/modules/IO_s3matrix.mpy +0 -0
  88. toolkit/workspace/precompiled/{IO_tinypico.mpy → modules/IO_tinypico.mpy} +0 -0
  89. toolkit/workspace/precompiled/modules/LM_L298N.mpy +0 -0
  90. toolkit/workspace/precompiled/{LM_OV2640.mpy → modules/LM_OV2640.mpy} +0 -0
  91. toolkit/workspace/precompiled/{LM_aht10.mpy → modules/LM_aht10.mpy} +0 -0
  92. toolkit/workspace/precompiled/{LM_bme280.mpy → modules/LM_bme280.mpy} +0 -0
  93. toolkit/workspace/precompiled/{LM_buzzer.mpy → modules/LM_buzzer.mpy} +0 -0
  94. toolkit/workspace/precompiled/{LM_cct.mpy → modules/LM_cct.mpy} +0 -0
  95. toolkit/workspace/precompiled/modules/LM_cluster.mpy +0 -0
  96. toolkit/workspace/precompiled/{LM_co2.mpy → modules/LM_co2.mpy} +0 -0
  97. toolkit/workspace/precompiled/{LM_dht11.mpy → modules/LM_dht11.mpy} +0 -0
  98. toolkit/workspace/precompiled/{LM_dht22.mpy → modules/LM_dht22.mpy} +0 -0
  99. toolkit/workspace/precompiled/{LM_dimmer.mpy → modules/LM_dimmer.mpy} +0 -0
  100. toolkit/workspace/precompiled/{LM_distance.mpy → modules/LM_distance.mpy} +0 -0
  101. toolkit/workspace/precompiled/{LM_ds18.mpy → modules/LM_ds18.mpy} +0 -0
  102. {micrOS/source → toolkit/workspace/precompiled/modules}/LM_esp32.py +5 -0
  103. toolkit/workspace/precompiled/modules/LM_espnow.py +36 -0
  104. toolkit/workspace/precompiled/{LM_gameOfLife.mpy → modules/LM_gameOfLife.mpy} +0 -0
  105. toolkit/workspace/precompiled/{LM_genIO.mpy → modules/LM_genIO.mpy} +0 -0
  106. toolkit/workspace/precompiled/{LM_haptic.mpy → modules/LM_haptic.mpy} +0 -0
  107. toolkit/workspace/precompiled/{LM_i2c.py → modules/LM_i2c.py} +1 -1
  108. toolkit/workspace/precompiled/{LM_i2s_mic.mpy → modules/LM_i2s_mic.mpy} +0 -0
  109. toolkit/workspace/precompiled/{LM_keychain.mpy → modules/LM_keychain.mpy} +0 -0
  110. toolkit/workspace/precompiled/{LM_ld2410.mpy → modules/LM_ld2410.mpy} +0 -0
  111. toolkit/workspace/precompiled/modules/LM_light_sensor.mpy +0 -0
  112. toolkit/workspace/precompiled/modules/LM_mqtt_client.mpy +0 -0
  113. toolkit/workspace/precompiled/{LM_neoeffects.mpy → modules/LM_neoeffects.mpy} +0 -0
  114. toolkit/workspace/precompiled/modules/LM_neomatrix.mpy +0 -0
  115. toolkit/workspace/precompiled/{LM_neopixel.mpy → modules/LM_neopixel.mpy} +0 -0
  116. toolkit/workspace/precompiled/{LM_oled.mpy → modules/LM_oled.mpy} +0 -0
  117. toolkit/workspace/precompiled/{LM_oled_sh1106.mpy → modules/LM_oled_sh1106.mpy} +0 -0
  118. toolkit/workspace/precompiled/modules/LM_oled_ui.mpy +0 -0
  119. toolkit/workspace/precompiled/modules/LM_oledui.mpy +0 -0
  120. toolkit/workspace/precompiled/modules/LM_pacman.mpy +0 -0
  121. toolkit/workspace/precompiled/modules/LM_presence.mpy +0 -0
  122. toolkit/workspace/precompiled/{LM_rest.mpy → modules/LM_rest.mpy} +0 -0
  123. toolkit/workspace/precompiled/{LM_rgb.mpy → modules/LM_rgb.mpy} +0 -0
  124. toolkit/workspace/precompiled/{LM_rgbcct.mpy → modules/LM_rgbcct.mpy} +0 -0
  125. toolkit/workspace/precompiled/{LM_roboarm.mpy → modules/LM_roboarm.mpy} +0 -0
  126. toolkit/workspace/precompiled/{LM_robustness.py → modules/LM_robustness.py} +49 -2
  127. toolkit/workspace/precompiled/{LM_servo.mpy → modules/LM_servo.mpy} +0 -0
  128. toolkit/workspace/precompiled/{LM_sound_event.mpy → modules/LM_sound_event.mpy} +0 -0
  129. toolkit/workspace/precompiled/{LM_stepper.mpy → modules/LM_stepper.mpy} +0 -0
  130. toolkit/workspace/precompiled/{LM_switch.mpy → modules/LM_switch.mpy} +0 -0
  131. toolkit/workspace/precompiled/{LM_system.mpy → modules/LM_system.mpy} +0 -0
  132. toolkit/workspace/precompiled/{LM_tcs3472.py → modules/LM_tcs3472.py} +4 -6
  133. toolkit/workspace/precompiled/{LM_telegram.mpy → modules/LM_telegram.mpy} +0 -0
  134. toolkit/workspace/precompiled/{LM_tinyrgb.mpy → modules/LM_tinyrgb.mpy} +0 -0
  135. toolkit/workspace/precompiled/{LM_trackball.mpy → modules/LM_trackball.mpy} +0 -0
  136. toolkit/workspace/precompiled/{LM_veml7700.mpy → modules/LM_veml7700.mpy} +0 -0
  137. toolkit/workspace/precompiled/web/dashboard.html +2 -0
  138. toolkit/workspace/precompiled/web/matrix_draw.html +390 -0
  139. toolkit/workspace/precompiled/web/uapi.js +9 -6
  140. micrOS/source/IO_esp32c6.py +0 -16
  141. micrOS/source/LM_L298N_DCmotor.py +0 -86
  142. micrOS/source/LM_espnow.py +0 -57
  143. micrOS/source/LM_mqtt_pro.py +0 -211
  144. toolkit/lib/file_extensions.py +0 -22
  145. toolkit/workspace/precompiled/Common.cpython-312.pyc +0 -0
  146. toolkit/workspace/precompiled/IO_esp32c6.mpy +0 -0
  147. toolkit/workspace/precompiled/IO_rp2.mpy +0 -0
  148. toolkit/workspace/precompiled/IO_s3matrix.mpy +0 -0
  149. toolkit/workspace/precompiled/LM_L298N_DCmotor.mpy +0 -0
  150. toolkit/workspace/precompiled/LM_espnow.py +0 -57
  151. toolkit/workspace/precompiled/LM_light_sensor.mpy +0 -0
  152. toolkit/workspace/precompiled/LM_mqtt_pro.py +0 -211
  153. toolkit/workspace/precompiled/LM_neomatrix.mpy +0 -0
  154. toolkit/workspace/precompiled/LM_oled_ui.mpy +0 -0
  155. toolkit/workspace/precompiled/LM_oledui.mpy +0 -0
  156. toolkit/workspace/precompiled/LM_pacman.mpy +0 -0
  157. toolkit/workspace/precompiled/LM_presence.mpy +0 -0
  158. toolkit/workspace/precompiled/Logger.cpython-312.pyc +0 -0
  159. toolkit/workspace/precompiled/Server.cpython-312.pyc +0 -0
  160. /micrOS/source/{IO_esp32.py → modules/IO_esp32.py} +0 -0
  161. /micrOS/source/{IO_esp32c3.py → modules/IO_esp32c3.py} +0 -0
  162. /micrOS/source/{IO_esp32s2.py → modules/IO_esp32s2.py} +0 -0
  163. /micrOS/source/{IO_esp32s3.py → modules/IO_esp32s3.py} +0 -0
  164. /micrOS/source/{IO_m5stamp.py → modules/IO_m5stamp.py} +0 -0
  165. /micrOS/source/{IO_qtpy.py → modules/IO_qtpy.py} +0 -0
  166. /micrOS/source/{IO_rp2.py → modules/IO_rp2.py} +0 -0
  167. /micrOS/source/{IO_s3matrix.py → modules/IO_s3matrix.py} +0 -0
  168. /micrOS/source/{IO_tinypico.py → modules/IO_tinypico.py} +0 -0
  169. /micrOS/source/{LM_L9110_DCmotor.py → modules/LM_L9110_DCmotor.py} +0 -0
  170. /micrOS/source/{LM_OV2640.py → modules/LM_OV2640.py} +0 -0
  171. /micrOS/source/{LM_VL53L0X.py → modules/LM_VL53L0X.py} +0 -0
  172. /micrOS/source/{LM_aht10.py → modules/LM_aht10.py} +0 -0
  173. /micrOS/source/{LM_bme280.py → modules/LM_bme280.py} +0 -0
  174. /micrOS/source/{LM_buzzer.py → modules/LM_buzzer.py} +0 -0
  175. /micrOS/source/{LM_cct.py → modules/LM_cct.py} +0 -0
  176. /micrOS/source/{LM_co2.py → modules/LM_co2.py} +0 -0
  177. /micrOS/source/{LM_dashboard_be.py → modules/LM_dashboard_be.py} +0 -0
  178. /micrOS/source/{LM_dht11.py → modules/LM_dht11.py} +0 -0
  179. /micrOS/source/{LM_dht22.py → modules/LM_dht22.py} +0 -0
  180. /micrOS/source/{LM_dimmer.py → modules/LM_dimmer.py} +0 -0
  181. /micrOS/source/{LM_distance.py → modules/LM_distance.py} +0 -0
  182. /micrOS/source/{LM_ds18.py → modules/LM_ds18.py} +0 -0
  183. /micrOS/source/{LM_gameOfLife.py → modules/LM_gameOfLife.py} +0 -0
  184. /micrOS/source/{LM_genIO.py → modules/LM_genIO.py} +0 -0
  185. /micrOS/source/{LM_haptic.py → modules/LM_haptic.py} +0 -0
  186. /micrOS/source/{LM_i2s_mic.py → modules/LM_i2s_mic.py} +0 -0
  187. /micrOS/source/{LM_keychain.py → modules/LM_keychain.py} +0 -0
  188. /micrOS/source/{LM_ld2410.py → modules/LM_ld2410.py} +0 -0
  189. /micrOS/source/{LM_neopixel.py → modules/LM_neopixel.py} +0 -0
  190. /micrOS/source/{LM_oled.py → modules/LM_oled.py} +0 -0
  191. /micrOS/source/{LM_oled_sh1106.py → modules/LM_oled_sh1106.py} +0 -0
  192. /micrOS/source/{LM_pet_feeder.py → modules/LM_pet_feeder.py} +0 -0
  193. /micrOS/source/{LM_qmi8658.py → modules/LM_qmi8658.py} +0 -0
  194. /micrOS/source/{LM_rencoder.py → modules/LM_rencoder.py} +0 -0
  195. /micrOS/source/{LM_rest.py → modules/LM_rest.py} +0 -0
  196. /micrOS/source/{LM_rgb.py → modules/LM_rgb.py} +0 -0
  197. /micrOS/source/{LM_rgbcct.py → modules/LM_rgbcct.py} +0 -0
  198. /micrOS/source/{LM_roboarm.py → modules/LM_roboarm.py} +0 -0
  199. /micrOS/source/{LM_rp2w.py → modules/LM_rp2w.py} +0 -0
  200. /micrOS/source/{LM_sdcard.py → modules/LM_sdcard.py} +0 -0
  201. /micrOS/source/{LM_servo.py → modules/LM_servo.py} +0 -0
  202. /micrOS/source/{LM_sound_event.py → modules/LM_sound_event.py} +0 -0
  203. /micrOS/source/{LM_stepper.py → modules/LM_stepper.py} +0 -0
  204. /micrOS/source/{LM_switch.py → modules/LM_switch.py} +0 -0
  205. /micrOS/source/{LM_system.py → modules/LM_system.py} +0 -0
  206. /micrOS/source/{LM_telegram.py → modules/LM_telegram.py} +0 -0
  207. /micrOS/source/{LM_tinyrgb.py → modules/LM_tinyrgb.py} +0 -0
  208. /micrOS/source/{LM_trackball.py → modules/LM_trackball.py} +0 -0
  209. /micrOS/source/{LM_veml7700.py → modules/LM_veml7700.py} +0 -0
  210. {microsdevtoolkit-2.13.0.data → microsdevtoolkit-2.17.0.data}/scripts/devToolKit.py +0 -0
  211. {microsdevtoolkit-2.13.0.dist-info → microsdevtoolkit-2.17.0.dist-info}/WHEEL +0 -0
  212. {microsdevtoolkit-2.13.0.dist-info → microsdevtoolkit-2.17.0.dist-info}/licenses/LICENSE +0 -0
  213. {microsdevtoolkit-2.13.0.dist-info → microsdevtoolkit-2.17.0.dist-info}/top_level.txt +0 -0
  214. /toolkit/workspace/precompiled/{LM_L9110_DCmotor.py → modules/LM_L9110_DCmotor.py} +0 -0
  215. /toolkit/workspace/precompiled/{LM_VL53L0X.py → modules/LM_VL53L0X.py} +0 -0
  216. /toolkit/workspace/precompiled/{LM_dashboard_be.py → modules/LM_dashboard_be.py} +0 -0
  217. /toolkit/workspace/precompiled/{LM_pet_feeder.py → modules/LM_pet_feeder.py} +0 -0
  218. /toolkit/workspace/precompiled/{LM_qmi8658.py → modules/LM_qmi8658.py} +0 -0
  219. /toolkit/workspace/precompiled/{LM_rencoder.py → modules/LM_rencoder.py} +0 -0
  220. /toolkit/workspace/precompiled/{LM_rp2w.py → modules/LM_rp2w.py} +0 -0
  221. /toolkit/workspace/precompiled/{LM_sdcard.py → modules/LM_sdcard.py} +0 -0
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes