UnderAutomation.Fanuc 3.5.0.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.
Files changed (681) hide show
  1. underautomation/__init__.py +0 -0
  2. underautomation/fanuc/__init__.py +0 -0
  3. underautomation/fanuc/common/__init__.py +0 -0
  4. underautomation/fanuc/common/arm_front_back.py +9 -0
  5. underautomation/fanuc/common/arm_left_right.py +9 -0
  6. underautomation/fanuc/common/arm_up_down.py +9 -0
  7. underautomation/fanuc/common/cartesian_position.py +51 -0
  8. underautomation/fanuc/common/cartesian_position_with_tool.py +21 -0
  9. underautomation/fanuc/common/cartesian_position_with_user_frame.py +18 -0
  10. underautomation/fanuc/common/configuration.py +65 -0
  11. underautomation/fanuc/common/connect_exception.py +18 -0
  12. underautomation/fanuc/common/digital_ports.py +15 -0
  13. underautomation/fanuc/common/extended_cartesian_position.py +31 -0
  14. underautomation/fanuc/common/ftp_connect_parameters.py +19 -0
  15. underautomation/fanuc/common/io_status.py +27 -0
  16. underautomation/fanuc/common/joints_position.py +80 -0
  17. underautomation/fanuc/common/languages.py +9 -0
  18. underautomation/fanuc/common/position.py +38 -0
  19. underautomation/fanuc/common/program_type.py +9 -0
  20. underautomation/fanuc/common/rmi_connect_parameters.py +19 -0
  21. underautomation/fanuc/common/snpx_connect_parameters.py +19 -0
  22. underautomation/fanuc/common/string_utils.py +16 -0
  23. underautomation/fanuc/common/task_status.py +10 -0
  24. underautomation/fanuc/common/telnet_connect_parameters.py +19 -0
  25. underautomation/fanuc/common/wrist_flip.py +9 -0
  26. underautomation/fanuc/common/xyz_position.py +32 -0
  27. underautomation/fanuc/connection_parameters.py +59 -0
  28. underautomation/fanuc/fanuc_robot.py +46 -0
  29. underautomation/fanuc/ftp/__init__.py +0 -0
  30. underautomation/fanuc/ftp/diagnosis/__init__.py +0 -0
  31. underautomation/fanuc/ftp/diagnosis/current_position.py +20 -0
  32. underautomation/fanuc/ftp/diagnosis/current_position_reader.py +21 -0
  33. underautomation/fanuc/ftp/diagnosis/diagnosis_reader_2.py +18 -0
  34. underautomation/fanuc/ftp/diagnosis/feature.py +24 -0
  35. underautomation/fanuc/ftp/diagnosis/features.py +25 -0
  36. underautomation/fanuc/ftp/diagnosis/features_parser.py +21 -0
  37. underautomation/fanuc/ftp/diagnosis/group_position.py +27 -0
  38. underautomation/fanuc/ftp/diagnosis/header_section.py +27 -0
  39. underautomation/fanuc/ftp/diagnosis/io_state.py +20 -0
  40. underautomation/fanuc/ftp/diagnosis/io_state_parser.py +21 -0
  41. underautomation/fanuc/ftp/diagnosis/program_states.py +23 -0
  42. underautomation/fanuc/ftp/diagnosis/program_states_parser.py +21 -0
  43. underautomation/fanuc/ftp/diagnosis/safety_status.py +52 -0
  44. underautomation/fanuc/ftp/diagnosis/safety_status_parser.py +19 -0
  45. underautomation/fanuc/ftp/diagnosis/summary_diagnosis.py +36 -0
  46. underautomation/fanuc/ftp/diagnosis/summary_diagnosis_reader.py +17 -0
  47. underautomation/fanuc/ftp/diagnosis/task_history_data.py +43 -0
  48. underautomation/fanuc/ftp/diagnosis/task_state.py +38 -0
  49. underautomation/fanuc/ftp/fanuc_file_readers.py +47 -0
  50. underautomation/fanuc/ftp/ftp_client.py +15 -0
  51. underautomation/fanuc/ftp/ftp_file_system_object_type.py +9 -0
  52. underautomation/fanuc/ftp/ftp_list_item.py +34 -0
  53. underautomation/fanuc/ftp/internal/__init__.py +0 -0
  54. underautomation/fanuc/ftp/internal/file_reader.py +16 -0
  55. underautomation/fanuc/ftp/internal/file_reader_1.py +19 -0
  56. underautomation/fanuc/ftp/internal/ftp_client_base.py +62 -0
  57. underautomation/fanuc/ftp/internal/ftp_client_internal.py +13 -0
  58. underautomation/fanuc/ftp/internal/ftp_connect_parameters_base.py +24 -0
  59. underautomation/fanuc/ftp/internal/ftp_direct_file_handling.py +37 -0
  60. underautomation/fanuc/ftp/internal/ftp_known_variable_files.py +117 -0
  61. underautomation/fanuc/ftp/internal/i_fanuc_content.py +15 -0
  62. underautomation/fanuc/ftp/internal/i_file_reader.py +15 -0
  63. underautomation/fanuc/ftp/internal/i_file_reader_1.py +17 -0
  64. underautomation/fanuc/ftp/internal/section_parser.py +27 -0
  65. underautomation/fanuc/ftp/internal/section_parser_1.py +17 -0
  66. underautomation/fanuc/ftp/list/__init__.py +0 -0
  67. underautomation/fanuc/ftp/list/errall_section_item.py +32 -0
  68. underautomation/fanuc/ftp/list/error_list.py +22 -0
  69. underautomation/fanuc/ftp/list/error_list_reader.py +17 -0
  70. underautomation/fanuc/ftp/variables/__init__.py +0 -0
  71. underautomation/fanuc/ftp/variables/aavm_grp_variable_type.py +211 -0
  72. underautomation/fanuc/ftp/variables/aavm_wrk_variable_type.py +106 -0
  73. underautomation/fanuc/ftp/variables/aavmmain_file.py +234 -0
  74. underautomation/fanuc/ftp/variables/abspos_grp_variable_type.py +19 -0
  75. underautomation/fanuc/ftp/variables/adj_rtrq_variable_type.py +32 -0
  76. underautomation/fanuc/ftp/variables/aio_cnv_variable_type.py +43 -0
  77. underautomation/fanuc/ftp/variables/alm_if_variable_type.py +46 -0
  78. underautomation/fanuc/ftp/variables/almdg_variable_type.py +28 -0
  79. underautomation/fanuc/ftp/variables/amp_coef_variable_type.py +28 -0
  80. underautomation/fanuc/ftp/variables/amp_id_variable_type.py +25 -0
  81. underautomation/fanuc/ftp/variables/apcoupled_variable_type.py +22 -0
  82. underautomation/fanuc/ftp/variables/apcureq_variable_type.py +58 -0
  83. underautomation/fanuc/ftp/variables/appinfo_variable_type.py +35 -0
  84. underautomation/fanuc/ftp/variables/appinfoeq_variable_type.py +19 -0
  85. underautomation/fanuc/ftp/variables/arg_str_variable_type.py +79 -0
  86. underautomation/fanuc/ftp/variables/armld_pos_variable_type.py +19 -0
  87. underautomation/fanuc/ftp/variables/armload_p_variable_type.py +19 -0
  88. underautomation/fanuc/ftp/variables/armload_variable_type.py +19 -0
  89. underautomation/fanuc/ftp/variables/array_element.py +28 -0
  90. underautomation/fanuc/ftp/variables/asbn_cfg_variable_type.py +31 -0
  91. underautomation/fanuc/ftp/variables/at_cellsetup_variable_type.py +34 -0
  92. underautomation/fanuc/ftp/variables/auto_col_rec_variable_type.py +37 -0
  93. underautomation/fanuc/ftp/variables/autobackup_variable_type.py +82 -0
  94. underautomation/fanuc/ftp/variables/ax_ofs_variable_type.py +25 -0
  95. underautomation/fanuc/ftp/variables/axscrdcfg_variable_type.py +40 -0
  96. underautomation/fanuc/ftp/variables/back_edit_variable_type.py +55 -0
  97. underautomation/fanuc/ftp/variables/bbl_nt_wnd_variable_type.py +46 -0
  98. underautomation/fanuc/ftp/variables/bicsetup_file.py +16 -0
  99. underautomation/fanuc/ftp/variables/bigallow_variable_type.py +25 -0
  100. underautomation/fanuc/ftp/variables/bin_cfg_variable_type.py +43 -0
  101. underautomation/fanuc/ftp/variables/blal_out_variable_type.py +25 -0
  102. underautomation/fanuc/ftp/variables/calc_result_variable_type.py +70 -0
  103. underautomation/fanuc/ftp/variables/camera_variable_type.py +100 -0
  104. underautomation/fanuc/ftp/variables/cartesian_position_variable.py +22 -0
  105. underautomation/fanuc/ftp/variables/cbparam_file.py +97 -0
  106. underautomation/fanuc/ftp/variables/cell_grp_variable_type.py +60 -0
  107. underautomation/fanuc/ftp/variables/cellio_file.py +39 -0
  108. underautomation/fanuc/ftp/variables/cellset_variable_type.py +373 -0
  109. underautomation/fanuc/ftp/variables/cf_paramgp_variable_type.py +46 -0
  110. underautomation/fanuc/ftp/variables/cfcfg_variable_type.py +34 -0
  111. underautomation/fanuc/ftp/variables/chg_pri_variable_type.py +22 -0
  112. underautomation/fanuc/ftp/variables/chk_result_variable_type.py +28 -0
  113. underautomation/fanuc/ftp/variables/chkpos_variable_type.py +52 -0
  114. underautomation/fanuc/ftp/variables/clhist_variable_type.py +55 -0
  115. underautomation/fanuc/ftp/variables/clmlio_variable_type.py +22 -0
  116. underautomation/fanuc/ftp/variables/cmd_info_variable_type.py +28 -0
  117. underautomation/fanuc/ftp/variables/co_morgrp_variable_type.py +40 -0
  118. underautomation/fanuc/ftp/variables/co_paramgp_variable_type.py +49 -0
  119. underautomation/fanuc/ftp/variables/cocfg_variable_type.py +28 -0
  120. underautomation/fanuc/ftp/variables/collect_variable_type.py +25 -0
  121. underautomation/fanuc/ftp/variables/com_space_variable_type.py +92 -0
  122. underautomation/fanuc/ftp/variables/comset_file.py +76 -0
  123. underautomation/fanuc/ftp/variables/condet_cfg_variable_type.py +47 -0
  124. underautomation/fanuc/ftp/variables/condet_data_variable_type.py +28 -0
  125. underautomation/fanuc/ftp/variables/condet_grp_variable_type.py +25 -0
  126. underautomation/fanuc/ftp/variables/condet_io_variable_type.py +29 -0
  127. underautomation/fanuc/ftp/variables/condet_trgp_variable_type.py +34 -0
  128. underautomation/fanuc/ftp/variables/condet_trig_variable_type.py +40 -0
  129. underautomation/fanuc/ftp/variables/cp_mcrgrp_variable_type.py +25 -0
  130. underautomation/fanuc/ftp/variables/cp_morgrp_variable_type.py +58 -0
  131. underautomation/fanuc/ftp/variables/cp_paramgp_variable_type.py +146 -0
  132. underautomation/fanuc/ftp/variables/cp_t1_grp_variable_type.py +22 -0
  133. underautomation/fanuc/ftp/variables/cp_t1_mode_variable_type.py +43 -0
  134. underautomation/fanuc/ftp/variables/cp_test_variable_type.py +22 -0
  135. underautomation/fanuc/ftp/variables/cpcfg_variable_type.py +65 -0
  136. underautomation/fanuc/ftp/variables/cpdbg_variable_type.py +53 -0
  137. underautomation/fanuc/ftp/variables/cpidebug_variable_type.py +40 -0
  138. underautomation/fanuc/ftp/variables/crcfg_variable_type.py +106 -0
  139. underautomation/fanuc/ftp/variables/create_prg_variable_type.py +34 -0
  140. underautomation/fanuc/ftp/variables/ctrl_cab_variable_type.py +32 -0
  141. underautomation/fanuc/ftp/variables/current_pos_variable_type.py +29 -0
  142. underautomation/fanuc/ftp/variables/custommenu_variable_type.py +25 -0
  143. underautomation/fanuc/ftp/variables/db_dbg_variable_type.py +19 -0
  144. underautomation/fanuc/ftp/variables/db_record_variable_type.py +98 -0
  145. underautomation/fanuc/ftp/variables/dbg_errlog_variable_type.py +34 -0
  146. underautomation/fanuc/ftp/variables/dbinfo_variable_type.py +60 -0
  147. underautomation/fanuc/ftp/variables/dbpxwork_variable_type.py +19 -0
  148. underautomation/fanuc/ftp/variables/dbtb_ctrl_variable_type.py +49 -0
  149. underautomation/fanuc/ftp/variables/dbwork_variable_type.py +20 -0
  150. underautomation/fanuc/ftp/variables/dcs_cfg_variable_type.py +148 -0
  151. underautomation/fanuc/ftp/variables/dcs_crc_out_variable_type.py +19 -0
  152. underautomation/fanuc/ftp/variables/dcs_nocode_variable_type.py +16 -0
  153. underautomation/fanuc/ftp/variables/dcs_sgn_variable_type.py +46 -0
  154. underautomation/fanuc/ftp/variables/dcss_cnstcy_variable_type.py +34 -0
  155. underautomation/fanuc/ftp/variables/dcss_device_variable_type.py +37 -0
  156. underautomation/fanuc/ftp/variables/dcss_hndgd_variable_type.py +31 -0
  157. underautomation/fanuc/ftp/variables/dcss_ls_variable_type.py +31 -0
  158. underautomation/fanuc/ftp/variables/dcss_param_variable_type.py +37 -0
  159. underautomation/fanuc/ftp/variables/dcss_slave_variable_type.py +22 -0
  160. underautomation/fanuc/ftp/variables/deflogic_variable_type.py +31 -0
  161. underautomation/fanuc/ftp/variables/demo_init_variable_type.py +34 -0
  162. underautomation/fanuc/ftp/variables/det_io_variable_type.py +28 -0
  163. underautomation/fanuc/ftp/variables/dh_extra_variable_type.py +37 -0
  164. underautomation/fanuc/ftp/variables/dhcp_ctrl_variable_type.py +28 -0
  165. underautomation/fanuc/ftp/variables/dhcp_int_variable_type.py +43 -0
  166. underautomation/fanuc/ftp/variables/diag_grp_variable_type.py +166 -0
  167. underautomation/fanuc/ftp/variables/dict_cfg_variable_type.py +37 -0
  168. underautomation/fanuc/ftp/variables/diocfgsv_file.py +91 -0
  169. underautomation/fanuc/ftp/variables/dmr_grp_variable_type.py +110 -0
  170. underautomation/fanuc/ftp/variables/dmr_shferr_variable_type.py +19 -0
  171. underautomation/fanuc/ftp/variables/dmsw_cfg_variable_type.py +28 -0
  172. underautomation/fanuc/ftp/variables/dns_cfg_variable_type.py +31 -0
  173. underautomation/fanuc/ftp/variables/dnss_cfg_variable_type.py +28 -0
  174. underautomation/fanuc/ftp/variables/docviewer_variable_type.py +22 -0
  175. underautomation/fanuc/ftp/variables/drc_cfg_variable_type.py +34 -0
  176. underautomation/fanuc/ftp/variables/dryrun_port_variable_type.py +28 -0
  177. underautomation/fanuc/ftp/variables/dryrun_variable_type.py +82 -0
  178. underautomation/fanuc/ftp/variables/dsbl_fault_variable_type.py +22 -0
  179. underautomation/fanuc/ftp/variables/dtrec_variable_type.py +82 -0
  180. underautomation/fanuc/ftp/variables/dyn_brk_variable_type.py +31 -0
  181. underautomation/fanuc/ftp/variables/edt_recent_variable_type.py +22 -0
  182. underautomation/fanuc/ftp/variables/eff_axis_variable_type.py +22 -0
  183. underautomation/fanuc/ftp/variables/enc_info_variable_type.py +25 -0
  184. underautomation/fanuc/ftp/variables/enc_stat_variable_type.py +94 -0
  185. underautomation/fanuc/ftp/variables/enetmode_variable_type.py +28 -0
  186. underautomation/fanuc/ftp/variables/eoatcfg_variable_type.py +31 -0
  187. underautomation/fanuc/ftp/variables/eoatdata_variable_type.py +118 -0
  188. underautomation/fanuc/ftp/variables/er_noalm_variable_type.py +142 -0
  189. underautomation/fanuc/ftp/variables/er_noauto_variable_type.py +28 -0
  190. underautomation/fanuc/ftp/variables/erpost_log_variable_type.py +26 -0
  191. underautomation/fanuc/ftp/variables/err_mask_variable_type.py +31 -0
  192. underautomation/fanuc/ftp/variables/ext_set_variable_type.py +31 -0
  193. underautomation/fanuc/ftp/variables/fdot_variable_type.py +40 -0
  194. underautomation/fanuc/ftp/variables/fdr_grp_variable_type.py +82 -0
  195. underautomation/fanuc/ftp/variables/feature_variable_type.py +28 -0
  196. underautomation/fanuc/ftp/variables/file_back_variable_type.py +34 -0
  197. underautomation/fanuc/ftp/variables/file_setup2_variable_type.py +25 -0
  198. underautomation/fanuc/ftp/variables/file_setup_variable_type.py +44 -0
  199. underautomation/fanuc/ftp/variables/filecomp_variable_type.py +22 -0
  200. underautomation/fanuc/ftp/variables/fileconfig_variable_type.py +19 -0
  201. underautomation/fanuc/ftp/variables/fltr_ovrn_variable_type.py +28 -0
  202. underautomation/fanuc/ftp/variables/flui_cfg_variable_type.py +67 -0
  203. underautomation/fanuc/ftp/variables/flui_data_variable_type.py +22 -0
  204. underautomation/fanuc/ftp/variables/flui_res_variable_type.py +48 -0
  205. underautomation/fanuc/ftp/variables/fmr2_grp_variable_type.py +76 -0
  206. underautomation/fanuc/ftp/variables/fmr_cfg_variable_type.py +19 -0
  207. underautomation/fanuc/ftp/variables/fms_grp_variable_type.py +71 -0
  208. underautomation/fanuc/ftp/variables/fsac_lst_variable_type.py +28 -0
  209. underautomation/fanuc/ftp/variables/fssb_cfg_variable_type.py +31 -0
  210. underautomation/fanuc/ftp/variables/ftp_ctrl_variable_type.py +28 -0
  211. underautomation/fanuc/ftp/variables/fx_trigger_variable_type.py +43 -0
  212. underautomation/fanuc/ftp/variables/gemdata_file.py +25 -0
  213. underautomation/fanuc/ftp/variables/generic_field.py +37 -0
  214. underautomation/fanuc/ftp/variables/generic_value.py +42 -0
  215. underautomation/fanuc/ftp/variables/generic_variable.py +23 -0
  216. underautomation/fanuc/ftp/variables/generic_variable_file.py +35 -0
  217. underautomation/fanuc/ftp/variables/generic_variable_type.py +25 -0
  218. underautomation/fanuc/ftp/variables/generic_variable_type_helpers.py +19 -0
  219. underautomation/fanuc/ftp/variables/glofatt_variable_type.py +40 -0
  220. underautomation/fanuc/ftp/variables/glofset_variable_type.py +22 -0
  221. underautomation/fanuc/ftp/variables/gp_hold_variable_type.py +58 -0
  222. underautomation/fanuc/ftp/variables/gp_status_variable_type.py +31 -0
  223. underautomation/fanuc/ftp/variables/gravc_grp_variable_type.py +46 -0
  224. underautomation/fanuc/ftp/variables/grsmt_grp_variable_type.py +22 -0
  225. underautomation/fanuc/ftp/variables/hist_day_variable_type.py +29 -0
  226. underautomation/fanuc/ftp/variables/hist_ele_variable_type.py +28 -0
  227. underautomation/fanuc/ftp/variables/host_cfg_variable_type.py +67 -0
  228. underautomation/fanuc/ftp/variables/hostent_variable_type.py +28 -0
  229. underautomation/fanuc/ftp/variables/hscd_grp_variable_type.py +22 -0
  230. underautomation/fanuc/ftp/variables/hscd_mng_variable_type.py +73 -0
  231. underautomation/fanuc/ftp/variables/htcolrec_file.py +26 -0
  232. underautomation/fanuc/ftp/variables/http_auth_variable_type.py +28 -0
  233. underautomation/fanuc/ftp/variables/http_variable_type.py +55 -0
  234. underautomation/fanuc/ftp/variables/httpkcl_file.py +37 -0
  235. underautomation/fanuc/ftp/variables/hwr_config_variable_type.py +34 -0
  236. underautomation/fanuc/ftp/variables/i_generic_variable_type.py +21 -0
  237. underautomation/fanuc/ftp/variables/interact_variable_type.py +19 -0
  238. underautomation/fanuc/ftp/variables/intrac_d_variable_type.py +19 -0
  239. underautomation/fanuc/ftp/variables/intrac_n_variable_type.py +19 -0
  240. underautomation/fanuc/ftp/variables/io_def_asg_variable_type.py +37 -0
  241. underautomation/fanuc/ftp/variables/io_uop_cfg_variable_type.py +37 -0
  242. underautomation/fanuc/ftp/variables/iolnk_variable_type.py +31 -0
  243. underautomation/fanuc/ftp/variables/ioslave_variable_type.py +28 -0
  244. underautomation/fanuc/ftp/variables/irc_counter_file.py +56 -0
  245. underautomation/fanuc/ftp/variables/irc_gnrc_variable_type.py +37 -0
  246. underautomation/fanuc/ftp/variables/irc_msg_file.py +53 -0
  247. underautomation/fanuc/ftp/variables/irc_status_file.py +53 -0
  248. underautomation/fanuc/ftp/variables/irc_stlabel_file.py +53 -0
  249. underautomation/fanuc/ftp/variables/irca_cnf_variable_type.py +55 -0
  250. underautomation/fanuc/ftp/variables/irprog_cfg_variable_type.py +31 -0
  251. underautomation/fanuc/ftp/variables/item_acc_variable_type.py +40 -0
  252. underautomation/fanuc/ftp/variables/item_buff_el_variable_type.py +28 -0
  253. underautomation/fanuc/ftp/variables/item_name_variable_type.py +34 -0
  254. underautomation/fanuc/ftp/variables/j2red_variable_type.py +28 -0
  255. underautomation/fanuc/ftp/variables/j3d_pld_cal_variable_type.py +40 -0
  256. underautomation/fanuc/ftp/variables/jcr_grp_variable_type.py +88 -0
  257. underautomation/fanuc/ftp/variables/jcr_variable_type.py +40 -0
  258. underautomation/fanuc/ftp/variables/jinc_variable_type.py +34 -0
  259. underautomation/fanuc/ftp/variables/jog_rad_variable_type.py +19 -0
  260. underautomation/fanuc/ftp/variables/joint_position_variable.py +22 -0
  261. underautomation/fanuc/ftp/variables/karel_cfg_variable_type.py +25 -0
  262. underautomation/fanuc/ftp/variables/karelmon_variable_type.py +28 -0
  263. underautomation/fanuc/ftp/variables/klaction_file.py +31 -0
  264. underautomation/fanuc/ftp/variables/lgcfg_variable_type.py +121 -0
  265. underautomation/fanuc/ftp/variables/ln_disp_variable_type.py +34 -0
  266. underautomation/fanuc/ftp/variables/log_alarm_variable_type.py +22 -0
  267. underautomation/fanuc/ftp/variables/log_buff_variable_type.py +28 -0
  268. underautomation/fanuc/ftp/variables/log_dcs_variable_type.py +56 -0
  269. underautomation/fanuc/ftp/variables/log_dio_variable_type.py +34 -0
  270. underautomation/fanuc/ftp/variables/log_scrn_fl_variable_type.py +22 -0
  271. underautomation/fanuc/ftp/variables/logbook_variable_type.py +217 -0
  272. underautomation/fanuc/ftp/variables/max_pld_cal_variable_type.py +31 -0
  273. underautomation/fanuc/ftp/variables/mcr_grp_variable_type.py +217 -0
  274. underautomation/fanuc/ftp/variables/mcr_variable_type.py +97 -0
  275. underautomation/fanuc/ftp/variables/mcsp_grp_variable_type.py +43 -0
  276. underautomation/fanuc/ftp/variables/mcsp_variable_type.py +55 -0
  277. underautomation/fanuc/ftp/variables/memo_memo_variable_type.py +43 -0
  278. underautomation/fanuc/ftp/variables/mfrq_cfg_variable_type.py +52 -0
  279. underautomation/fanuc/ftp/variables/mfrq_grp_variable_type.py +34 -0
  280. underautomation/fanuc/ftp/variables/mgdebug_variable_type.py +31 -0
  281. underautomation/fanuc/ftp/variables/misc_grp_variable_type.py +34 -0
  282. underautomation/fanuc/ftp/variables/misc_mstr_variable_type.py +19 -0
  283. underautomation/fanuc/ftp/variables/misc_scd_variable_type.py +28 -0
  284. underautomation/fanuc/ftp/variables/mix_bg_variable_type.py +28 -0
  285. underautomation/fanuc/ftp/variables/mix_logic_variable_type.py +95 -0
  286. underautomation/fanuc/ftp/variables/mix_mkr_variable_type.py +22 -0
  287. underautomation/fanuc/ftp/variables/mixlogic_file.py +40 -0
  288. underautomation/fanuc/ftp/variables/mkcfg_variable_type.py +34 -0
  289. underautomation/fanuc/ftp/variables/mltarm_cfg_variable_type.py +22 -0
  290. underautomation/fanuc/ftp/variables/mn_mcr_sop_variable_type.py +58 -0
  291. underautomation/fanuc/ftp/variables/mn_mcr_table_variable_type.py +49 -0
  292. underautomation/fanuc/ftp/variables/mn_mcr_uop_variable_type.py +70 -0
  293. underautomation/fanuc/ftp/variables/mndsp_mst_variable_type.py +34 -0
  294. underautomation/fanuc/ftp/variables/mndsppstl_variable_type.py +28 -0
  295. underautomation/fanuc/ftp/variables/modaq_cfg_variable_type.py +40 -0
  296. underautomation/fanuc/ftp/variables/modem_inf_variable_type.py +40 -0
  297. underautomation/fanuc/ftp/variables/moptimiz_variable_type.py +31 -0
  298. underautomation/fanuc/ftp/variables/mor_grp_sv_variable_type.py +19 -0
  299. underautomation/fanuc/ftp/variables/mor_grp_variable_type.py +305 -0
  300. underautomation/fanuc/ftp/variables/mor_variable_type.py +105 -0
  301. underautomation/fanuc/ftp/variables/motion_dbg_variable_type.py +56 -0
  302. underautomation/fanuc/ftp/variables/mouse_variable_type.py +34 -0
  303. underautomation/fanuc/ftp/variables/mr_hist_variable_type.py +52 -0
  304. underautomation/fanuc/ftp/variables/mrr2_grp_variable_type.py +162 -0
  305. underautomation/fanuc/ftp/variables/mrr_grp_variable_type.py +785 -0
  306. underautomation/fanuc/ftp/variables/msk_ce_grp_variable_type.py +31 -0
  307. underautomation/fanuc/ftp/variables/mtcom_cfg_variable_type.py +22 -0
  308. underautomation/fanuc/ftp/variables/mtparam_file.py +148 -0
  309. underautomation/fanuc/ftp/variables/numreg_file.py +19 -0
  310. underautomation/fanuc/ftp/variables/on_path_variable_type.py +34 -0
  311. underautomation/fanuc/ftp/variables/optstate_variable_type.py +19 -0
  312. underautomation/fanuc/ftp/variables/opwork_variable_type.py +70 -0
  313. underautomation/fanuc/ftp/variables/ovrd_setup_variable_type.py +28 -0
  314. underautomation/fanuc/ftp/variables/ovrdslct_variable_type.py +49 -0
  315. underautomation/fanuc/ftp/variables/palreg_file.py +19 -0
  316. underautomation/fanuc/ftp/variables/passname_variable_type.py +25 -0
  317. underautomation/fanuc/ftp/variables/password_variable_type.py +82 -0
  318. underautomation/fanuc/ftp/variables/pf_cfg_variable_type.py +116 -0
  319. underautomation/fanuc/ftp/variables/pf_data_variable_type.py +25 -0
  320. underautomation/fanuc/ftp/variables/pf_enhance_variable_type.py +46 -0
  321. underautomation/fanuc/ftp/variables/pf_pref_variable_type.py +28 -0
  322. underautomation/fanuc/ftp/variables/pg_cfg_variable_type.py +79 -0
  323. underautomation/fanuc/ftp/variables/pg_defspd_variable_type.py +31 -0
  324. underautomation/fanuc/ftp/variables/pgmaxspd_variable_type.py +22 -0
  325. underautomation/fanuc/ftp/variables/pinfo_variable_type.py +22 -0
  326. underautomation/fanuc/ftp/variables/ping_variable_type.py +28 -0
  327. underautomation/fanuc/ftp/variables/pipe_cfg_variable_type.py +34 -0
  328. underautomation/fanuc/ftp/variables/pl_res_g_variable_type.py +40 -0
  329. underautomation/fanuc/ftp/variables/plcfg_variable_type.py +19 -0
  330. underautomation/fanuc/ftp/variables/plcl_grp_variable_type.py +49 -0
  331. underautomation/fanuc/ftp/variables/plid_cfg_variable_type.py +22 -0
  332. underautomation/fanuc/ftp/variables/plid_cllb_variable_type.py +98 -0
  333. underautomation/fanuc/ftp/variables/plid_grp_variable_type.py +320 -0
  334. underautomation/fanuc/ftp/variables/plid_sv_variable_type.py +82 -0
  335. underautomation/fanuc/ftp/variables/plim_grp_variable_type.py +52 -0
  336. underautomation/fanuc/ftp/variables/plmr_grp_variable_type.py +49 -0
  337. underautomation/fanuc/ftp/variables/plst_grp_variable_type.py +43 -0
  338. underautomation/fanuc/ftp/variables/pmon_que_variable_type.py +28 -0
  339. underautomation/fanuc/ftp/variables/pocfg_variable_type.py +22 -0
  340. underautomation/fanuc/ftp/variables/podata_variable_type.py +31 -0
  341. underautomation/fanuc/ftp/variables/poinfo_variable_type.py +22 -0
  342. underautomation/fanuc/ftp/variables/poio_variable_type.py +25 -0
  343. underautomation/fanuc/ftp/variables/pos_edit_variable_type.py +49 -0
  344. underautomation/fanuc/ftp/variables/position_variable_type.py +34 -0
  345. underautomation/fanuc/ftp/variables/posreg_file.py +20 -0
  346. underautomation/fanuc/ftp/variables/pppcfg_lst_variable_type.py +34 -0
  347. underautomation/fanuc/ftp/variables/prgadj_sch_variable_type.py +76 -0
  348. underautomation/fanuc/ftp/variables/prgadj_variable_type.py +40 -0
  349. underautomation/fanuc/ftp/variables/prgns_cfg_variable_type.py +64 -0
  350. underautomation/fanuc/ftp/variables/prgns_elem_variable_type.py +67 -0
  351. underautomation/fanuc/ftp/variables/prgns_grp_variable_type.py +44 -0
  352. underautomation/fanuc/ftp/variables/prgns_pref_variable_type.py +25 -0
  353. underautomation/fanuc/ftp/variables/protoent_variable_type.py +22 -0
  354. underautomation/fanuc/ftp/variables/proxy_cfg_variable_type.py +52 -0
  355. underautomation/fanuc/ftp/variables/pslgset_variable_type.py +37 -0
  356. underautomation/fanuc/ftp/variables/pslgtemp_variable_type.py +136 -0
  357. underautomation/fanuc/ftp/variables/pssave_grp_variable_type.py +25 -0
  358. underautomation/fanuc/ftp/variables/pssave_variable_type.py +85 -0
  359. underautomation/fanuc/ftp/variables/pulco_idata_variable_type.py +22 -0
  360. underautomation/fanuc/ftp/variables/pwrup_dly_variable_type.py +22 -0
  361. underautomation/fanuc/ftp/variables/qskip_grp_variable_type.py +52 -0
  362. underautomation/fanuc/ftp/variables/rcmcfg_variable_type.py +203 -0
  363. underautomation/fanuc/ftp/variables/rdcr_grp_variable_type.py +47 -0
  364. underautomation/fanuc/ftp/variables/rdm_cfg_variable_type.py +19 -0
  365. underautomation/fanuc/ftp/variables/recloc_variable_type.py +20 -0
  366. underautomation/fanuc/ftp/variables/recovery_variable_type.py +61 -0
  367. underautomation/fanuc/ftp/variables/redprot_cfg_variable_type.py +31 -0
  368. underautomation/fanuc/ftp/variables/redprot_grp_variable_type.py +37 -0
  369. underautomation/fanuc/ftp/variables/refpos11_variable_type.py +40 -0
  370. underautomation/fanuc/ftp/variables/refpos21_variable_type.py +40 -0
  371. underautomation/fanuc/ftp/variables/refpos31_variable_type.py +40 -0
  372. underautomation/fanuc/ftp/variables/refpos41_variable_type.py +40 -0
  373. underautomation/fanuc/ftp/variables/refpos51_variable_type.py +40 -0
  374. underautomation/fanuc/ftp/variables/refpos61_variable_type.py +40 -0
  375. underautomation/fanuc/ftp/variables/refpos71_variable_type.py +40 -0
  376. underautomation/fanuc/ftp/variables/refpos81_variable_type.py +40 -0
  377. underautomation/fanuc/ftp/variables/refpsmsk_variable_type.py +19 -0
  378. underautomation/fanuc/ftp/variables/remote_cfg_variable_type.py +31 -0
  379. underautomation/fanuc/ftp/variables/repower_variable_type.py +19 -0
  380. underautomation/fanuc/ftp/variables/req_data_variable_type.py +34 -0
  381. underautomation/fanuc/ftp/variables/restart_variable_type.py +25 -0
  382. underautomation/fanuc/ftp/variables/resume_ofst_variable_type.py +34 -0
  383. underautomation/fanuc/ftp/variables/rs232_cfg_variable_type.py +49 -0
  384. underautomation/fanuc/ftp/variables/rsch_variable_type.py +40 -0
  385. underautomation/fanuc/ftp/variables/rspace_variable_type.py +116 -0
  386. underautomation/fanuc/ftp/variables/rspaceg_variable_type.py +27 -0
  387. underautomation/fanuc/ftp/variables/rspacesr_variable_type.py +58 -0
  388. underautomation/fanuc/ftp/variables/sbr2_variable_type.py +19 -0
  389. underautomation/fanuc/ftp/variables/sbr_variable_type.py +43 -0
  390. underautomation/fanuc/ftp/variables/scr_grp_variable_type.py +417 -0
  391. underautomation/fanuc/ftp/variables/scr_variable_type.py +508 -0
  392. underautomation/fanuc/ftp/variables/servent_variable_type.py +25 -0
  393. underautomation/fanuc/ftp/variables/sfzn_cfg_variable_type.py +31 -0
  394. underautomation/fanuc/ftp/variables/sfzn_grp_variable_type.py +46 -0
  395. underautomation/fanuc/ftp/variables/shell_cfg_variable_type.py +175 -0
  396. underautomation/fanuc/ftp/variables/shell_chk_variable_type.py +34 -0
  397. underautomation/fanuc/ftp/variables/shell_comm_variable_type.py +34 -0
  398. underautomation/fanuc/ftp/variables/shell_wrk_variable_type.py +127 -0
  399. underautomation/fanuc/ftp/variables/simiofwdlm_variable_type.py +25 -0
  400. underautomation/fanuc/ftp/variables/smb_clnt_variable_type.py +31 -0
  401. underautomation/fanuc/ftp/variables/smb_variable_type.py +37 -0
  402. underautomation/fanuc/ftp/variables/smh_made_variable_type.py +34 -0
  403. underautomation/fanuc/ftp/variables/smtp_ctrl_variable_type.py +43 -0
  404. underautomation/fanuc/ftp/variables/snpx_asg_variable_type.py +28 -0
  405. underautomation/fanuc/ftp/variables/snpx_param_variable_type.py +61 -0
  406. underautomation/fanuc/ftp/variables/sntp_cfg_variable_type.py +37 -0
  407. underautomation/fanuc/ftp/variables/sntp_custom_variable_type.py +40 -0
  408. underautomation/fanuc/ftp/variables/sscbk_variable_type.py +37 -0
  409. underautomation/fanuc/ftp/variables/ssr_variable_type.py +52 -0
  410. underautomation/fanuc/ftp/variables/stop_variable_type.py +31 -0
  411. underautomation/fanuc/ftp/variables/strreg_file.py +19 -0
  412. underautomation/fanuc/ftp/variables/sv_info_variable_type.py +37 -0
  413. underautomation/fanuc/ftp/variables/svdt_grp_variable_type.py +400 -0
  414. underautomation/fanuc/ftp/variables/svprm_upd_variable_type.py +19 -0
  415. underautomation/fanuc/ftp/variables/swiupdt_file.py +16 -0
  416. underautomation/fanuc/ftp/variables/sycldint_file.py +49 -0
  417. underautomation/fanuc/ftp/variables/symotn_file.py +149 -0
  418. underautomation/fanuc/ftp/variables/synosave_file.py +192 -0
  419. underautomation/fanuc/ftp/variables/sys_time_variable_type.py +31 -0
  420. underautomation/fanuc/ftp/variables/sysframe_file.py +33 -0
  421. underautomation/fanuc/ftp/variables/sysfsac_file.py +23 -0
  422. underautomation/fanuc/ftp/variables/syshost_file.py +79 -0
  423. underautomation/fanuc/ftp/variables/syslog_sav_variable_type.py +37 -0
  424. underautomation/fanuc/ftp/variables/syslog_variable_type.py +58 -0
  425. underautomation/fanuc/ftp/variables/sysmacro_file.py +43 -0
  426. underautomation/fanuc/ftp/variables/sysmast_file.py +25 -0
  427. underautomation/fanuc/ftp/variables/syspass_file.py +24 -0
  428. underautomation/fanuc/ftp/variables/sysservo_file.py +21 -0
  429. underautomation/fanuc/ftp/variables/system_file.py +2232 -0
  430. underautomation/fanuc/ftp/variables/system_timer_variable_type.py +52 -0
  431. underautomation/fanuc/ftp/variables/sysuif_file.py +29 -0
  432. underautomation/fanuc/ftp/variables/t2mode_lim_variable_type.py +22 -0
  433. underautomation/fanuc/ftp/variables/t2spdlim_variable_type.py +22 -0
  434. underautomation/fanuc/ftp/variables/tbc2_grp_variable_type.py +52 -0
  435. underautomation/fanuc/ftp/variables/tbc_acc_variable_type.py +151 -0
  436. underautomation/fanuc/ftp/variables/tbc_grp_variable_type.py +104 -0
  437. underautomation/fanuc/ftp/variables/tbccfg_variable_type.py +38 -0
  438. underautomation/fanuc/ftp/variables/tbcparam_variable_type.py +70 -0
  439. underautomation/fanuc/ftp/variables/tbcsg_grp_variable_type.py +34 -0
  440. underautomation/fanuc/ftp/variables/tbj2_grp_variable_type.py +34 -0
  441. underautomation/fanuc/ftp/variables/tbj_acc_variable_type.py +190 -0
  442. underautomation/fanuc/ftp/variables/tbj_grp_variable_type.py +125 -0
  443. underautomation/fanuc/ftp/variables/tbjcfg_variable_type.py +53 -0
  444. underautomation/fanuc/ftp/variables/tbjop_grp_variable_type.py +25 -0
  445. underautomation/fanuc/ftp/variables/tbparam_variable_type.py +124 -0
  446. underautomation/fanuc/ftp/variables/tcol_line_variable_type.py +22 -0
  447. underautomation/fanuc/ftp/variables/tcpipcfg_variable_type.py +37 -0
  448. underautomation/fanuc/ftp/variables/thr_cfg_variable_type.py +25 -0
  449. underautomation/fanuc/ftp/variables/timer_variable_type.py +58 -0
  450. underautomation/fanuc/ftp/variables/torqctrl_variable_type.py +34 -0
  451. underautomation/fanuc/ftp/variables/tp_curscrn_variable_type.py +37 -0
  452. underautomation/fanuc/ftp/variables/tp_thr_table_variable_type.py +25 -0
  453. underautomation/fanuc/ftp/variables/tpgl_cam_variable_type.py +37 -0
  454. underautomation/fanuc/ftp/variables/tpgl_conf_variable_type.py +115 -0
  455. underautomation/fanuc/ftp/variables/tpgl_mset_variable_type.py +25 -0
  456. underautomation/fanuc/ftp/variables/tpgl_out_variable_type.py +44 -0
  457. underautomation/fanuc/ftp/variables/tpgl_uview_variable_type.py +26 -0
  458. underautomation/fanuc/ftp/variables/tpgl_view_variable_type.py +37 -0
  459. underautomation/fanuc/ftp/variables/tpglmach_variable_type.py +19 -0
  460. underautomation/fanuc/ftp/variables/tpp_mon_variable_type.py +31 -0
  461. underautomation/fanuc/ftp/variables/tpsnap_file.py +82 -0
  462. underautomation/fanuc/ftp/variables/tpstrtchk_variable_type.py +25 -0
  463. underautomation/fanuc/ftp/variables/tpvwvar_variable_type.py +55 -0
  464. underautomation/fanuc/ftp/variables/trace_cfg_variable_type.py +34 -0
  465. underautomation/fanuc/ftp/variables/trace_chnl_variable_type.py +31 -0
  466. underautomation/fanuc/ftp/variables/trace_item_variable_type.py +46 -0
  467. underautomation/fanuc/ftp/variables/tracectl_variable_type.py +31 -0
  468. underautomation/fanuc/ftp/variables/tracedt_variable_type.py +31 -0
  469. underautomation/fanuc/ftp/variables/traceup_variable_type.py +31 -0
  470. underautomation/fanuc/ftp/variables/tscfg_variable_type.py +76 -0
  471. underautomation/fanuc/ftp/variables/tsr_grp_variable_type.py +79 -0
  472. underautomation/fanuc/ftp/variables/tsscb_variable_type.py +40 -0
  473. underautomation/fanuc/ftp/variables/tune_variable_type.py +22 -0
  474. underautomation/fanuc/ftp/variables/tutorial_variable_type.py +19 -0
  475. underautomation/fanuc/ftp/variables/tv_config_variable_type.py +25 -0
  476. underautomation/fanuc/ftp/variables/tv_output_variable_type.py +34 -0
  477. underautomation/fanuc/ftp/variables/tx_variable_type.py +79 -0
  478. underautomation/fanuc/ftp/variables/txram_variable_type.py +52 -0
  479. underautomation/fanuc/ftp/variables/txscreen_variable_type.py +22 -0
  480. underautomation/fanuc/ftp/variables/uecfg_variable_type.py +44 -0
  481. underautomation/fanuc/ftp/variables/uegrp_variable_type.py +25 -0
  482. underautomation/fanuc/ftp/variables/ui_config_variable_type.py +235 -0
  483. underautomation/fanuc/ftp/variables/ui_custom_variable_type.py +37 -0
  484. underautomation/fanuc/ftp/variables/ui_fctnfav_variable_type.py +40 -0
  485. underautomation/fanuc/ftp/variables/ui_fkeydat_variable_type.py +37 -0
  486. underautomation/fanuc/ftp/variables/ui_menhis_variable_type.py +28 -0
  487. underautomation/fanuc/ftp/variables/ui_panedat_variable_type.py +62 -0
  488. underautomation/fanuc/ftp/variables/ui_panelnk_variable_type.py +46 -0
  489. underautomation/fanuc/ftp/variables/ui_topmenu_variable_type.py +40 -0
  490. underautomation/fanuc/ftp/variables/ui_usrview_variable_type.py +34 -0
  491. underautomation/fanuc/ftp/variables/ujr_grp_variable_type.py +56 -0
  492. underautomation/fanuc/ftp/variables/umr_variable_type.py +28 -0
  493. underautomation/fanuc/ftp/variables/undo_cfg_variable_type.py +22 -0
  494. underautomation/fanuc/ftp/variables/upr_variable_type.py +152 -0
  495. underautomation/fanuc/ftp/variables/user_info_variable_type.py +28 -0
  496. underautomation/fanuc/ftp/variables/user_offst_variable_type.py +36 -0
  497. underautomation/fanuc/ftp/variables/user_tool_variable_type.py +37 -0
  498. underautomation/fanuc/ftp/variables/user_ufram_variable_type.py +37 -0
  499. underautomation/fanuc/ftp/variables/user_work_variable_type.py +25 -0
  500. underautomation/fanuc/ftp/variables/usr_ev_cfg_variable_type.py +43 -0
  501. underautomation/fanuc/ftp/variables/usr_ev_wrk_variable_type.py +37 -0
  502. underautomation/fanuc/ftp/variables/usrtol_grp_variable_type.py +31 -0
  503. underautomation/fanuc/ftp/variables/value_kind.py +10 -0
  504. underautomation/fanuc/ftp/variables/variable_file.py +15 -0
  505. underautomation/fanuc/ftp/variables/variable_file_list.py +26 -0
  506. underautomation/fanuc/ftp/variables/variable_reader.py +130 -0
  507. underautomation/fanuc/ftp/variables/variable_reader_1.py +17 -0
  508. underautomation/fanuc/ftp/variables/vars_config_variable_type.py +34 -0
  509. underautomation/fanuc/ftp/variables/vcal_mv_variable_type.py +35 -0
  510. underautomation/fanuc/ftp/variables/vcal_vd_variable_type.py +78 -0
  511. underautomation/fanuc/ftp/variables/vcal_vf_variable_type.py +43 -0
  512. underautomation/fanuc/ftp/variables/vcmr_grp_variable_type.py +75 -0
  513. underautomation/fanuc/ftp/variables/vcmr_trgt_variable_type.py +19 -0
  514. underautomation/fanuc/ftp/variables/vcmrinit_file.py +56 -0
  515. underautomation/fanuc/ftp/variables/vcrsm_cfg_variable_type.py +25 -0
  516. underautomation/fanuc/ftp/variables/vcwm_cfg_variable_type.py +19 -0
  517. underautomation/fanuc/ftp/variables/vcwm_grp_variable_type.py +133 -0
  518. underautomation/fanuc/ftp/variables/vector_variable.py +33 -0
  519. underautomation/fanuc/ftp/variables/via_work_variable_type.py +47 -0
  520. underautomation/fanuc/ftp/variables/view_variable_type.py +37 -0
  521. underautomation/fanuc/ftp/variables/vis_ge_cfg_variable_type.py +43 -0
  522. underautomation/fanuc/ftp/variables/vis_logreg_variable_type.py +22 -0
  523. underautomation/fanuc/ftp/variables/vision_cfg_variable_type.py +175 -0
  524. underautomation/fanuc/ftp/variables/vision_grp_variable_type.py +19 -0
  525. underautomation/fanuc/ftp/variables/vlexe_cfg_variable_type.py +34 -0
  526. underautomation/fanuc/ftp/variables/vrtd_filt_variable_type.py +31 -0
  527. underautomation/fanuc/ftp/variables/vsft_cfg_variable_type.py +22 -0
  528. underautomation/fanuc/ftp/variables/vsmo_cfg_variable_type.py +22 -0
  529. underautomation/fanuc/ftp/variables/vsmo_pls_variable_type.py +19 -0
  530. underautomation/fanuc/ftp/variables/vsmo_tmp_variable_type.py +59 -0
  531. underautomation/fanuc/ftp/variables/vsmo_val_variable_type.py +23 -0
  532. underautomation/fanuc/ftp/variables/vtcpset_variable_type.py +49 -0
  533. underautomation/fanuc/ftp/variables/vzdt_cfg_variable_type.py +31 -0
  534. underautomation/fanuc/ftp/variables/wait_data_variable_type.py +22 -0
  535. underautomation/fanuc/ftp/variables/xf_variable_type.py +29 -0
  536. underautomation/fanuc/ftp/variables/xvrcfg_variable_type.py +19 -0
  537. underautomation/fanuc/ftp/variables/zabc_grp_variable_type.py +19 -0
  538. underautomation/fanuc/ftp/variables/zdt_actvspt_variable_type.py +58 -0
  539. underautomation/fanuc/ftp/variables/zdt_dcschg_variable_type.py +31 -0
  540. underautomation/fanuc/ftp/variables/zip_cfg_variable_type.py +22 -0
  541. underautomation/fanuc/ftp/variables/zmpcf_grp_variable_type.py +22 -0
  542. underautomation/fanuc/ftp/variables/zmpos_grp_variable_type.py +74 -0
  543. underautomation/fanuc/ftp/variables/zp_cfg_variable_type.py +22 -0
  544. underautomation/fanuc/ftp/variables/zp_cylinder_variable_type.py +28 -0
  545. underautomation/fanuc/ftp/variables/zp_grp_variable_type.py +49 -0
  546. underautomation/fanuc/ftp/variables/zp_sphere_variable_type.py +25 -0
  547. underautomation/fanuc/kinematics/__init__.py +0 -0
  548. underautomation/fanuc/kinematics/arm_kinematic_models.py +88 -0
  549. underautomation/fanuc/kinematics/crx/__init__.py +0 -0
  550. underautomation/fanuc/kinematics/crx/crx_kinematics_utils.py +18 -0
  551. underautomation/fanuc/kinematics/dh_parameters.py +77 -0
  552. underautomation/fanuc/kinematics/i_dh_parameters.py +30 -0
  553. underautomation/fanuc/kinematics/internal/__init__.py +0 -0
  554. underautomation/fanuc/kinematics/internal/arm_model_attribute.py +31 -0
  555. underautomation/fanuc/kinematics/kinematics_category.py +9 -0
  556. underautomation/fanuc/kinematics/kinematics_utils.py +24 -0
  557. underautomation/fanuc/kinematics/opw/__init__.py +0 -0
  558. underautomation/fanuc/kinematics/opw/opw_kinematics_utils.py +18 -0
  559. underautomation/fanuc/lib/UnderAutomation.Fanuc.dll +0 -0
  560. underautomation/fanuc/lib/version.txt +1 -0
  561. underautomation/fanuc/license/__init__.py +0 -0
  562. underautomation/fanuc/license/invalid_license_exception.py +16 -0
  563. underautomation/fanuc/license/license_info.py +48 -0
  564. underautomation/fanuc/license/license_state.py +12 -0
  565. underautomation/fanuc/rmi/__init__.py +0 -0
  566. underautomation/fanuc/rmi/data/__init__.py +0 -0
  567. underautomation/fanuc/rmi/data/cartesian_position.py +27 -0
  568. underautomation/fanuc/rmi/data/command_verb.py +27 -0
  569. underautomation/fanuc/rmi/data/communication_verb.py +10 -0
  570. underautomation/fanuc/rmi/data/controller_error_text.py +19 -0
  571. underautomation/fanuc/rmi/data/controller_status.py +61 -0
  572. underautomation/fanuc/rmi/data/digital_input_value.py +25 -0
  573. underautomation/fanuc/rmi/data/frame.py +66 -0
  574. underautomation/fanuc/rmi/data/indexed_frame.py +26 -0
  575. underautomation/fanuc/rmi/data/instruction_verb.py +21 -0
  576. underautomation/fanuc/rmi/data/joint_angles.py +66 -0
  577. underautomation/fanuc/rmi/data/joint_angles_sample.py +20 -0
  578. underautomation/fanuc/rmi/data/motion_configuration.py +66 -0
  579. underautomation/fanuc/rmi/data/on_off.py +8 -0
  580. underautomation/fanuc/rmi/data/port_type.py +8 -0
  581. underautomation/fanuc/rmi/data/position_register_data.py +33 -0
  582. underautomation/fanuc/rmi/data/rmi_message_kind.py +9 -0
  583. underautomation/fanuc/rmi/data/rmi_response_base.py +18 -0
  584. underautomation/fanuc/rmi/data/rmi_sequence_response.py +19 -0
  585. underautomation/fanuc/rmi/data/rmi_timed_response.py +19 -0
  586. underautomation/fanuc/rmi/data/speed_type.py +10 -0
  587. underautomation/fanuc/rmi/data/tcp_speed.py +19 -0
  588. underautomation/fanuc/rmi/data/termination_type.py +9 -0
  589. underautomation/fanuc/rmi/data/u_frame_u_tool_numbers.py +25 -0
  590. underautomation/fanuc/rmi/internal/__init__.py +0 -0
  591. underautomation/fanuc/rmi/internal/rmi_client_base.py +119 -0
  592. underautomation/fanuc/rmi/internal/rmi_client_internal.py +13 -0
  593. underautomation/fanuc/rmi/internal/rmi_connect_parameters_base.py +36 -0
  594. underautomation/fanuc/rmi/rmi_client.py +15 -0
  595. underautomation/fanuc/rmi/rmi_exception.py +15 -0
  596. underautomation/fanuc/snpx/__init__.py +0 -0
  597. underautomation/fanuc/snpx/assignment/__init__.py +0 -0
  598. underautomation/fanuc/snpx/assignment/integer_system_variables_batch_assignment.py +15 -0
  599. underautomation/fanuc/snpx/assignment/numeric_registers_batch_assignment.py +15 -0
  600. underautomation/fanuc/snpx/assignment/position_registers_batch_assignment.py +16 -0
  601. underautomation/fanuc/snpx/assignment/position_system_variables_batch_assignment.py +16 -0
  602. underautomation/fanuc/snpx/assignment/real_system_variables_batch_assignment.py +15 -0
  603. underautomation/fanuc/snpx/assignment/string_registers_batch_assignment.py +15 -0
  604. underautomation/fanuc/snpx/assignment/string_system_variables_batch_assignment.py +15 -0
  605. underautomation/fanuc/snpx/internal/__init__.py +0 -0
  606. underautomation/fanuc/snpx/internal/alarm_access.py +14 -0
  607. underautomation/fanuc/snpx/internal/alarm_id.py +102 -0
  608. underautomation/fanuc/snpx/internal/alarm_severity.py +17 -0
  609. underautomation/fanuc/snpx/internal/alarm_type.py +8 -0
  610. underautomation/fanuc/snpx/internal/assignment.py +23 -0
  611. underautomation/fanuc/snpx/internal/assignment_1.py +17 -0
  612. underautomation/fanuc/snpx/internal/batch_assignment_2.py +23 -0
  613. underautomation/fanuc/snpx/internal/current_position.py +19 -0
  614. underautomation/fanuc/snpx/internal/current_position_request.py +24 -0
  615. underautomation/fanuc/snpx/internal/current_task_status.py +14 -0
  616. underautomation/fanuc/snpx/internal/digital_signals.py +29 -0
  617. underautomation/fanuc/snpx/internal/integer_system_variables.py +14 -0
  618. underautomation/fanuc/snpx/internal/numeric_io.py +29 -0
  619. underautomation/fanuc/snpx/internal/numeric_registers.py +16 -0
  620. underautomation/fanuc/snpx/internal/position_registers.py +22 -0
  621. underautomation/fanuc/snpx/internal/position_system_variables.py +20 -0
  622. underautomation/fanuc/snpx/internal/real_system_variables.py +14 -0
  623. underautomation/fanuc/snpx/internal/robot_alarm.py +76 -0
  624. underautomation/fanuc/snpx/internal/robot_task_state.py +9 -0
  625. underautomation/fanuc/snpx/internal/robot_task_status.py +43 -0
  626. underautomation/fanuc/snpx/internal/segment_name.py +24 -0
  627. underautomation/fanuc/snpx/internal/segment_offset.py +17 -0
  628. underautomation/fanuc/snpx/internal/segment_selector.py +27 -0
  629. underautomation/fanuc/snpx/internal/snpx_assignable_elements_2.py +20 -0
  630. underautomation/fanuc/snpx/internal/snpx_client_base.py +139 -0
  631. underautomation/fanuc/snpx/internal/snpx_client_internal.py +13 -0
  632. underautomation/fanuc/snpx/internal/snpx_connect_parameters_base.py +20 -0
  633. underautomation/fanuc/snpx/internal/snpx_elements_2.py +16 -0
  634. underautomation/fanuc/snpx/internal/snpx_writable_assignable_elements_3.py +20 -0
  635. underautomation/fanuc/snpx/internal/string_registers.py +16 -0
  636. underautomation/fanuc/snpx/internal/string_system_variables.py +14 -0
  637. underautomation/fanuc/snpx/snpx_client.py +15 -0
  638. underautomation/fanuc/telnet/__init__.py +0 -0
  639. underautomation/fanuc/telnet/abort_result.py +13 -0
  640. underautomation/fanuc/telnet/add_breakpoint_result.py +13 -0
  641. underautomation/fanuc/telnet/base_result.py +13 -0
  642. underautomation/fanuc/telnet/breakpoint.py +15 -0
  643. underautomation/fanuc/telnet/breakpoints_result.py +17 -0
  644. underautomation/fanuc/telnet/command_sent_event_args.py +18 -0
  645. underautomation/fanuc/telnet/continue_result.py +13 -0
  646. underautomation/fanuc/telnet/custom_command_result.py +18 -0
  647. underautomation/fanuc/telnet/get_current_pose_result.py +22 -0
  648. underautomation/fanuc/telnet/get_variable_result.py +18 -0
  649. underautomation/fanuc/telnet/internal/__init__.py +0 -0
  650. underautomation/fanuc/telnet/internal/telnet_client_base.py +137 -0
  651. underautomation/fanuc/telnet/internal/telnet_client_internal.py +13 -0
  652. underautomation/fanuc/telnet/internal/telnet_connect_parameters_base.py +18 -0
  653. underautomation/fanuc/telnet/kcl_client_error_event_args.py +18 -0
  654. underautomation/fanuc/telnet/kcl_command_received.py +19 -0
  655. underautomation/fanuc/telnet/kcl_ports.py +17 -0
  656. underautomation/fanuc/telnet/message_received_event_args.py +21 -0
  657. underautomation/fanuc/telnet/pause_result.py +13 -0
  658. underautomation/fanuc/telnet/program_command_result.py +13 -0
  659. underautomation/fanuc/telnet/raw_data_received_event_args.py +18 -0
  660. underautomation/fanuc/telnet/remove_breakpoint_result.py +13 -0
  661. underautomation/fanuc/telnet/reset_result.py +13 -0
  662. underautomation/fanuc/telnet/result.py +23 -0
  663. underautomation/fanuc/telnet/run_result.py +13 -0
  664. underautomation/fanuc/telnet/set_port_result.py +13 -0
  665. underautomation/fanuc/telnet/set_value_result.py +21 -0
  666. underautomation/fanuc/telnet/set_variable_result.py +13 -0
  667. underautomation/fanuc/telnet/simulate_result.py +13 -0
  668. underautomation/fanuc/telnet/step_off_result.py +13 -0
  669. underautomation/fanuc/telnet/step_on_result.py +13 -0
  670. underautomation/fanuc/telnet/task_information_result.py +47 -0
  671. underautomation/fanuc/telnet/telnet_client.py +15 -0
  672. underautomation/fanuc/telnet/tp_coordinates.py +12 -0
  673. underautomation/fanuc/telnet/tp_coordinates_received_event_args.py +19 -0
  674. underautomation/fanuc/telnet/unsimulate_all_result.py +13 -0
  675. underautomation/fanuc/telnet/unsimulate_result.py +13 -0
  676. underautomation/fanuc/telnet/variable_result.py +13 -0
  677. underautomation/fanuc/telnet/variables_result.py +13 -0
  678. underautomation_fanuc-3.5.0.0.dist-info/METADATA +210 -0
  679. underautomation_fanuc-3.5.0.0.dist-info/RECORD +681 -0
  680. underautomation_fanuc-3.5.0.0.dist-info/WHEEL +5 -0
  681. underautomation_fanuc-3.5.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,28 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.generic_variable_type import GenericVariableType
3
+ import clr
4
+ import os
5
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
6
+ from UnderAutomation.Fanuc.Ftp.Variables import FltrOvrnVariableType as fltr_ovrn_variable_type
7
+
8
+ class FltrOvrnVariableType(GenericVariableType):
9
+ def __init__(self, _internal = 0):
10
+ if(_internal == 0):
11
+ self._instance = fltr_ovrn_variable_type()
12
+ else:
13
+ self._instance = _internal
14
+ @property
15
+ def limit_tick(self) -> int:
16
+ return self._instance.LimitTick
17
+ @property
18
+ def overrun_cnt(self) -> int:
19
+ return self._instance.OverrunCnt
20
+ @property
21
+ def max_tick(self) -> int:
22
+ return self._instance.MaxTick
23
+ @property
24
+ def itp_count(self) -> int:
25
+ return self._instance.ItpCount
26
+ @property
27
+ def fanuc_internal_type_name(self) -> str:
28
+ return self._instance.FanucInternalTypeName
@@ -0,0 +1,67 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.generic_variable_type import GenericVariableType
3
+ import clr
4
+ import os
5
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
6
+ from UnderAutomation.Fanuc.Ftp.Variables import FluiCfgVariableType as flui_cfg_variable_type
7
+
8
+ class FluiCfgVariableType(GenericVariableType):
9
+ def __init__(self, _internal = 0):
10
+ if(_internal == 0):
11
+ self._instance = flui_cfg_variable_type()
12
+ else:
13
+ self._instance = _internal
14
+ @property
15
+ def dbglvl(self) -> int:
16
+ return self._instance.Dbglvl
17
+ @property
18
+ def recurse(self) -> int:
19
+ return self._instance.Recurse
20
+ @property
21
+ def style(self) -> int:
22
+ return self._instance.Style
23
+ @property
24
+ def edt_rcnt_si(self) -> int:
25
+ return self._instance.EdtRcntSi
26
+ @property
27
+ def tempint(self) -> typing.List[int]:
28
+ return self._instance.Tempint
29
+ @property
30
+ def tempstr(self) -> typing.List[str]:
31
+ return self._instance.Tempstr
32
+ @property
33
+ def jog_coord(self) -> int:
34
+ return self._instance.JogCoord
35
+ @property
36
+ def ovrtext(self) -> str:
37
+ return self._instance.Ovrtext
38
+ @property
39
+ def shotemplate(self) -> bool:
40
+ return self._instance.Shotemplate
41
+ @property
42
+ def assist_mode(self) -> int:
43
+ return self._instance.AssistMode
44
+ @property
45
+ def custom(self) -> int:
46
+ return self._instance.Custom
47
+ @property
48
+ def dbg1(self) -> int:
49
+ return self._instance.Dbg1
50
+ @property
51
+ def dbg2(self) -> int:
52
+ return self._instance.Dbg2
53
+ @property
54
+ def dbg3(self) -> int:
55
+ return self._instance.Dbg3
56
+ @property
57
+ def dbg4(self) -> int:
58
+ return self._instance.Dbg4
59
+ @property
60
+ def dbg5(self) -> int:
61
+ return self._instance.Dbg5
62
+ @property
63
+ def force(self) -> bool:
64
+ return self._instance.Force
65
+ @property
66
+ def fanuc_internal_type_name(self) -> str:
67
+ return self._instance.FanucInternalTypeName
@@ -0,0 +1,22 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.generic_variable_type import GenericVariableType
3
+ import clr
4
+ import os
5
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
6
+ from UnderAutomation.Fanuc.Ftp.Variables import FluiDataVariableType as flui_data_variable_type
7
+
8
+ class FluiDataVariableType(GenericVariableType):
9
+ def __init__(self, _internal = 0):
10
+ if(_internal == 0):
11
+ self._instance = flui_data_variable_type()
12
+ else:
13
+ self._instance = _internal
14
+ @property
15
+ def future1(self) -> int:
16
+ return self._instance.Future1
17
+ @property
18
+ def future2(self) -> int:
19
+ return self._instance.Future2
20
+ @property
21
+ def fanuc_internal_type_name(self) -> str:
22
+ return self._instance.FanucInternalTypeName
@@ -0,0 +1,48 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.vector_variable import VectorVariable
3
+ from underautomation.fanuc.ftp.variables.cartesian_position_variable import CartesianPositionVariable
4
+ from underautomation.fanuc.ftp.variables.generic_variable_type import GenericVariableType
5
+ import clr
6
+ import os
7
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
8
+ from UnderAutomation.Fanuc.Ftp.Variables import FluiResVariableType as flui_res_variable_type
9
+
10
+ class FluiResVariableType(GenericVariableType):
11
+ def __init__(self, _internal = 0):
12
+ if(_internal == 0):
13
+ self._instance = flui_res_variable_type()
14
+ else:
15
+ self._instance = _internal
16
+ @property
17
+ def navid(self) -> str:
18
+ return self._instance.Navid
19
+ @property
20
+ def text(self) -> str:
21
+ return self._instance.Text
22
+ @property
23
+ def result_type(self) -> int:
24
+ return self._instance.ResultType
25
+ @property
26
+ def visited(self) -> int:
27
+ return self._instance.Visited
28
+ @property
29
+ def scid(self) -> int:
30
+ return self._instance.Scid
31
+ @property
32
+ def select_mask(self) -> int:
33
+ return self._instance.SelectMask
34
+ @property
35
+ def vector(self) -> VectorVariable:
36
+ return VectorVariable(self._instance.Vector)
37
+ @property
38
+ def number(self) -> int:
39
+ return self._instance.Number
40
+ @property
41
+ def real_number(self) -> float:
42
+ return self._instance.RealNumber
43
+ @property
44
+ def position(self) -> CartesianPositionVariable:
45
+ return CartesianPositionVariable(self._instance.Position)
46
+ @property
47
+ def fanuc_internal_type_name(self) -> str:
48
+ return self._instance.FanucInternalTypeName
@@ -0,0 +1,76 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.generic_variable_type import GenericVariableType
3
+ import clr
4
+ import os
5
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
6
+ from UnderAutomation.Fanuc.Ftp.Variables import Fmr2GrpVariableType as fmr2_grp_variable_type
7
+
8
+ class Fmr2GrpVariableType(GenericVariableType):
9
+ def __init__(self, _internal = 0):
10
+ if(_internal == 0):
11
+ self._instance = fmr2_grp_variable_type()
12
+ else:
13
+ self._instance = _internal
14
+ @property
15
+ def vel_rot(self) -> float:
16
+ return self._instance.VelRot
17
+ @property
18
+ def vel_lin(self) -> float:
19
+ return self._instance.VelLin
20
+ @property
21
+ def vel_mod(self) -> typing.List[int]:
22
+ return self._instance.VelMod
23
+ @property
24
+ def k_life(self) -> typing.List[float]:
25
+ return self._instance.KLife
26
+ @property
27
+ def ntr_life(self) -> typing.List[float]:
28
+ return self._instance.NtrLife
29
+ @property
30
+ def eff_rate(self) -> typing.List[float]:
31
+ return self._instance.EffRate
32
+ @property
33
+ def rot_inrt(self) -> typing.List[float]:
34
+ return self._instance.RotInrt
35
+ @property
36
+ def trov_max(self) -> typing.List[float]:
37
+ return self._instance.TrovMax
38
+ @property
39
+ def t_life0(self) -> float:
40
+ return self._instance.TLife0
41
+ @property
42
+ def rated_trq(self) -> typing.List[float]:
43
+ return self._instance.RatedTrq
44
+ @property
45
+ def limit_func(self) -> int:
46
+ return self._instance.LimitFunc
47
+ @property
48
+ def acc_lmt(self) -> typing.List[float]:
49
+ return self._instance.AccLmt
50
+ @property
51
+ def drive_type(self) -> typing.List[float]:
52
+ return self._instance.DriveType
53
+ @property
54
+ def gear_ratio2(self) -> typing.List[float]:
55
+ return self._instance.GearRatio2
56
+ @property
57
+ def dgclfr(self) -> typing.List[float]:
58
+ return self._instance.Dgclfr
59
+ @property
60
+ def dgdyfr(self) -> typing.List[float]:
61
+ return self._instance.Dgdyfr
62
+ @property
63
+ def dgldec(self) -> typing.List[float]:
64
+ return self._instance.Dgldec
65
+ @property
66
+ def dg5t0(self) -> typing.List[float]:
67
+ return self._instance.Dg5t0
68
+ @property
69
+ def dg_maxt(self) -> typing.List[float]:
70
+ return self._instance.DgMaxt
71
+ @property
72
+ def dg_t0(self) -> typing.List[float]:
73
+ return self._instance.DgT0
74
+ @property
75
+ def fanuc_internal_type_name(self) -> str:
76
+ return self._instance.FanucInternalTypeName
@@ -0,0 +1,19 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.generic_variable_type import GenericVariableType
3
+ import clr
4
+ import os
5
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
6
+ from UnderAutomation.Fanuc.Ftp.Variables import FmrCfgVariableType as fmr_cfg_variable_type
7
+
8
+ class FmrCfgVariableType(GenericVariableType):
9
+ def __init__(self, _internal = 0):
10
+ if(_internal == 0):
11
+ self._instance = fmr_cfg_variable_type()
12
+ else:
13
+ self._instance = _internal
14
+ @property
15
+ def trov_max(self) -> typing.List[int]:
16
+ return self._instance.TrovMax
17
+ @property
18
+ def fanuc_internal_type_name(self) -> str:
19
+ return self._instance.FanucInternalTypeName
@@ -0,0 +1,71 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.clhist_variable_type import ClhistVariableType
3
+ from underautomation.fanuc.ftp.variables.generic_variable_type import GenericVariableType
4
+ import clr
5
+ import os
6
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
7
+ from UnderAutomation.Fanuc.Ftp.Variables import FmsGrpVariableType as fms_grp_variable_type
8
+
9
+ class FmsGrpVariableType(GenericVariableType):
10
+ def __init__(self, _internal = 0):
11
+ if(_internal == 0):
12
+ self._instance = fms_grp_variable_type()
13
+ else:
14
+ self._instance = _internal
15
+ @property
16
+ def rem_life(self) -> typing.List[float]:
17
+ return self._instance.RemLife
18
+ @property
19
+ def nt_life(self) -> typing.List[float]:
20
+ return self._instance.NtLife
21
+ @property
22
+ def t_life(self) -> typing.List[float]:
23
+ return self._instance.TLife
24
+ @property
25
+ def cldet_ang(self) -> typing.List[float]:
26
+ return self._instance.CldetAng
27
+ @property
28
+ def nt_life0(self) -> typing.List[float]:
29
+ return self._instance.NtLife0
30
+ @property
31
+ def t_life_temp(self) -> typing.List[float]:
32
+ return self._instance.TLifeTemp
33
+ @property
34
+ def rem_life0(self) -> typing.List[float]:
35
+ return self._instance.RemLife0
36
+ @property
37
+ def grp_cl_time(self) -> int:
38
+ return self._instance.GrpClTime
39
+ @property
40
+ def pccomer_cnt(self) -> typing.List[int]:
41
+ return self._instance.PccomerCnt
42
+ @property
43
+ def fb_comp_cnt(self) -> typing.List[int]:
44
+ return self._instance.FbCompCnt
45
+ @property
46
+ def cmal_detect(self) -> typing.List[bool]:
47
+ return self._instance.CmalDetect
48
+ @property
49
+ def cldet_pt(self) -> int:
50
+ return self._instance.CldetPt
51
+ @property
52
+ def ps_dty_str(self) -> int:
53
+ return self._instance.PsDtyStr
54
+ @property
55
+ def dty_str_t(self) -> int:
56
+ return self._instance.DtyStrT
57
+ @property
58
+ def dty_end_t(self) -> int:
59
+ return self._instance.DtyEndT
60
+ @property
61
+ def cldet_cnt(self) -> typing.List[int]:
62
+ return self._instance.CldetCnt
63
+ @property
64
+ def clhist(self) -> typing.List[ClhistVariableType]:
65
+ return [ClhistVariableType(x) for x in self._instance.Clhist]
66
+ @property
67
+ def t_life_ms(self) -> typing.List[int]:
68
+ return self._instance.TLifeMs
69
+ @property
70
+ def fanuc_internal_type_name(self) -> str:
71
+ return self._instance.FanucInternalTypeName
@@ -0,0 +1,28 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.generic_variable_type import GenericVariableType
3
+ import clr
4
+ import os
5
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
6
+ from UnderAutomation.Fanuc.Ftp.Variables import FsacLstVariableType as fsac_lst_variable_type
7
+
8
+ class FsacLstVariableType(GenericVariableType):
9
+ def __init__(self, _internal = 0):
10
+ if(_internal == 0):
11
+ self._instance = fsac_lst_variable_type()
12
+ else:
13
+ self._instance = _internal
14
+ @property
15
+ def clnt_name(self) -> str:
16
+ return self._instance.ClntName
17
+ @property
18
+ def ip_address(self) -> str:
19
+ return self._instance.IpAddress
20
+ @property
21
+ def access_lvl(self) -> int:
22
+ return self._instance.AccessLvl
23
+ @property
24
+ def apps(self) -> int:
25
+ return self._instance.Apps
26
+ @property
27
+ def fanuc_internal_type_name(self) -> str:
28
+ return self._instance.FanucInternalTypeName
@@ -0,0 +1,31 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.generic_variable_type import GenericVariableType
3
+ import clr
4
+ import os
5
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
6
+ from UnderAutomation.Fanuc.Ftp.Variables import FssbCfgVariableType as fssb_cfg_variable_type
7
+
8
+ class FssbCfgVariableType(GenericVariableType):
9
+ def __init__(self, _internal = 0):
10
+ if(_internal == 0):
11
+ self._instance = fssb_cfg_variable_type()
12
+ else:
13
+ self._instance = _internal
14
+ @property
15
+ def fssb_line(self) -> typing.List[int]:
16
+ return self._instance.FssbLine
17
+ @property
18
+ def ex_fssbline(self) -> typing.List[int]:
19
+ return self._instance.ExFssbline
20
+ @property
21
+ def fssb1_axes(self) -> int:
22
+ return self._instance.Fssb1Axes
23
+ @property
24
+ def fssb3_axes(self) -> int:
25
+ return self._instance.Fssb3Axes
26
+ @property
27
+ def fssb5_axes(self) -> int:
28
+ return self._instance.Fssb5Axes
29
+ @property
30
+ def fanuc_internal_type_name(self) -> str:
31
+ return self._instance.FanucInternalTypeName
@@ -0,0 +1,28 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.generic_variable_type import GenericVariableType
3
+ import clr
4
+ import os
5
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
6
+ from UnderAutomation.Fanuc.Ftp.Variables import FtpCtrlVariableType as ftp_ctrl_variable_type
7
+
8
+ class FtpCtrlVariableType(GenericVariableType):
9
+ def __init__(self, _internal = 0):
10
+ if(_internal == 0):
11
+ self._instance = ftp_ctrl_variable_type()
12
+ else:
13
+ self._instance = _internal
14
+ @property
15
+ def log_entries(self) -> int:
16
+ return self._instance.LogEntries
17
+ @property
18
+ def log_cmos(self) -> bool:
19
+ return self._instance.LogCmos
20
+ @property
21
+ def dnld_filter(self) -> bool:
22
+ return self._instance.DnldFilter
23
+ @property
24
+ def subdircaps(self) -> bool:
25
+ return self._instance.Subdircaps
26
+ @property
27
+ def fanuc_internal_type_name(self) -> str:
28
+ return self._instance.FanucInternalTypeName
@@ -0,0 +1,43 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.generic_variable_type import GenericVariableType
3
+ import clr
4
+ import os
5
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
6
+ from UnderAutomation.Fanuc.Ftp.Variables import FxTriggerVariableType as fx_trigger_variable_type
7
+
8
+ class FxTriggerVariableType(GenericVariableType):
9
+ def __init__(self, _internal = 0):
10
+ if(_internal == 0):
11
+ self._instance = fx_trigger_variable_type()
12
+ else:
13
+ self._instance = _internal
14
+ @property
15
+ def start_model(self) -> int:
16
+ return self._instance.StartModel
17
+ @property
18
+ def start_step(self) -> int:
19
+ return self._instance.StartStep
20
+ @property
21
+ def start_prog(self) -> str:
22
+ return self._instance.StartProg
23
+ @property
24
+ def stop_model(self) -> int:
25
+ return self._instance.StopModel
26
+ @property
27
+ def stop_step(self) -> int:
28
+ return self._instance.StopStep
29
+ @property
30
+ def stop_prog(self) -> str:
31
+ return self._instance.StopProg
32
+ @property
33
+ def axes(self) -> int:
34
+ return self._instance.Axes
35
+ @property
36
+ def data_type(self) -> int:
37
+ return self._instance.DataType
38
+ @property
39
+ def datetime(self) -> int:
40
+ return self._instance.Datetime
41
+ @property
42
+ def fanuc_internal_type_name(self) -> str:
43
+ return self._instance.FanucInternalTypeName
@@ -0,0 +1,25 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.generic_variable_file import GenericVariableFile
3
+ import clr
4
+ import os
5
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
6
+ from UnderAutomation.Fanuc.Ftp.Variables import GemdataFile as gemdata_file
7
+
8
+ class GemdataFile(GenericVariableFile):
9
+ def __init__(self, _internal = 0):
10
+ if(_internal == 0):
11
+ self._instance = gemdata_file()
12
+ else:
13
+ self._instance = _internal
14
+ @property
15
+ def answer_delay(self) -> int:
16
+ return self._instance.AnswerDelay
17
+ @property
18
+ def debug_msg(self) -> bool:
19
+ return self._instance.DebugMsg
20
+ @property
21
+ def wait_act(self) -> int:
22
+ return self._instance.WaitAct
23
+ @property
24
+ def wait_time(self) -> int:
25
+ return self._instance.WaitTime
@@ -0,0 +1,37 @@
1
+ import typing
2
+ # Circular dependencies : GenericValue
3
+ from underautomation.fanuc.ftp.variables.generic_value import GenericValue
4
+ import clr
5
+ import os
6
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
7
+ from UnderAutomation.Fanuc.Ftp.Variables import GenericField as generic_field
8
+
9
+ class GenericField(GenericValue):
10
+ def __init__(self, _internal = 0):
11
+ if(_internal == 0):
12
+ self._instance = generic_field()
13
+ else:
14
+ self._instance = _internal
15
+ def __repr__(self):
16
+ return self._instance.ToString()
17
+ @property
18
+ def access(self) -> str:
19
+ return self._instance.Access
20
+ @property
21
+ def type(self) -> str:
22
+ return self._instance.Type
23
+ @type.setter
24
+ def type(self, value: str):
25
+ self._instance.Type = value
26
+ @property
27
+ def is_register(self) -> bool:
28
+ return self._instance.IsRegister
29
+ @property
30
+ def string_length(self) -> int:
31
+ return self._instance.StringLength
32
+ @property
33
+ def dimension1(self) -> int:
34
+ return self._instance.Dimension1
35
+ @property
36
+ def dimension2(self) -> int:
37
+ return self._instance.Dimension2
@@ -0,0 +1,42 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.i_generic_variable_type import IGenericVariableType
3
+ from underautomation.fanuc.ftp.variables.value_kind import ValueKind
4
+ # Circular dependencies : GenericField
5
+ import clr
6
+ import os
7
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
8
+ from UnderAutomation.Fanuc.Ftp.Variables import GenericValue as generic_value
9
+
10
+ class GenericValue(IGenericVariableType):
11
+ def __init__(self, _internal = 0):
12
+ if(_internal == 0):
13
+ self._instance = generic_value()
14
+ else:
15
+ self._instance = _internal
16
+ def __repr__(self):
17
+ return self._instance.ToString()
18
+ @property
19
+ def parent(self) -> 'GenericValue':
20
+ return GenericValue(self._instance.Parent)
21
+ @property
22
+ def kind(self) -> ValueKind:
23
+ return ValueKind(self._instance.Kind)
24
+ @property
25
+ def fields(self) -> typing.Any:
26
+ from underautomation.fanuc.ftp.variables.generic_field import GenericField
27
+ return [GenericField(x) for x in self._instance.Fields]
28
+ @property
29
+ def name(self) -> str:
30
+ return self._instance.Name
31
+ @property
32
+ def is_uninitialized(self) -> bool:
33
+ return self._instance.IsUninitialized
34
+ @property
35
+ def value(self) -> str:
36
+ return self._instance.Value
37
+ @property
38
+ def register_name(self) -> str:
39
+ return self._instance.RegisterName
40
+ @property
41
+ def full_name(self) -> str:
42
+ return self._instance.FullName
@@ -0,0 +1,23 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.i_generic_variable_type import IGenericVariableType
3
+ from underautomation.fanuc.ftp.variables.generic_field import GenericField
4
+ import clr
5
+ import os
6
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
7
+ from UnderAutomation.Fanuc.Ftp.Variables import GenericVariable as generic_variable
8
+
9
+ class GenericVariable(GenericField, IGenericVariableType):
10
+ def __init__(self, _internal = 0):
11
+ if(_internal == 0):
12
+ self._instance = generic_variable()
13
+ else:
14
+ self._instance = _internal
15
+ @property
16
+ def scope(self) -> str:
17
+ return self._instance.Scope
18
+ @property
19
+ def storage(self) -> str:
20
+ return self._instance.Storage
21
+ @property
22
+ def parent(self) -> IGenericVariableType:
23
+ return IGenericVariableType(self._instance.Parent)
@@ -0,0 +1,35 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.i_generic_variable_type import IGenericVariableType
3
+ from underautomation.fanuc.ftp.internal.i_fanuc_content import IFanucContent
4
+ from underautomation.fanuc.ftp.variables.generic_variable import GenericVariable
5
+ import clr
6
+ import os
7
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
8
+ from UnderAutomation.Fanuc.Ftp.Variables import GenericVariableFile as generic_variable_file
9
+
10
+ class GenericVariableFile(IGenericVariableType, IFanucContent):
11
+ def __init__(self, _internal = 0):
12
+ if(_internal == 0):
13
+ self._instance = generic_variable_file()
14
+ else:
15
+ self._instance = _internal
16
+ def __repr__(self):
17
+ return self._instance.ToString()
18
+ def get_field(self, name: str) -> GenericVariable:
19
+ return GenericVariable(self._instance.GetField(name))
20
+ def generate_va(self, stream: typing.Any) -> None:
21
+ self._instance.GenerateVa(stream)
22
+ def generated_va(self) -> str:
23
+ return self._instance.GeneratedVa()
24
+ @property
25
+ def variables(self) -> typing.List[GenericVariable]:
26
+ return [GenericVariable(x) for x in self._instance.Variables]
27
+ @property
28
+ def name(self) -> str:
29
+ return self._instance.Name
30
+ @property
31
+ def parent(self) -> IGenericVariableType:
32
+ return IGenericVariableType(self._instance.Parent)
33
+ @parent.setter
34
+ def parent(self, value: IGenericVariableType):
35
+ self._instance.Parent = value
@@ -0,0 +1,25 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.i_generic_variable_type import IGenericVariableType
3
+ from underautomation.fanuc.ftp.variables.generic_field import GenericField
4
+ import clr
5
+ import os
6
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
7
+ from UnderAutomation.Fanuc.Ftp.Variables import GenericVariableType as generic_variable_type
8
+
9
+ class GenericVariableType(IGenericVariableType):
10
+ def __init__(self, _internal = 0):
11
+ if(_internal == 0):
12
+ self._instance = generic_variable_type()
13
+ else:
14
+ self._instance = _internal
15
+ def get_field(self, name: str) -> GenericField:
16
+ return GenericField(self._instance.GetField(name))
17
+ @property
18
+ def fields(self) -> typing.List[GenericField]:
19
+ return [GenericField(x) for x in self._instance.Fields]
20
+ @property
21
+ def fanuc_internal_type_name(self) -> str:
22
+ return self._instance.FanucInternalTypeName
23
+ @property
24
+ def parent(self) -> IGenericVariableType:
25
+ return IGenericVariableType(self._instance.Parent)
@@ -0,0 +1,19 @@
1
+ import typing
2
+ from underautomation.fanuc.ftp.variables.i_generic_variable_type import IGenericVariableType
3
+ import clr
4
+ import os
5
+ clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
6
+ from UnderAutomation.Fanuc.Ftp.Variables import GenericVariableTypeHelpers as generic_variable_type_helpers
7
+
8
+ class GenericVariableTypeHelpers:
9
+ def __init__(self, _internal = 0):
10
+ if(_internal == 0):
11
+ self._instance = generic_variable_type_helpers()
12
+ else:
13
+ self._instance = _internal
14
+ @staticmethod
15
+ def get_ancestors(element: IGenericVariableType) -> typing.List[IGenericVariableType]:
16
+ return [IGenericVariableType(x) for x in generic_variable_type_helpers.GetAncestors(element._instance if element else None)]
17
+ @staticmethod
18
+ def get_field(element: IGenericVariableType, name: str) -> IGenericVariableType:
19
+ return IGenericVariableType(generic_variable_type_helpers.GetField(element._instance if element else None, name))