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.
- underautomation/__init__.py +0 -0
- underautomation/fanuc/__init__.py +0 -0
- underautomation/fanuc/common/__init__.py +0 -0
- underautomation/fanuc/common/arm_front_back.py +9 -0
- underautomation/fanuc/common/arm_left_right.py +9 -0
- underautomation/fanuc/common/arm_up_down.py +9 -0
- underautomation/fanuc/common/cartesian_position.py +51 -0
- underautomation/fanuc/common/cartesian_position_with_tool.py +21 -0
- underautomation/fanuc/common/cartesian_position_with_user_frame.py +18 -0
- underautomation/fanuc/common/configuration.py +65 -0
- underautomation/fanuc/common/connect_exception.py +18 -0
- underautomation/fanuc/common/digital_ports.py +15 -0
- underautomation/fanuc/common/extended_cartesian_position.py +31 -0
- underautomation/fanuc/common/ftp_connect_parameters.py +19 -0
- underautomation/fanuc/common/io_status.py +27 -0
- underautomation/fanuc/common/joints_position.py +80 -0
- underautomation/fanuc/common/languages.py +9 -0
- underautomation/fanuc/common/position.py +38 -0
- underautomation/fanuc/common/program_type.py +9 -0
- underautomation/fanuc/common/rmi_connect_parameters.py +19 -0
- underautomation/fanuc/common/snpx_connect_parameters.py +19 -0
- underautomation/fanuc/common/string_utils.py +16 -0
- underautomation/fanuc/common/task_status.py +10 -0
- underautomation/fanuc/common/telnet_connect_parameters.py +19 -0
- underautomation/fanuc/common/wrist_flip.py +9 -0
- underautomation/fanuc/common/xyz_position.py +32 -0
- underautomation/fanuc/connection_parameters.py +59 -0
- underautomation/fanuc/fanuc_robot.py +46 -0
- underautomation/fanuc/ftp/__init__.py +0 -0
- underautomation/fanuc/ftp/diagnosis/__init__.py +0 -0
- underautomation/fanuc/ftp/diagnosis/current_position.py +20 -0
- underautomation/fanuc/ftp/diagnosis/current_position_reader.py +21 -0
- underautomation/fanuc/ftp/diagnosis/diagnosis_reader_2.py +18 -0
- underautomation/fanuc/ftp/diagnosis/feature.py +24 -0
- underautomation/fanuc/ftp/diagnosis/features.py +25 -0
- underautomation/fanuc/ftp/diagnosis/features_parser.py +21 -0
- underautomation/fanuc/ftp/diagnosis/group_position.py +27 -0
- underautomation/fanuc/ftp/diagnosis/header_section.py +27 -0
- underautomation/fanuc/ftp/diagnosis/io_state.py +20 -0
- underautomation/fanuc/ftp/diagnosis/io_state_parser.py +21 -0
- underautomation/fanuc/ftp/diagnosis/program_states.py +23 -0
- underautomation/fanuc/ftp/diagnosis/program_states_parser.py +21 -0
- underautomation/fanuc/ftp/diagnosis/safety_status.py +52 -0
- underautomation/fanuc/ftp/diagnosis/safety_status_parser.py +19 -0
- underautomation/fanuc/ftp/diagnosis/summary_diagnosis.py +36 -0
- underautomation/fanuc/ftp/diagnosis/summary_diagnosis_reader.py +17 -0
- underautomation/fanuc/ftp/diagnosis/task_history_data.py +43 -0
- underautomation/fanuc/ftp/diagnosis/task_state.py +38 -0
- underautomation/fanuc/ftp/fanuc_file_readers.py +47 -0
- underautomation/fanuc/ftp/ftp_client.py +15 -0
- underautomation/fanuc/ftp/ftp_file_system_object_type.py +9 -0
- underautomation/fanuc/ftp/ftp_list_item.py +34 -0
- underautomation/fanuc/ftp/internal/__init__.py +0 -0
- underautomation/fanuc/ftp/internal/file_reader.py +16 -0
- underautomation/fanuc/ftp/internal/file_reader_1.py +19 -0
- underautomation/fanuc/ftp/internal/ftp_client_base.py +62 -0
- underautomation/fanuc/ftp/internal/ftp_client_internal.py +13 -0
- underautomation/fanuc/ftp/internal/ftp_connect_parameters_base.py +24 -0
- underautomation/fanuc/ftp/internal/ftp_direct_file_handling.py +37 -0
- underautomation/fanuc/ftp/internal/ftp_known_variable_files.py +117 -0
- underautomation/fanuc/ftp/internal/i_fanuc_content.py +15 -0
- underautomation/fanuc/ftp/internal/i_file_reader.py +15 -0
- underautomation/fanuc/ftp/internal/i_file_reader_1.py +17 -0
- underautomation/fanuc/ftp/internal/section_parser.py +27 -0
- underautomation/fanuc/ftp/internal/section_parser_1.py +17 -0
- underautomation/fanuc/ftp/list/__init__.py +0 -0
- underautomation/fanuc/ftp/list/errall_section_item.py +32 -0
- underautomation/fanuc/ftp/list/error_list.py +22 -0
- underautomation/fanuc/ftp/list/error_list_reader.py +17 -0
- underautomation/fanuc/ftp/variables/__init__.py +0 -0
- underautomation/fanuc/ftp/variables/aavm_grp_variable_type.py +211 -0
- underautomation/fanuc/ftp/variables/aavm_wrk_variable_type.py +106 -0
- underautomation/fanuc/ftp/variables/aavmmain_file.py +234 -0
- underautomation/fanuc/ftp/variables/abspos_grp_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/adj_rtrq_variable_type.py +32 -0
- underautomation/fanuc/ftp/variables/aio_cnv_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/alm_if_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/almdg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/amp_coef_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/amp_id_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/apcoupled_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/apcureq_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/appinfo_variable_type.py +35 -0
- underautomation/fanuc/ftp/variables/appinfoeq_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/arg_str_variable_type.py +79 -0
- underautomation/fanuc/ftp/variables/armld_pos_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/armload_p_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/armload_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/array_element.py +28 -0
- underautomation/fanuc/ftp/variables/asbn_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/at_cellsetup_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/auto_col_rec_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/autobackup_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/ax_ofs_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/axscrdcfg_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/back_edit_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/bbl_nt_wnd_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/bicsetup_file.py +16 -0
- underautomation/fanuc/ftp/variables/bigallow_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/bin_cfg_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/blal_out_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/calc_result_variable_type.py +70 -0
- underautomation/fanuc/ftp/variables/camera_variable_type.py +100 -0
- underautomation/fanuc/ftp/variables/cartesian_position_variable.py +22 -0
- underautomation/fanuc/ftp/variables/cbparam_file.py +97 -0
- underautomation/fanuc/ftp/variables/cell_grp_variable_type.py +60 -0
- underautomation/fanuc/ftp/variables/cellio_file.py +39 -0
- underautomation/fanuc/ftp/variables/cellset_variable_type.py +373 -0
- underautomation/fanuc/ftp/variables/cf_paramgp_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/cfcfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/chg_pri_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/chk_result_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/chkpos_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/clhist_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/clmlio_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/cmd_info_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/co_morgrp_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/co_paramgp_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/cocfg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/collect_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/com_space_variable_type.py +92 -0
- underautomation/fanuc/ftp/variables/comset_file.py +76 -0
- underautomation/fanuc/ftp/variables/condet_cfg_variable_type.py +47 -0
- underautomation/fanuc/ftp/variables/condet_data_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/condet_grp_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/condet_io_variable_type.py +29 -0
- underautomation/fanuc/ftp/variables/condet_trgp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/condet_trig_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/cp_mcrgrp_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/cp_morgrp_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/cp_paramgp_variable_type.py +146 -0
- underautomation/fanuc/ftp/variables/cp_t1_grp_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/cp_t1_mode_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/cp_test_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/cpcfg_variable_type.py +65 -0
- underautomation/fanuc/ftp/variables/cpdbg_variable_type.py +53 -0
- underautomation/fanuc/ftp/variables/cpidebug_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/crcfg_variable_type.py +106 -0
- underautomation/fanuc/ftp/variables/create_prg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/ctrl_cab_variable_type.py +32 -0
- underautomation/fanuc/ftp/variables/current_pos_variable_type.py +29 -0
- underautomation/fanuc/ftp/variables/custommenu_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/db_dbg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/db_record_variable_type.py +98 -0
- underautomation/fanuc/ftp/variables/dbg_errlog_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/dbinfo_variable_type.py +60 -0
- underautomation/fanuc/ftp/variables/dbpxwork_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/dbtb_ctrl_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/dbwork_variable_type.py +20 -0
- underautomation/fanuc/ftp/variables/dcs_cfg_variable_type.py +148 -0
- underautomation/fanuc/ftp/variables/dcs_crc_out_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/dcs_nocode_variable_type.py +16 -0
- underautomation/fanuc/ftp/variables/dcs_sgn_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/dcss_cnstcy_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/dcss_device_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/dcss_hndgd_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/dcss_ls_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/dcss_param_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/dcss_slave_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/deflogic_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/demo_init_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/det_io_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/dh_extra_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/dhcp_ctrl_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/dhcp_int_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/diag_grp_variable_type.py +166 -0
- underautomation/fanuc/ftp/variables/dict_cfg_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/diocfgsv_file.py +91 -0
- underautomation/fanuc/ftp/variables/dmr_grp_variable_type.py +110 -0
- underautomation/fanuc/ftp/variables/dmr_shferr_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/dmsw_cfg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/dns_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/dnss_cfg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/docviewer_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/drc_cfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/dryrun_port_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/dryrun_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/dsbl_fault_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/dtrec_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/dyn_brk_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/edt_recent_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/eff_axis_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/enc_info_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/enc_stat_variable_type.py +94 -0
- underautomation/fanuc/ftp/variables/enetmode_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/eoatcfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/eoatdata_variable_type.py +118 -0
- underautomation/fanuc/ftp/variables/er_noalm_variable_type.py +142 -0
- underautomation/fanuc/ftp/variables/er_noauto_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/erpost_log_variable_type.py +26 -0
- underautomation/fanuc/ftp/variables/err_mask_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/ext_set_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/fdot_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/fdr_grp_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/feature_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/file_back_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/file_setup2_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/file_setup_variable_type.py +44 -0
- underautomation/fanuc/ftp/variables/filecomp_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/fileconfig_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/fltr_ovrn_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/flui_cfg_variable_type.py +67 -0
- underautomation/fanuc/ftp/variables/flui_data_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/flui_res_variable_type.py +48 -0
- underautomation/fanuc/ftp/variables/fmr2_grp_variable_type.py +76 -0
- underautomation/fanuc/ftp/variables/fmr_cfg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/fms_grp_variable_type.py +71 -0
- underautomation/fanuc/ftp/variables/fsac_lst_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/fssb_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/ftp_ctrl_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/fx_trigger_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/gemdata_file.py +25 -0
- underautomation/fanuc/ftp/variables/generic_field.py +37 -0
- underautomation/fanuc/ftp/variables/generic_value.py +42 -0
- underautomation/fanuc/ftp/variables/generic_variable.py +23 -0
- underautomation/fanuc/ftp/variables/generic_variable_file.py +35 -0
- underautomation/fanuc/ftp/variables/generic_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/generic_variable_type_helpers.py +19 -0
- underautomation/fanuc/ftp/variables/glofatt_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/glofset_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/gp_hold_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/gp_status_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/gravc_grp_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/grsmt_grp_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/hist_day_variable_type.py +29 -0
- underautomation/fanuc/ftp/variables/hist_ele_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/host_cfg_variable_type.py +67 -0
- underautomation/fanuc/ftp/variables/hostent_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/hscd_grp_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/hscd_mng_variable_type.py +73 -0
- underautomation/fanuc/ftp/variables/htcolrec_file.py +26 -0
- underautomation/fanuc/ftp/variables/http_auth_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/http_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/httpkcl_file.py +37 -0
- underautomation/fanuc/ftp/variables/hwr_config_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/i_generic_variable_type.py +21 -0
- underautomation/fanuc/ftp/variables/interact_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/intrac_d_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/intrac_n_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/io_def_asg_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/io_uop_cfg_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/iolnk_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/ioslave_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/irc_counter_file.py +56 -0
- underautomation/fanuc/ftp/variables/irc_gnrc_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/irc_msg_file.py +53 -0
- underautomation/fanuc/ftp/variables/irc_status_file.py +53 -0
- underautomation/fanuc/ftp/variables/irc_stlabel_file.py +53 -0
- underautomation/fanuc/ftp/variables/irca_cnf_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/irprog_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/item_acc_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/item_buff_el_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/item_name_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/j2red_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/j3d_pld_cal_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/jcr_grp_variable_type.py +88 -0
- underautomation/fanuc/ftp/variables/jcr_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/jinc_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/jog_rad_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/joint_position_variable.py +22 -0
- underautomation/fanuc/ftp/variables/karel_cfg_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/karelmon_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/klaction_file.py +31 -0
- underautomation/fanuc/ftp/variables/lgcfg_variable_type.py +121 -0
- underautomation/fanuc/ftp/variables/ln_disp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/log_alarm_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/log_buff_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/log_dcs_variable_type.py +56 -0
- underautomation/fanuc/ftp/variables/log_dio_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/log_scrn_fl_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/logbook_variable_type.py +217 -0
- underautomation/fanuc/ftp/variables/max_pld_cal_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/mcr_grp_variable_type.py +217 -0
- underautomation/fanuc/ftp/variables/mcr_variable_type.py +97 -0
- underautomation/fanuc/ftp/variables/mcsp_grp_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/mcsp_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/memo_memo_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/mfrq_cfg_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/mfrq_grp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/mgdebug_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/misc_grp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/misc_mstr_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/misc_scd_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/mix_bg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/mix_logic_variable_type.py +95 -0
- underautomation/fanuc/ftp/variables/mix_mkr_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/mixlogic_file.py +40 -0
- underautomation/fanuc/ftp/variables/mkcfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/mltarm_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/mn_mcr_sop_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/mn_mcr_table_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/mn_mcr_uop_variable_type.py +70 -0
- underautomation/fanuc/ftp/variables/mndsp_mst_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/mndsppstl_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/modaq_cfg_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/modem_inf_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/moptimiz_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/mor_grp_sv_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/mor_grp_variable_type.py +305 -0
- underautomation/fanuc/ftp/variables/mor_variable_type.py +105 -0
- underautomation/fanuc/ftp/variables/motion_dbg_variable_type.py +56 -0
- underautomation/fanuc/ftp/variables/mouse_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/mr_hist_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/mrr2_grp_variable_type.py +162 -0
- underautomation/fanuc/ftp/variables/mrr_grp_variable_type.py +785 -0
- underautomation/fanuc/ftp/variables/msk_ce_grp_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/mtcom_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/mtparam_file.py +148 -0
- underautomation/fanuc/ftp/variables/numreg_file.py +19 -0
- underautomation/fanuc/ftp/variables/on_path_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/optstate_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/opwork_variable_type.py +70 -0
- underautomation/fanuc/ftp/variables/ovrd_setup_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/ovrdslct_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/palreg_file.py +19 -0
- underautomation/fanuc/ftp/variables/passname_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/password_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/pf_cfg_variable_type.py +116 -0
- underautomation/fanuc/ftp/variables/pf_data_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/pf_enhance_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/pf_pref_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/pg_cfg_variable_type.py +79 -0
- underautomation/fanuc/ftp/variables/pg_defspd_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/pgmaxspd_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/pinfo_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/ping_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/pipe_cfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/pl_res_g_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/plcfg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/plcl_grp_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/plid_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/plid_cllb_variable_type.py +98 -0
- underautomation/fanuc/ftp/variables/plid_grp_variable_type.py +320 -0
- underautomation/fanuc/ftp/variables/plid_sv_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/plim_grp_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/plmr_grp_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/plst_grp_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/pmon_que_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/pocfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/podata_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/poinfo_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/poio_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/pos_edit_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/position_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/posreg_file.py +20 -0
- underautomation/fanuc/ftp/variables/pppcfg_lst_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/prgadj_sch_variable_type.py +76 -0
- underautomation/fanuc/ftp/variables/prgadj_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/prgns_cfg_variable_type.py +64 -0
- underautomation/fanuc/ftp/variables/prgns_elem_variable_type.py +67 -0
- underautomation/fanuc/ftp/variables/prgns_grp_variable_type.py +44 -0
- underautomation/fanuc/ftp/variables/prgns_pref_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/protoent_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/proxy_cfg_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/pslgset_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/pslgtemp_variable_type.py +136 -0
- underautomation/fanuc/ftp/variables/pssave_grp_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/pssave_variable_type.py +85 -0
- underautomation/fanuc/ftp/variables/pulco_idata_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/pwrup_dly_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/qskip_grp_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/rcmcfg_variable_type.py +203 -0
- underautomation/fanuc/ftp/variables/rdcr_grp_variable_type.py +47 -0
- underautomation/fanuc/ftp/variables/rdm_cfg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/recloc_variable_type.py +20 -0
- underautomation/fanuc/ftp/variables/recovery_variable_type.py +61 -0
- underautomation/fanuc/ftp/variables/redprot_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/redprot_grp_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/refpos11_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos21_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos31_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos41_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos51_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos61_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos71_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos81_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpsmsk_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/remote_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/repower_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/req_data_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/restart_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/resume_ofst_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/rs232_cfg_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/rsch_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/rspace_variable_type.py +116 -0
- underautomation/fanuc/ftp/variables/rspaceg_variable_type.py +27 -0
- underautomation/fanuc/ftp/variables/rspacesr_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/sbr2_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/sbr_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/scr_grp_variable_type.py +417 -0
- underautomation/fanuc/ftp/variables/scr_variable_type.py +508 -0
- underautomation/fanuc/ftp/variables/servent_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/sfzn_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/sfzn_grp_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/shell_cfg_variable_type.py +175 -0
- underautomation/fanuc/ftp/variables/shell_chk_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/shell_comm_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/shell_wrk_variable_type.py +127 -0
- underautomation/fanuc/ftp/variables/simiofwdlm_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/smb_clnt_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/smb_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/smh_made_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/smtp_ctrl_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/snpx_asg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/snpx_param_variable_type.py +61 -0
- underautomation/fanuc/ftp/variables/sntp_cfg_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/sntp_custom_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/sscbk_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/ssr_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/stop_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/strreg_file.py +19 -0
- underautomation/fanuc/ftp/variables/sv_info_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/svdt_grp_variable_type.py +400 -0
- underautomation/fanuc/ftp/variables/svprm_upd_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/swiupdt_file.py +16 -0
- underautomation/fanuc/ftp/variables/sycldint_file.py +49 -0
- underautomation/fanuc/ftp/variables/symotn_file.py +149 -0
- underautomation/fanuc/ftp/variables/synosave_file.py +192 -0
- underautomation/fanuc/ftp/variables/sys_time_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/sysframe_file.py +33 -0
- underautomation/fanuc/ftp/variables/sysfsac_file.py +23 -0
- underautomation/fanuc/ftp/variables/syshost_file.py +79 -0
- underautomation/fanuc/ftp/variables/syslog_sav_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/syslog_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/sysmacro_file.py +43 -0
- underautomation/fanuc/ftp/variables/sysmast_file.py +25 -0
- underautomation/fanuc/ftp/variables/syspass_file.py +24 -0
- underautomation/fanuc/ftp/variables/sysservo_file.py +21 -0
- underautomation/fanuc/ftp/variables/system_file.py +2232 -0
- underautomation/fanuc/ftp/variables/system_timer_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/sysuif_file.py +29 -0
- underautomation/fanuc/ftp/variables/t2mode_lim_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/t2spdlim_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/tbc2_grp_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/tbc_acc_variable_type.py +151 -0
- underautomation/fanuc/ftp/variables/tbc_grp_variable_type.py +104 -0
- underautomation/fanuc/ftp/variables/tbccfg_variable_type.py +38 -0
- underautomation/fanuc/ftp/variables/tbcparam_variable_type.py +70 -0
- underautomation/fanuc/ftp/variables/tbcsg_grp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/tbj2_grp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/tbj_acc_variable_type.py +190 -0
- underautomation/fanuc/ftp/variables/tbj_grp_variable_type.py +125 -0
- underautomation/fanuc/ftp/variables/tbjcfg_variable_type.py +53 -0
- underautomation/fanuc/ftp/variables/tbjop_grp_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/tbparam_variable_type.py +124 -0
- underautomation/fanuc/ftp/variables/tcol_line_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/tcpipcfg_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/thr_cfg_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/timer_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/torqctrl_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/tp_curscrn_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/tp_thr_table_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/tpgl_cam_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/tpgl_conf_variable_type.py +115 -0
- underautomation/fanuc/ftp/variables/tpgl_mset_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/tpgl_out_variable_type.py +44 -0
- underautomation/fanuc/ftp/variables/tpgl_uview_variable_type.py +26 -0
- underautomation/fanuc/ftp/variables/tpgl_view_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/tpglmach_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/tpp_mon_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/tpsnap_file.py +82 -0
- underautomation/fanuc/ftp/variables/tpstrtchk_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/tpvwvar_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/trace_cfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/trace_chnl_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/trace_item_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/tracectl_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/tracedt_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/traceup_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/tscfg_variable_type.py +76 -0
- underautomation/fanuc/ftp/variables/tsr_grp_variable_type.py +79 -0
- underautomation/fanuc/ftp/variables/tsscb_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/tune_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/tutorial_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/tv_config_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/tv_output_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/tx_variable_type.py +79 -0
- underautomation/fanuc/ftp/variables/txram_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/txscreen_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/uecfg_variable_type.py +44 -0
- underautomation/fanuc/ftp/variables/uegrp_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/ui_config_variable_type.py +235 -0
- underautomation/fanuc/ftp/variables/ui_custom_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/ui_fctnfav_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/ui_fkeydat_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/ui_menhis_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/ui_panedat_variable_type.py +62 -0
- underautomation/fanuc/ftp/variables/ui_panelnk_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/ui_topmenu_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/ui_usrview_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/ujr_grp_variable_type.py +56 -0
- underautomation/fanuc/ftp/variables/umr_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/undo_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/upr_variable_type.py +152 -0
- underautomation/fanuc/ftp/variables/user_info_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/user_offst_variable_type.py +36 -0
- underautomation/fanuc/ftp/variables/user_tool_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/user_ufram_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/user_work_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/usr_ev_cfg_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/usr_ev_wrk_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/usrtol_grp_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/value_kind.py +10 -0
- underautomation/fanuc/ftp/variables/variable_file.py +15 -0
- underautomation/fanuc/ftp/variables/variable_file_list.py +26 -0
- underautomation/fanuc/ftp/variables/variable_reader.py +130 -0
- underautomation/fanuc/ftp/variables/variable_reader_1.py +17 -0
- underautomation/fanuc/ftp/variables/vars_config_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/vcal_mv_variable_type.py +35 -0
- underautomation/fanuc/ftp/variables/vcal_vd_variable_type.py +78 -0
- underautomation/fanuc/ftp/variables/vcal_vf_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/vcmr_grp_variable_type.py +75 -0
- underautomation/fanuc/ftp/variables/vcmr_trgt_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/vcmrinit_file.py +56 -0
- underautomation/fanuc/ftp/variables/vcrsm_cfg_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/vcwm_cfg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/vcwm_grp_variable_type.py +133 -0
- underautomation/fanuc/ftp/variables/vector_variable.py +33 -0
- underautomation/fanuc/ftp/variables/via_work_variable_type.py +47 -0
- underautomation/fanuc/ftp/variables/view_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/vis_ge_cfg_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/vis_logreg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/vision_cfg_variable_type.py +175 -0
- underautomation/fanuc/ftp/variables/vision_grp_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/vlexe_cfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/vrtd_filt_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/vsft_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/vsmo_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/vsmo_pls_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/vsmo_tmp_variable_type.py +59 -0
- underautomation/fanuc/ftp/variables/vsmo_val_variable_type.py +23 -0
- underautomation/fanuc/ftp/variables/vtcpset_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/vzdt_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/wait_data_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/xf_variable_type.py +29 -0
- underautomation/fanuc/ftp/variables/xvrcfg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/zabc_grp_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/zdt_actvspt_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/zdt_dcschg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/zip_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/zmpcf_grp_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/zmpos_grp_variable_type.py +74 -0
- underautomation/fanuc/ftp/variables/zp_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/zp_cylinder_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/zp_grp_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/zp_sphere_variable_type.py +25 -0
- underautomation/fanuc/kinematics/__init__.py +0 -0
- underautomation/fanuc/kinematics/arm_kinematic_models.py +88 -0
- underautomation/fanuc/kinematics/crx/__init__.py +0 -0
- underautomation/fanuc/kinematics/crx/crx_kinematics_utils.py +18 -0
- underautomation/fanuc/kinematics/dh_parameters.py +77 -0
- underautomation/fanuc/kinematics/i_dh_parameters.py +30 -0
- underautomation/fanuc/kinematics/internal/__init__.py +0 -0
- underautomation/fanuc/kinematics/internal/arm_model_attribute.py +31 -0
- underautomation/fanuc/kinematics/kinematics_category.py +9 -0
- underautomation/fanuc/kinematics/kinematics_utils.py +24 -0
- underautomation/fanuc/kinematics/opw/__init__.py +0 -0
- underautomation/fanuc/kinematics/opw/opw_kinematics_utils.py +18 -0
- underautomation/fanuc/lib/UnderAutomation.Fanuc.dll +0 -0
- underautomation/fanuc/lib/version.txt +1 -0
- underautomation/fanuc/license/__init__.py +0 -0
- underautomation/fanuc/license/invalid_license_exception.py +16 -0
- underautomation/fanuc/license/license_info.py +48 -0
- underautomation/fanuc/license/license_state.py +12 -0
- underautomation/fanuc/rmi/__init__.py +0 -0
- underautomation/fanuc/rmi/data/__init__.py +0 -0
- underautomation/fanuc/rmi/data/cartesian_position.py +27 -0
- underautomation/fanuc/rmi/data/command_verb.py +27 -0
- underautomation/fanuc/rmi/data/communication_verb.py +10 -0
- underautomation/fanuc/rmi/data/controller_error_text.py +19 -0
- underautomation/fanuc/rmi/data/controller_status.py +61 -0
- underautomation/fanuc/rmi/data/digital_input_value.py +25 -0
- underautomation/fanuc/rmi/data/frame.py +66 -0
- underautomation/fanuc/rmi/data/indexed_frame.py +26 -0
- underautomation/fanuc/rmi/data/instruction_verb.py +21 -0
- underautomation/fanuc/rmi/data/joint_angles.py +66 -0
- underautomation/fanuc/rmi/data/joint_angles_sample.py +20 -0
- underautomation/fanuc/rmi/data/motion_configuration.py +66 -0
- underautomation/fanuc/rmi/data/on_off.py +8 -0
- underautomation/fanuc/rmi/data/port_type.py +8 -0
- underautomation/fanuc/rmi/data/position_register_data.py +33 -0
- underautomation/fanuc/rmi/data/rmi_message_kind.py +9 -0
- underautomation/fanuc/rmi/data/rmi_response_base.py +18 -0
- underautomation/fanuc/rmi/data/rmi_sequence_response.py +19 -0
- underautomation/fanuc/rmi/data/rmi_timed_response.py +19 -0
- underautomation/fanuc/rmi/data/speed_type.py +10 -0
- underautomation/fanuc/rmi/data/tcp_speed.py +19 -0
- underautomation/fanuc/rmi/data/termination_type.py +9 -0
- underautomation/fanuc/rmi/data/u_frame_u_tool_numbers.py +25 -0
- underautomation/fanuc/rmi/internal/__init__.py +0 -0
- underautomation/fanuc/rmi/internal/rmi_client_base.py +119 -0
- underautomation/fanuc/rmi/internal/rmi_client_internal.py +13 -0
- underautomation/fanuc/rmi/internal/rmi_connect_parameters_base.py +36 -0
- underautomation/fanuc/rmi/rmi_client.py +15 -0
- underautomation/fanuc/rmi/rmi_exception.py +15 -0
- underautomation/fanuc/snpx/__init__.py +0 -0
- underautomation/fanuc/snpx/assignment/__init__.py +0 -0
- underautomation/fanuc/snpx/assignment/integer_system_variables_batch_assignment.py +15 -0
- underautomation/fanuc/snpx/assignment/numeric_registers_batch_assignment.py +15 -0
- underautomation/fanuc/snpx/assignment/position_registers_batch_assignment.py +16 -0
- underautomation/fanuc/snpx/assignment/position_system_variables_batch_assignment.py +16 -0
- underautomation/fanuc/snpx/assignment/real_system_variables_batch_assignment.py +15 -0
- underautomation/fanuc/snpx/assignment/string_registers_batch_assignment.py +15 -0
- underautomation/fanuc/snpx/assignment/string_system_variables_batch_assignment.py +15 -0
- underautomation/fanuc/snpx/internal/__init__.py +0 -0
- underautomation/fanuc/snpx/internal/alarm_access.py +14 -0
- underautomation/fanuc/snpx/internal/alarm_id.py +102 -0
- underautomation/fanuc/snpx/internal/alarm_severity.py +17 -0
- underautomation/fanuc/snpx/internal/alarm_type.py +8 -0
- underautomation/fanuc/snpx/internal/assignment.py +23 -0
- underautomation/fanuc/snpx/internal/assignment_1.py +17 -0
- underautomation/fanuc/snpx/internal/batch_assignment_2.py +23 -0
- underautomation/fanuc/snpx/internal/current_position.py +19 -0
- underautomation/fanuc/snpx/internal/current_position_request.py +24 -0
- underautomation/fanuc/snpx/internal/current_task_status.py +14 -0
- underautomation/fanuc/snpx/internal/digital_signals.py +29 -0
- underautomation/fanuc/snpx/internal/integer_system_variables.py +14 -0
- underautomation/fanuc/snpx/internal/numeric_io.py +29 -0
- underautomation/fanuc/snpx/internal/numeric_registers.py +16 -0
- underautomation/fanuc/snpx/internal/position_registers.py +22 -0
- underautomation/fanuc/snpx/internal/position_system_variables.py +20 -0
- underautomation/fanuc/snpx/internal/real_system_variables.py +14 -0
- underautomation/fanuc/snpx/internal/robot_alarm.py +76 -0
- underautomation/fanuc/snpx/internal/robot_task_state.py +9 -0
- underautomation/fanuc/snpx/internal/robot_task_status.py +43 -0
- underautomation/fanuc/snpx/internal/segment_name.py +24 -0
- underautomation/fanuc/snpx/internal/segment_offset.py +17 -0
- underautomation/fanuc/snpx/internal/segment_selector.py +27 -0
- underautomation/fanuc/snpx/internal/snpx_assignable_elements_2.py +20 -0
- underautomation/fanuc/snpx/internal/snpx_client_base.py +139 -0
- underautomation/fanuc/snpx/internal/snpx_client_internal.py +13 -0
- underautomation/fanuc/snpx/internal/snpx_connect_parameters_base.py +20 -0
- underautomation/fanuc/snpx/internal/snpx_elements_2.py +16 -0
- underautomation/fanuc/snpx/internal/snpx_writable_assignable_elements_3.py +20 -0
- underautomation/fanuc/snpx/internal/string_registers.py +16 -0
- underautomation/fanuc/snpx/internal/string_system_variables.py +14 -0
- underautomation/fanuc/snpx/snpx_client.py +15 -0
- underautomation/fanuc/telnet/__init__.py +0 -0
- underautomation/fanuc/telnet/abort_result.py +13 -0
- underautomation/fanuc/telnet/add_breakpoint_result.py +13 -0
- underautomation/fanuc/telnet/base_result.py +13 -0
- underautomation/fanuc/telnet/breakpoint.py +15 -0
- underautomation/fanuc/telnet/breakpoints_result.py +17 -0
- underautomation/fanuc/telnet/command_sent_event_args.py +18 -0
- underautomation/fanuc/telnet/continue_result.py +13 -0
- underautomation/fanuc/telnet/custom_command_result.py +18 -0
- underautomation/fanuc/telnet/get_current_pose_result.py +22 -0
- underautomation/fanuc/telnet/get_variable_result.py +18 -0
- underautomation/fanuc/telnet/internal/__init__.py +0 -0
- underautomation/fanuc/telnet/internal/telnet_client_base.py +137 -0
- underautomation/fanuc/telnet/internal/telnet_client_internal.py +13 -0
- underautomation/fanuc/telnet/internal/telnet_connect_parameters_base.py +18 -0
- underautomation/fanuc/telnet/kcl_client_error_event_args.py +18 -0
- underautomation/fanuc/telnet/kcl_command_received.py +19 -0
- underautomation/fanuc/telnet/kcl_ports.py +17 -0
- underautomation/fanuc/telnet/message_received_event_args.py +21 -0
- underautomation/fanuc/telnet/pause_result.py +13 -0
- underautomation/fanuc/telnet/program_command_result.py +13 -0
- underautomation/fanuc/telnet/raw_data_received_event_args.py +18 -0
- underautomation/fanuc/telnet/remove_breakpoint_result.py +13 -0
- underautomation/fanuc/telnet/reset_result.py +13 -0
- underautomation/fanuc/telnet/result.py +23 -0
- underautomation/fanuc/telnet/run_result.py +13 -0
- underautomation/fanuc/telnet/set_port_result.py +13 -0
- underautomation/fanuc/telnet/set_value_result.py +21 -0
- underautomation/fanuc/telnet/set_variable_result.py +13 -0
- underautomation/fanuc/telnet/simulate_result.py +13 -0
- underautomation/fanuc/telnet/step_off_result.py +13 -0
- underautomation/fanuc/telnet/step_on_result.py +13 -0
- underautomation/fanuc/telnet/task_information_result.py +47 -0
- underautomation/fanuc/telnet/telnet_client.py +15 -0
- underautomation/fanuc/telnet/tp_coordinates.py +12 -0
- underautomation/fanuc/telnet/tp_coordinates_received_event_args.py +19 -0
- underautomation/fanuc/telnet/unsimulate_all_result.py +13 -0
- underautomation/fanuc/telnet/unsimulate_result.py +13 -0
- underautomation/fanuc/telnet/variable_result.py +13 -0
- underautomation/fanuc/telnet/variables_result.py +13 -0
- underautomation_fanuc-3.5.0.0.dist-info/METADATA +210 -0
- underautomation_fanuc-3.5.0.0.dist-info/RECORD +681 -0
- underautomation_fanuc-3.5.0.0.dist-info/WHEEL +5 -0
- underautomation_fanuc-3.5.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,785 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.ftp.variables.interact_variable_type import InteractVariableType
|
|
3
|
+
from underautomation.fanuc.ftp.variables.intrac_n_variable_type import IntracNVariableType
|
|
4
|
+
from underautomation.fanuc.ftp.variables.intrac_d_variable_type import IntracDVariableType
|
|
5
|
+
from underautomation.fanuc.ftp.variables.dh_extra_variable_type import DhExtraVariableType
|
|
6
|
+
from underautomation.fanuc.ftp.variables.generic_variable_type import GenericVariableType
|
|
7
|
+
import clr
|
|
8
|
+
import os
|
|
9
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
10
|
+
from UnderAutomation.Fanuc.Ftp.Variables import MrrGrpVariableType as mrr_grp_variable_type
|
|
11
|
+
|
|
12
|
+
class MrrGrpVariableType(GenericVariableType):
|
|
13
|
+
def __init__(self, _internal = 0):
|
|
14
|
+
if(_internal == 0):
|
|
15
|
+
self._instance = mrr_grp_variable_type()
|
|
16
|
+
else:
|
|
17
|
+
self._instance = _internal
|
|
18
|
+
@property
|
|
19
|
+
def belt_enable(self) -> bool:
|
|
20
|
+
return self._instance.BeltEnable
|
|
21
|
+
@property
|
|
22
|
+
def cart_accel1(self) -> int:
|
|
23
|
+
return self._instance.CartAccel1
|
|
24
|
+
@property
|
|
25
|
+
def cart_accel2(self) -> int:
|
|
26
|
+
return self._instance.CartAccel2
|
|
27
|
+
@property
|
|
28
|
+
def circ_rate(self) -> int:
|
|
29
|
+
return self._instance.CircRate
|
|
30
|
+
@property
|
|
31
|
+
def contaxisnum(self) -> int:
|
|
32
|
+
return self._instance.Contaxisnum
|
|
33
|
+
@property
|
|
34
|
+
def ps_exp_enbl(self) -> int:
|
|
35
|
+
return self._instance.PsExpEnbl
|
|
36
|
+
@property
|
|
37
|
+
def exp_enbl(self) -> bool:
|
|
38
|
+
return self._instance.ExpEnbl
|
|
39
|
+
@property
|
|
40
|
+
def joint_rate(self) -> int:
|
|
41
|
+
return self._instance.JointRate
|
|
42
|
+
@property
|
|
43
|
+
def linear_rate(self) -> int:
|
|
44
|
+
return self._instance.LinearRate
|
|
45
|
+
@property
|
|
46
|
+
def path_accel1(self) -> int:
|
|
47
|
+
return self._instance.PathAccel1
|
|
48
|
+
@property
|
|
49
|
+
def path_accel2(self) -> int:
|
|
50
|
+
return self._instance.PathAccel2
|
|
51
|
+
@property
|
|
52
|
+
def path_accel3(self) -> int:
|
|
53
|
+
return self._instance.PathAccel3
|
|
54
|
+
@property
|
|
55
|
+
def process_spd(self) -> float:
|
|
56
|
+
return self._instance.ProcessSpd
|
|
57
|
+
@property
|
|
58
|
+
def proc_spdlim(self) -> float:
|
|
59
|
+
return self._instance.ProcSpdlim
|
|
60
|
+
@property
|
|
61
|
+
def cnt_acc_mgn(self) -> float:
|
|
62
|
+
return self._instance.CntAccMgn
|
|
63
|
+
@property
|
|
64
|
+
def ddacc_ratio(self) -> float:
|
|
65
|
+
return self._instance.DdaccRatio
|
|
66
|
+
@property
|
|
67
|
+
def fwp_time1(self) -> int:
|
|
68
|
+
return self._instance.FwpTime1
|
|
69
|
+
@property
|
|
70
|
+
def fwp_time2(self) -> int:
|
|
71
|
+
return self._instance.FwpTime2
|
|
72
|
+
@property
|
|
73
|
+
def accel_ratio(self) -> float:
|
|
74
|
+
return self._instance.AccelRatio
|
|
75
|
+
@property
|
|
76
|
+
def decel_ratio(self) -> float:
|
|
77
|
+
return self._instance.DecelRatio
|
|
78
|
+
@property
|
|
79
|
+
def ppabn_enbl(self) -> bool:
|
|
80
|
+
return self._instance.PpabnEnbl
|
|
81
|
+
@property
|
|
82
|
+
def rotspeedlim(self) -> float:
|
|
83
|
+
return self._instance.Rotspeedlim
|
|
84
|
+
@property
|
|
85
|
+
def speedlim(self) -> float:
|
|
86
|
+
return self._instance.Speedlim
|
|
87
|
+
@property
|
|
88
|
+
def speedlimjnt(self) -> float:
|
|
89
|
+
return self._instance.Speedlimjnt
|
|
90
|
+
@property
|
|
91
|
+
def def_maxacce(self) -> bool:
|
|
92
|
+
return self._instance.DefMaxacce
|
|
93
|
+
@property
|
|
94
|
+
def use_cal(self) -> bool:
|
|
95
|
+
return self._instance.UseCal
|
|
96
|
+
@property
|
|
97
|
+
def spin_ctrl(self) -> bool:
|
|
98
|
+
return self._instance.SpinCtrl
|
|
99
|
+
@property
|
|
100
|
+
def syn_err_lim(self) -> int:
|
|
101
|
+
return self._instance.SynErrLim
|
|
102
|
+
@property
|
|
103
|
+
def sync_gain(self) -> int:
|
|
104
|
+
return self._instance.SyncGain
|
|
105
|
+
@property
|
|
106
|
+
def sync_offset(self) -> int:
|
|
107
|
+
return self._instance.SyncOffset
|
|
108
|
+
@property
|
|
109
|
+
def mount_angle(self) -> float:
|
|
110
|
+
return self._instance.MountAngle
|
|
111
|
+
@property
|
|
112
|
+
def collinear(self) -> float:
|
|
113
|
+
return self._instance.Collinear
|
|
114
|
+
@property
|
|
115
|
+
def coincident(self) -> float:
|
|
116
|
+
return self._instance.Coincident
|
|
117
|
+
@property
|
|
118
|
+
def accel_time1(self) -> typing.List[int]:
|
|
119
|
+
return self._instance.AccelTime1
|
|
120
|
+
@property
|
|
121
|
+
def accel_time2(self) -> typing.List[int]:
|
|
122
|
+
return self._instance.AccelTime2
|
|
123
|
+
@property
|
|
124
|
+
def encscales(self) -> typing.List[float]:
|
|
125
|
+
return self._instance.Encscales
|
|
126
|
+
@property
|
|
127
|
+
def exp_accel(self) -> typing.List[int]:
|
|
128
|
+
return self._instance.ExpAccel
|
|
129
|
+
@property
|
|
130
|
+
def ps_inpos_ti(self) -> int:
|
|
131
|
+
return self._instance.PsInposTi
|
|
132
|
+
@property
|
|
133
|
+
def inpos_time(self) -> typing.List[int]:
|
|
134
|
+
return self._instance.InposTime
|
|
135
|
+
@property
|
|
136
|
+
def jntvellim(self) -> typing.List[float]:
|
|
137
|
+
return self._instance.Jntvellim
|
|
138
|
+
@property
|
|
139
|
+
def jnt23_uplim(self) -> float:
|
|
140
|
+
return self._instance.Jnt23Uplim
|
|
141
|
+
@property
|
|
142
|
+
def jnt23_lowli(self) -> float:
|
|
143
|
+
return self._instance.Jnt23Lowli
|
|
144
|
+
@property
|
|
145
|
+
def lowerlims(self) -> typing.List[float]:
|
|
146
|
+
return self._instance.Lowerlims
|
|
147
|
+
@property
|
|
148
|
+
def lowerlimsdf(self) -> typing.List[float]:
|
|
149
|
+
return self._instance.Lowerlimsdf
|
|
150
|
+
@property
|
|
151
|
+
def master_pos(self) -> typing.List[float]:
|
|
152
|
+
return self._instance.MasterPos
|
|
153
|
+
@property
|
|
154
|
+
def min_acctime(self) -> typing.List[int]:
|
|
155
|
+
return self._instance.MinAcctime
|
|
156
|
+
@property
|
|
157
|
+
def mosign(self) -> typing.List[bool]:
|
|
158
|
+
return self._instance.Mosign
|
|
159
|
+
@property
|
|
160
|
+
def mot_spd_lim(self) -> typing.List[int]:
|
|
161
|
+
return self._instance.MotSpdLim
|
|
162
|
+
@property
|
|
163
|
+
def perch(self) -> typing.List[float]:
|
|
164
|
+
return self._instance.Perch
|
|
165
|
+
@property
|
|
166
|
+
def moverrlim(self) -> typing.List[int]:
|
|
167
|
+
return self._instance.Moverrlim
|
|
168
|
+
@property
|
|
169
|
+
def perchtol(self) -> typing.List[float]:
|
|
170
|
+
return self._instance.Perchtol
|
|
171
|
+
@property
|
|
172
|
+
def stoperlim(self) -> typing.List[int]:
|
|
173
|
+
return self._instance.Stoperlim
|
|
174
|
+
@property
|
|
175
|
+
def stoptol(self) -> typing.List[int]:
|
|
176
|
+
return self._instance.Stoptol
|
|
177
|
+
@property
|
|
178
|
+
def servo_ctrl(self) -> int:
|
|
179
|
+
return self._instance.ServoCtrl
|
|
180
|
+
@property
|
|
181
|
+
def ps_sv_off_a(self) -> int:
|
|
182
|
+
return self._instance.PsSvOffA
|
|
183
|
+
@property
|
|
184
|
+
def sv_off_all(self) -> bool:
|
|
185
|
+
return self._instance.SvOffAll
|
|
186
|
+
@property
|
|
187
|
+
def sv_off_enb(self) -> typing.List[bool]:
|
|
188
|
+
return self._instance.SvOffEnb
|
|
189
|
+
@property
|
|
190
|
+
def sv_off_time(self) -> typing.List[int]:
|
|
191
|
+
return self._instance.SvOffTime
|
|
192
|
+
@property
|
|
193
|
+
def upperlims(self) -> typing.List[float]:
|
|
194
|
+
return self._instance.Upperlims
|
|
195
|
+
@property
|
|
196
|
+
def upperlimsdf(self) -> typing.List[float]:
|
|
197
|
+
return self._instance.Upperlimsdf
|
|
198
|
+
@property
|
|
199
|
+
def trkerrlim(self) -> int:
|
|
200
|
+
return self._instance.Trkerrlim
|
|
201
|
+
@property
|
|
202
|
+
def payload(self) -> int:
|
|
203
|
+
return self._instance.Payload
|
|
204
|
+
@property
|
|
205
|
+
def ps_max_payl(self) -> int:
|
|
206
|
+
return self._instance.PsMaxPayl
|
|
207
|
+
@property
|
|
208
|
+
def max_payload(self) -> float:
|
|
209
|
+
return self._instance.MaxPayload
|
|
210
|
+
@property
|
|
211
|
+
def axisinertia(self) -> typing.List[int]:
|
|
212
|
+
return self._instance.Axisinertia
|
|
213
|
+
@property
|
|
214
|
+
def axismoment(self) -> typing.List[int]:
|
|
215
|
+
return self._instance.Axismoment
|
|
216
|
+
@property
|
|
217
|
+
def max_amp_cur(self) -> typing.List[float]:
|
|
218
|
+
return self._instance.MaxAmpCur
|
|
219
|
+
@property
|
|
220
|
+
def accel_param(self) -> typing.List[float]:
|
|
221
|
+
return self._instance.AccelParam
|
|
222
|
+
@property
|
|
223
|
+
def max_pth_acc(self) -> float:
|
|
224
|
+
return self._instance.MaxPthAcc
|
|
225
|
+
@property
|
|
226
|
+
def mrrdum2(self) -> int:
|
|
227
|
+
return self._instance.Mrrdum2
|
|
228
|
+
@property
|
|
229
|
+
def ps_bcklsh_c(self) -> int:
|
|
230
|
+
return self._instance.PsBcklshC
|
|
231
|
+
@property
|
|
232
|
+
def bcklsh_coun(self) -> typing.List[int]:
|
|
233
|
+
return self._instance.BcklshCoun
|
|
234
|
+
@property
|
|
235
|
+
def mover_gain(self) -> typing.List[float]:
|
|
236
|
+
return self._instance.MoverGain
|
|
237
|
+
@property
|
|
238
|
+
def mover_scale(self) -> typing.List[float]:
|
|
239
|
+
return self._instance.MoverScale
|
|
240
|
+
@property
|
|
241
|
+
def mover_offst(self) -> typing.List[int]:
|
|
242
|
+
return self._instance.MoverOffst
|
|
243
|
+
@property
|
|
244
|
+
def clalm_time(self) -> int:
|
|
245
|
+
return self._instance.ClalmTime
|
|
246
|
+
@property
|
|
247
|
+
def tsmod_time(self) -> int:
|
|
248
|
+
return self._instance.TsmodTime
|
|
249
|
+
@property
|
|
250
|
+
def chklimtyp(self) -> int:
|
|
251
|
+
return self._instance.Chklimtyp
|
|
252
|
+
@property
|
|
253
|
+
def snglrty_stp(self) -> bool:
|
|
254
|
+
return self._instance.SnglrtyStp
|
|
255
|
+
@property
|
|
256
|
+
def inpos_type(self) -> int:
|
|
257
|
+
return self._instance.InposType
|
|
258
|
+
@property
|
|
259
|
+
def jog_time_m(self) -> int:
|
|
260
|
+
return self._instance.JogTimeM
|
|
261
|
+
@property
|
|
262
|
+
def min_acc_uma(self) -> int:
|
|
263
|
+
return self._instance.MinAccUma
|
|
264
|
+
@property
|
|
265
|
+
def min_acc_uca(self) -> int:
|
|
266
|
+
return self._instance.MinAccUca
|
|
267
|
+
@property
|
|
268
|
+
def acc_scl_uca(self) -> float:
|
|
269
|
+
return self._instance.AccSclUca
|
|
270
|
+
@property
|
|
271
|
+
def slmt_j1_lw(self) -> typing.List[float]:
|
|
272
|
+
return self._instance.SlmtJ1Lw
|
|
273
|
+
@property
|
|
274
|
+
def slmt_j1_up(self) -> typing.List[float]:
|
|
275
|
+
return self._instance.SlmtJ1Up
|
|
276
|
+
@property
|
|
277
|
+
def slmt_e1_lw(self) -> typing.List[float]:
|
|
278
|
+
return self._instance.SlmtE1Lw
|
|
279
|
+
@property
|
|
280
|
+
def slmt_e1_up(self) -> typing.List[float]:
|
|
281
|
+
return self._instance.SlmtE1Up
|
|
282
|
+
@property
|
|
283
|
+
def slmt_j1_num(self) -> int:
|
|
284
|
+
return self._instance.SlmtJ1Num
|
|
285
|
+
@property
|
|
286
|
+
def slmt_e1_num(self) -> int:
|
|
287
|
+
return self._instance.SlmtE1Num
|
|
288
|
+
@property
|
|
289
|
+
def ps_spccount(self) -> int:
|
|
290
|
+
return self._instance.PsSpccount
|
|
291
|
+
@property
|
|
292
|
+
def spccounttol(self) -> typing.List[int]:
|
|
293
|
+
return self._instance.Spccounttol
|
|
294
|
+
@property
|
|
295
|
+
def spcmovetol(self) -> typing.List[int]:
|
|
296
|
+
return self._instance.Spcmovetol
|
|
297
|
+
@property
|
|
298
|
+
def shortmo_mgn(self) -> float:
|
|
299
|
+
return self._instance.ShortmoMgn
|
|
300
|
+
@property
|
|
301
|
+
def min_acc_cmc(self) -> int:
|
|
302
|
+
return self._instance.MinAccCmc
|
|
303
|
+
@property
|
|
304
|
+
def extaccratio(self) -> float:
|
|
305
|
+
return self._instance.Extaccratio
|
|
306
|
+
@property
|
|
307
|
+
def cn_gear_n1(self) -> int:
|
|
308
|
+
return self._instance.CnGearN1
|
|
309
|
+
@property
|
|
310
|
+
def cn_gear_n2(self) -> int:
|
|
311
|
+
return self._instance.CnGearN2
|
|
312
|
+
@property
|
|
313
|
+
def sflt_erlim(self) -> typing.List[int]:
|
|
314
|
+
return self._instance.SfltErlim
|
|
315
|
+
@property
|
|
316
|
+
def sv_ctrl_typ(self) -> typing.List[int]:
|
|
317
|
+
return self._instance.SvCtrlTyp
|
|
318
|
+
@property
|
|
319
|
+
def ps_cartmo_m(self) -> int:
|
|
320
|
+
return self._instance.PsCartmoM
|
|
321
|
+
@property
|
|
322
|
+
def cartmo_mgn(self) -> float:
|
|
323
|
+
return self._instance.CartmoMgn
|
|
324
|
+
@property
|
|
325
|
+
def min_cat_uma(self) -> int:
|
|
326
|
+
return self._instance.MinCatUma
|
|
327
|
+
@property
|
|
328
|
+
def min_acc_shm(self) -> int:
|
|
329
|
+
return self._instance.MinAccShm
|
|
330
|
+
@property
|
|
331
|
+
def gear_ratio(self) -> typing.List[float]:
|
|
332
|
+
return self._instance.GearRatio
|
|
333
|
+
@property
|
|
334
|
+
def exp_jog_acc(self) -> typing.List[int]:
|
|
335
|
+
return self._instance.ExpJogAcc
|
|
336
|
+
@property
|
|
337
|
+
def ps_armload(self) -> int:
|
|
338
|
+
return self._instance.PsArmload
|
|
339
|
+
@property
|
|
340
|
+
def armload(self) -> typing.List[float]:
|
|
341
|
+
return self._instance.Armload
|
|
342
|
+
@property
|
|
343
|
+
def acc_pa_uma(self) -> float:
|
|
344
|
+
return self._instance.AccPaUma
|
|
345
|
+
@property
|
|
346
|
+
def acc_pc_uma(self) -> float:
|
|
347
|
+
return self._instance.AccPcUma
|
|
348
|
+
@property
|
|
349
|
+
def axis_im_scl(self) -> int:
|
|
350
|
+
return self._instance.AxisImScl
|
|
351
|
+
@property
|
|
352
|
+
def ps_mot_lim(self) -> int:
|
|
353
|
+
return self._instance.PsMotLim
|
|
354
|
+
@property
|
|
355
|
+
def mot_lim_stp(self) -> bool:
|
|
356
|
+
return self._instance.MotLimStp
|
|
357
|
+
@property
|
|
358
|
+
def jg_fltr_scl(self) -> float:
|
|
359
|
+
return self._instance.JgFltrScl
|
|
360
|
+
@property
|
|
361
|
+
def jogaccratio(self) -> typing.List[float]:
|
|
362
|
+
return self._instance.Jogaccratio
|
|
363
|
+
@property
|
|
364
|
+
def torque_cons(self) -> typing.List[float]:
|
|
365
|
+
return self._instance.TorqueCons
|
|
366
|
+
@property
|
|
367
|
+
def min_payload(self) -> float:
|
|
368
|
+
return self._instance.MinPayload
|
|
369
|
+
@property
|
|
370
|
+
def decoup_mgn(self) -> typing.List[float]:
|
|
371
|
+
return self._instance.DecoupMgn
|
|
372
|
+
@property
|
|
373
|
+
def decp_mgn_wr(self) -> typing.List[float]:
|
|
374
|
+
return self._instance.DecpMgnWr
|
|
375
|
+
@property
|
|
376
|
+
def payload_x(self) -> float:
|
|
377
|
+
return self._instance.PayloadX
|
|
378
|
+
@property
|
|
379
|
+
def payload_y(self) -> float:
|
|
380
|
+
return self._instance.PayloadY
|
|
381
|
+
@property
|
|
382
|
+
def payload_z(self) -> float:
|
|
383
|
+
return self._instance.PayloadZ
|
|
384
|
+
@property
|
|
385
|
+
def payload_ix(self) -> float:
|
|
386
|
+
return self._instance.PayloadIx
|
|
387
|
+
@property
|
|
388
|
+
def payload_iy(self) -> float:
|
|
389
|
+
return self._instance.PayloadIy
|
|
390
|
+
@property
|
|
391
|
+
def payload_iz(self) -> float:
|
|
392
|
+
return self._instance.PayloadIz
|
|
393
|
+
@property
|
|
394
|
+
def ffg_mgn_j2(self) -> float:
|
|
395
|
+
return self._instance.FfgMgnJ2
|
|
396
|
+
@property
|
|
397
|
+
def ffg_mgn_j3(self) -> float:
|
|
398
|
+
return self._instance.FfgMgnJ3
|
|
399
|
+
@property
|
|
400
|
+
def dvc_ac0_max(self) -> typing.List[float]:
|
|
401
|
+
return self._instance.DvcAc0Max
|
|
402
|
+
@property
|
|
403
|
+
def dvc_ac1_max(self) -> typing.List[float]:
|
|
404
|
+
return self._instance.DvcAc1Max
|
|
405
|
+
@property
|
|
406
|
+
def dvc_acc_max(self) -> typing.List[float]:
|
|
407
|
+
return self._instance.DvcAccMax
|
|
408
|
+
@property
|
|
409
|
+
def dvc_acc_min(self) -> typing.List[float]:
|
|
410
|
+
return self._instance.DvcAccMin
|
|
411
|
+
@property
|
|
412
|
+
def dvc_jrk_max(self) -> typing.List[float]:
|
|
413
|
+
return self._instance.DvcJrkMax
|
|
414
|
+
@property
|
|
415
|
+
def dvc_jrk_min(self) -> typing.List[float]:
|
|
416
|
+
return self._instance.DvcJrkMin
|
|
417
|
+
@property
|
|
418
|
+
def sv_dbl_smt(self) -> bool:
|
|
419
|
+
return self._instance.SvDblSmt
|
|
420
|
+
@property
|
|
421
|
+
def sv_mcmd_dly(self) -> bool:
|
|
422
|
+
return self._instance.SvMcmdDly
|
|
423
|
+
@property
|
|
424
|
+
def sv_grv_x(self) -> float:
|
|
425
|
+
return self._instance.SvGrvX
|
|
426
|
+
@property
|
|
427
|
+
def sv_grv_y(self) -> float:
|
|
428
|
+
return self._instance.SvGrvY
|
|
429
|
+
@property
|
|
430
|
+
def sv_grv_z(self) -> float:
|
|
431
|
+
return self._instance.SvGrvZ
|
|
432
|
+
@property
|
|
433
|
+
def sv_dh_d(self) -> typing.List[float]:
|
|
434
|
+
return self._instance.SvDhD
|
|
435
|
+
@property
|
|
436
|
+
def sv_dh_a(self) -> typing.List[float]:
|
|
437
|
+
return self._instance.SvDhA
|
|
438
|
+
@property
|
|
439
|
+
def sv_dh_cosa(self) -> typing.List[float]:
|
|
440
|
+
return self._instance.SvDhCosa
|
|
441
|
+
@property
|
|
442
|
+
def sv_dh_sina(self) -> typing.List[float]:
|
|
443
|
+
return self._instance.SvDhSina
|
|
444
|
+
@property
|
|
445
|
+
def sv_lnk_m(self) -> typing.List[float]:
|
|
446
|
+
return self._instance.SvLnkM
|
|
447
|
+
@property
|
|
448
|
+
def sv_lnk_x(self) -> typing.List[float]:
|
|
449
|
+
return self._instance.SvLnkX
|
|
450
|
+
@property
|
|
451
|
+
def sv_lnk_y(self) -> typing.List[float]:
|
|
452
|
+
return self._instance.SvLnkY
|
|
453
|
+
@property
|
|
454
|
+
def sv_lnk_z(self) -> typing.List[float]:
|
|
455
|
+
return self._instance.SvLnkZ
|
|
456
|
+
@property
|
|
457
|
+
def sv_lnk_ix(self) -> typing.List[float]:
|
|
458
|
+
return self._instance.SvLnkIx
|
|
459
|
+
@property
|
|
460
|
+
def sv_lnk_iy(self) -> typing.List[float]:
|
|
461
|
+
return self._instance.SvLnkIy
|
|
462
|
+
@property
|
|
463
|
+
def sv_lnk_iz(self) -> typing.List[float]:
|
|
464
|
+
return self._instance.SvLnkIz
|
|
465
|
+
@property
|
|
466
|
+
def sv_z_sign(self) -> typing.List[bool]:
|
|
467
|
+
return self._instance.SvZSign
|
|
468
|
+
@property
|
|
469
|
+
def sv_dmy_lnk(self) -> typing.List[bool]:
|
|
470
|
+
return self._instance.SvDmyLnk
|
|
471
|
+
@property
|
|
472
|
+
def sv_dh_costh(self) -> typing.List[float]:
|
|
473
|
+
return self._instance.SvDhCosth
|
|
474
|
+
@property
|
|
475
|
+
def sv_dh_sinth(self) -> typing.List[float]:
|
|
476
|
+
return self._instance.SvDhSinth
|
|
477
|
+
@property
|
|
478
|
+
def sv_thet0(self) -> typing.List[float]:
|
|
479
|
+
return self._instance.SvThet0
|
|
480
|
+
@property
|
|
481
|
+
def lnk23z(self) -> float:
|
|
482
|
+
return self._instance.Lnk23z
|
|
483
|
+
@property
|
|
484
|
+
def lnk23x(self) -> float:
|
|
485
|
+
return self._instance.Lnk23x
|
|
486
|
+
@property
|
|
487
|
+
def lnkcbz(self) -> float:
|
|
488
|
+
return self._instance.Lnkcbz
|
|
489
|
+
@property
|
|
490
|
+
def lnkcbx(self) -> float:
|
|
491
|
+
return self._instance.Lnkcbx
|
|
492
|
+
@property
|
|
493
|
+
def cb_mass(self) -> float:
|
|
494
|
+
return self._instance.CbMass
|
|
495
|
+
@property
|
|
496
|
+
def cb_ix(self) -> float:
|
|
497
|
+
return self._instance.CbIx
|
|
498
|
+
@property
|
|
499
|
+
def cb_iy(self) -> float:
|
|
500
|
+
return self._instance.CbIy
|
|
501
|
+
@property
|
|
502
|
+
def cb_iz(self) -> float:
|
|
503
|
+
return self._instance.CbIz
|
|
504
|
+
@property
|
|
505
|
+
def lnksby(self) -> float:
|
|
506
|
+
return self._instance.Lnksby
|
|
507
|
+
@property
|
|
508
|
+
def lnksbx(self) -> float:
|
|
509
|
+
return self._instance.Lnksbx
|
|
510
|
+
@property
|
|
511
|
+
def lngtsb(self) -> float:
|
|
512
|
+
return self._instance.Lngtsb
|
|
513
|
+
@property
|
|
514
|
+
def spcns(self) -> float:
|
|
515
|
+
return self._instance.Spcns
|
|
516
|
+
@property
|
|
517
|
+
def armload_x(self) -> typing.List[float]:
|
|
518
|
+
return self._instance.ArmloadX
|
|
519
|
+
@property
|
|
520
|
+
def armload_y(self) -> typing.List[float]:
|
|
521
|
+
return self._instance.ArmloadY
|
|
522
|
+
@property
|
|
523
|
+
def armload_z(self) -> typing.List[float]:
|
|
524
|
+
return self._instance.ArmloadZ
|
|
525
|
+
@property
|
|
526
|
+
def duty_enb(self) -> typing.List[bool]:
|
|
527
|
+
return self._instance.DutyEnb
|
|
528
|
+
@property
|
|
529
|
+
def duty_param1(self) -> typing.List[float]:
|
|
530
|
+
return self._instance.DutyParam1
|
|
531
|
+
@property
|
|
532
|
+
def duty_param2(self) -> typing.List[float]:
|
|
533
|
+
return self._instance.DutyParam2
|
|
534
|
+
@property
|
|
535
|
+
def qstop_tol(self) -> typing.List[float]:
|
|
536
|
+
return self._instance.QstopTol
|
|
537
|
+
@property
|
|
538
|
+
def ne_enb(self) -> int:
|
|
539
|
+
return self._instance.NeEnb
|
|
540
|
+
@property
|
|
541
|
+
def link_type(self) -> typing.List[int]:
|
|
542
|
+
return self._instance.LinkType
|
|
543
|
+
@property
|
|
544
|
+
def armload_num(self) -> typing.List[int]:
|
|
545
|
+
return self._instance.ArmloadNum
|
|
546
|
+
@property
|
|
547
|
+
def dh_theta0(self) -> typing.List[float]:
|
|
548
|
+
return self._instance.DhTheta0
|
|
549
|
+
@property
|
|
550
|
+
def dh_theta(self) -> typing.List[float]:
|
|
551
|
+
return self._instance.DhTheta
|
|
552
|
+
@property
|
|
553
|
+
def dh_d(self) -> typing.List[float]:
|
|
554
|
+
return self._instance.DhD
|
|
555
|
+
@property
|
|
556
|
+
def dh_a(self) -> typing.List[float]:
|
|
557
|
+
return self._instance.DhA
|
|
558
|
+
@property
|
|
559
|
+
def dh_alpha(self) -> typing.List[float]:
|
|
560
|
+
return self._instance.DhAlpha
|
|
561
|
+
@property
|
|
562
|
+
def link_m(self) -> typing.List[float]:
|
|
563
|
+
return self._instance.LinkM
|
|
564
|
+
@property
|
|
565
|
+
def link_sx(self) -> typing.List[float]:
|
|
566
|
+
return self._instance.LinkSx
|
|
567
|
+
@property
|
|
568
|
+
def link_sy(self) -> typing.List[float]:
|
|
569
|
+
return self._instance.LinkSy
|
|
570
|
+
@property
|
|
571
|
+
def link_sz(self) -> typing.List[float]:
|
|
572
|
+
return self._instance.LinkSz
|
|
573
|
+
@property
|
|
574
|
+
def link_ix(self) -> typing.List[float]:
|
|
575
|
+
return self._instance.LinkIx
|
|
576
|
+
@property
|
|
577
|
+
def link_iy(self) -> typing.List[float]:
|
|
578
|
+
return self._instance.LinkIy
|
|
579
|
+
@property
|
|
580
|
+
def link_iz(self) -> typing.List[float]:
|
|
581
|
+
return self._instance.LinkIz
|
|
582
|
+
@property
|
|
583
|
+
def dh_vd(self) -> typing.List[float]:
|
|
584
|
+
return self._instance.DhVd
|
|
585
|
+
@property
|
|
586
|
+
def dh_va(self) -> typing.List[float]:
|
|
587
|
+
return self._instance.DhVa
|
|
588
|
+
@property
|
|
589
|
+
def dh_valpha(self) -> typing.List[float]:
|
|
590
|
+
return self._instance.DhValpha
|
|
591
|
+
@property
|
|
592
|
+
def link_vm(self) -> typing.List[float]:
|
|
593
|
+
return self._instance.LinkVm
|
|
594
|
+
@property
|
|
595
|
+
def link_vsx(self) -> typing.List[float]:
|
|
596
|
+
return self._instance.LinkVsx
|
|
597
|
+
@property
|
|
598
|
+
def link_vsy(self) -> typing.List[float]:
|
|
599
|
+
return self._instance.LinkVsy
|
|
600
|
+
@property
|
|
601
|
+
def link_vsz(self) -> typing.List[float]:
|
|
602
|
+
return self._instance.LinkVsz
|
|
603
|
+
@property
|
|
604
|
+
def link_vix(self) -> typing.List[float]:
|
|
605
|
+
return self._instance.LinkVix
|
|
606
|
+
@property
|
|
607
|
+
def link_viy(self) -> typing.List[float]:
|
|
608
|
+
return self._instance.LinkViy
|
|
609
|
+
@property
|
|
610
|
+
def link_viz(self) -> typing.List[float]:
|
|
611
|
+
return self._instance.LinkViz
|
|
612
|
+
@property
|
|
613
|
+
def dh_hd(self) -> typing.List[float]:
|
|
614
|
+
return self._instance.DhHd
|
|
615
|
+
@property
|
|
616
|
+
def dh_ha(self) -> typing.List[float]:
|
|
617
|
+
return self._instance.DhHa
|
|
618
|
+
@property
|
|
619
|
+
def dh_halpha(self) -> typing.List[float]:
|
|
620
|
+
return self._instance.DhHalpha
|
|
621
|
+
@property
|
|
622
|
+
def link_hm(self) -> typing.List[float]:
|
|
623
|
+
return self._instance.LinkHm
|
|
624
|
+
@property
|
|
625
|
+
def link_hsx(self) -> typing.List[float]:
|
|
626
|
+
return self._instance.LinkHsx
|
|
627
|
+
@property
|
|
628
|
+
def link_hsy(self) -> typing.List[float]:
|
|
629
|
+
return self._instance.LinkHsy
|
|
630
|
+
@property
|
|
631
|
+
def link_hsz(self) -> typing.List[float]:
|
|
632
|
+
return self._instance.LinkHsz
|
|
633
|
+
@property
|
|
634
|
+
def link_hix(self) -> typing.List[float]:
|
|
635
|
+
return self._instance.LinkHix
|
|
636
|
+
@property
|
|
637
|
+
def link_hiy(self) -> typing.List[float]:
|
|
638
|
+
return self._instance.LinkHiy
|
|
639
|
+
@property
|
|
640
|
+
def link_hiz(self) -> typing.List[float]:
|
|
641
|
+
return self._instance.LinkHiz
|
|
642
|
+
@property
|
|
643
|
+
def dh_otheta(self) -> typing.List[float]:
|
|
644
|
+
return self._instance.DhOtheta
|
|
645
|
+
@property
|
|
646
|
+
def dh_od(self) -> typing.List[float]:
|
|
647
|
+
return self._instance.DhOd
|
|
648
|
+
@property
|
|
649
|
+
def dh_oa(self) -> typing.List[float]:
|
|
650
|
+
return self._instance.DhOa
|
|
651
|
+
@property
|
|
652
|
+
def dh_oalpha(self) -> typing.List[float]:
|
|
653
|
+
return self._instance.DhOalpha
|
|
654
|
+
@property
|
|
655
|
+
def link_om(self) -> typing.List[float]:
|
|
656
|
+
return self._instance.LinkOm
|
|
657
|
+
@property
|
|
658
|
+
def link_osx(self) -> typing.List[float]:
|
|
659
|
+
return self._instance.LinkOsx
|
|
660
|
+
@property
|
|
661
|
+
def link_osy(self) -> typing.List[float]:
|
|
662
|
+
return self._instance.LinkOsy
|
|
663
|
+
@property
|
|
664
|
+
def link_osz(self) -> typing.List[float]:
|
|
665
|
+
return self._instance.LinkOsz
|
|
666
|
+
@property
|
|
667
|
+
def link_oix(self) -> typing.List[float]:
|
|
668
|
+
return self._instance.LinkOix
|
|
669
|
+
@property
|
|
670
|
+
def link_oiy(self) -> typing.List[float]:
|
|
671
|
+
return self._instance.LinkOiy
|
|
672
|
+
@property
|
|
673
|
+
def link_oiz(self) -> typing.List[float]:
|
|
674
|
+
return self._instance.LinkOiz
|
|
675
|
+
@property
|
|
676
|
+
def flink_bx(self) -> typing.List[float]:
|
|
677
|
+
return self._instance.FlinkBx
|
|
678
|
+
@property
|
|
679
|
+
def flink_by(self) -> typing.List[float]:
|
|
680
|
+
return self._instance.FlinkBy
|
|
681
|
+
@property
|
|
682
|
+
def flink_beta(self) -> typing.List[float]:
|
|
683
|
+
return self._instance.FlinkBeta
|
|
684
|
+
@property
|
|
685
|
+
def spbalance_k(self) -> typing.List[float]:
|
|
686
|
+
return self._instance.SpbalanceK
|
|
687
|
+
@property
|
|
688
|
+
def splength0(self) -> typing.List[float]:
|
|
689
|
+
return self._instance.Splength0
|
|
690
|
+
@property
|
|
691
|
+
def spact_x(self) -> typing.List[float]:
|
|
692
|
+
return self._instance.SpactX
|
|
693
|
+
@property
|
|
694
|
+
def spact_y(self) -> typing.List[float]:
|
|
695
|
+
return self._instance.SpactY
|
|
696
|
+
@property
|
|
697
|
+
def spact_z(self) -> typing.List[float]:
|
|
698
|
+
return self._instance.SpactZ
|
|
699
|
+
@property
|
|
700
|
+
def spfulc_x(self) -> typing.List[float]:
|
|
701
|
+
return self._instance.SpfulcX
|
|
702
|
+
@property
|
|
703
|
+
def spfulc_y(self) -> typing.List[float]:
|
|
704
|
+
return self._instance.SpfulcY
|
|
705
|
+
@property
|
|
706
|
+
def spfulc_z(self) -> typing.List[float]:
|
|
707
|
+
return self._instance.SpfulcZ
|
|
708
|
+
@property
|
|
709
|
+
def interaction(self) -> typing.List[InteractVariableType]:
|
|
710
|
+
return [InteractVariableType(x) for x in self._instance.Interaction]
|
|
711
|
+
@property
|
|
712
|
+
def auto_sngstp(self) -> bool:
|
|
713
|
+
return self._instance.AutoSngstp
|
|
714
|
+
@property
|
|
715
|
+
def t1t2_sngstp(self) -> bool:
|
|
716
|
+
return self._instance.T1t2Sngstp
|
|
717
|
+
@property
|
|
718
|
+
def cart2nd_ti(self) -> int:
|
|
719
|
+
return self._instance.Cart2ndTi
|
|
720
|
+
@property
|
|
721
|
+
def jnt2nd_tim(self) -> typing.List[int]:
|
|
722
|
+
return self._instance.Jnt2ndTim
|
|
723
|
+
@property
|
|
724
|
+
def lc_qstp_enb(self) -> bool:
|
|
725
|
+
return self._instance.LcQstpEnb
|
|
726
|
+
@property
|
|
727
|
+
def cp_cutoffov(self) -> int:
|
|
728
|
+
return self._instance.CpCutoffov
|
|
729
|
+
@property
|
|
730
|
+
def cp_minseg(self) -> int:
|
|
731
|
+
return self._instance.CpMinseg
|
|
732
|
+
@property
|
|
733
|
+
def mastrev_enb(self) -> bool:
|
|
734
|
+
return self._instance.MastrevEnb
|
|
735
|
+
@property
|
|
736
|
+
def maspos_diff(self) -> typing.List[float]:
|
|
737
|
+
return self._instance.MasposDiff
|
|
738
|
+
@property
|
|
739
|
+
def intrac_num(self) -> typing.List[IntracNVariableType]:
|
|
740
|
+
return [IntracNVariableType(x) for x in self._instance.IntracNum]
|
|
741
|
+
@property
|
|
742
|
+
def intrac_div(self) -> typing.List[IntracDVariableType]:
|
|
743
|
+
return [IntracDVariableType(x) for x in self._instance.IntracDiv]
|
|
744
|
+
@property
|
|
745
|
+
def obs_dist(self) -> float:
|
|
746
|
+
return self._instance.ObsDist
|
|
747
|
+
@property
|
|
748
|
+
def sv_param(self) -> typing.List[float]:
|
|
749
|
+
return self._instance.SvParam
|
|
750
|
+
@property
|
|
751
|
+
def mijntchklmt(self) -> bool:
|
|
752
|
+
return self._instance.Mijntchklmt
|
|
753
|
+
@property
|
|
754
|
+
def lchwarn_enb(self) -> bool:
|
|
755
|
+
return self._instance.LchwarnEnb
|
|
756
|
+
@property
|
|
757
|
+
def abc_param(self) -> typing.List[float]:
|
|
758
|
+
return self._instance.AbcParam
|
|
759
|
+
@property
|
|
760
|
+
def mech_mask(self) -> int:
|
|
761
|
+
return self._instance.MechMask
|
|
762
|
+
@property
|
|
763
|
+
def mech_type(self) -> int:
|
|
764
|
+
return self._instance.MechType
|
|
765
|
+
@property
|
|
766
|
+
def axs_map_num(self) -> int:
|
|
767
|
+
return self._instance.AxsMapNum
|
|
768
|
+
@property
|
|
769
|
+
def axs_map(self) -> typing.List[int]:
|
|
770
|
+
return self._instance.AxsMap
|
|
771
|
+
@property
|
|
772
|
+
def dh_extra(self) -> typing.List[DhExtraVariableType]:
|
|
773
|
+
return [DhExtraVariableType(x) for x in self._instance.DhExtra]
|
|
774
|
+
@property
|
|
775
|
+
def axs_couple(self) -> typing.List[int]:
|
|
776
|
+
return self._instance.AxsCouple
|
|
777
|
+
@property
|
|
778
|
+
def ps_robot_cr(self) -> int:
|
|
779
|
+
return self._instance.PsRobotCr
|
|
780
|
+
@property
|
|
781
|
+
def robot_crc(self) -> int:
|
|
782
|
+
return self._instance.RobotCrc
|
|
783
|
+
@property
|
|
784
|
+
def fanuc_internal_type_name(self) -> str:
|
|
785
|
+
return self._instance.FanucInternalTypeName
|