UnderAutomation.Fanuc 2.0.0.1__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 +37 -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 +62 -0
- underautomation/fanuc/common/digital_ports.py +15 -0
- underautomation/fanuc/common/extended_cartesian_position.py +49 -0
- underautomation/fanuc/common/ftp_connect_parameters.py +19 -0
- underautomation/fanuc/common/io_status.py +27 -0
- underautomation/fanuc/common/joints_position.py +71 -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/task_status.py +10 -0
- underautomation/fanuc/common/telnet_connect_parameters.py +19 -0
- underautomation/fanuc/common/utils.py +17 -0
- underautomation/fanuc/common/wrist_flip.py +9 -0
- underautomation/fanuc/common/xyz_position.py +32 -0
- underautomation/fanuc/connection_parameters.py +52 -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 +17 -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 +16 -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 +53 -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 +18 -0
- underautomation/fanuc/ftp/internal/ftp_client_base.py +56 -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 +16 -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 +29 -0
- underautomation/fanuc/ftp/list/error_list.py +20 -0
- underautomation/fanuc/ftp/list/error_list_reader.py +16 -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 +165 -0
- underautomation/fanuc/ftp/variables/variable_reader_1.py +16 -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/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 +48 -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 +75 -0
- underautomation/fanuc/snpx/internal/robot_task_state.py +9 -0
- underautomation/fanuc/snpx/internal/robot_task_status.py +42 -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 +128 -0
- underautomation/fanuc/snpx/internal/snpx_client_internal.py +13 -0
- underautomation/fanuc/snpx/internal/snpx_connect_parameters_base.py +24 -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 +128 -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-2.0.0.1.dist-info/METADATA +210 -0
- underautomation_fanuc-2.0.0.1.dist-info/RECORD +667 -0
- underautomation_fanuc-2.0.0.1.dist-info/WHEEL +5 -0
- underautomation_fanuc-2.0.0.1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.ftp.variables.cartesian_position_variable import CartesianPositionVariable
|
|
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 RspaceVariableType as rspace_variable_type
|
|
8
|
+
|
|
9
|
+
class RspaceVariableType(GenericVariableType):
|
|
10
|
+
def __init__(self, _internal = 0):
|
|
11
|
+
if(_internal == 0):
|
|
12
|
+
self._instance = rspace_variable_type()
|
|
13
|
+
else:
|
|
14
|
+
self._instance = _internal
|
|
15
|
+
@property
|
|
16
|
+
def comment(self) -> str:
|
|
17
|
+
return self._instance.Comment
|
|
18
|
+
@property
|
|
19
|
+
def usage(self) -> int:
|
|
20
|
+
return self._instance.Usage
|
|
21
|
+
@property
|
|
22
|
+
def enabled(self) -> bool:
|
|
23
|
+
return self._instance.Enabled
|
|
24
|
+
@property
|
|
25
|
+
def in_exterior(self) -> bool:
|
|
26
|
+
return self._instance.InExterior
|
|
27
|
+
@property
|
|
28
|
+
def entry(self) -> bool:
|
|
29
|
+
return self._instance.Entry
|
|
30
|
+
@property
|
|
31
|
+
def ent_sign_on(self) -> bool:
|
|
32
|
+
return self._instance.EntSignOn
|
|
33
|
+
@property
|
|
34
|
+
def priority(self) -> bool:
|
|
35
|
+
return self._instance.Priority
|
|
36
|
+
@property
|
|
37
|
+
def priorwrk(self) -> bool:
|
|
38
|
+
return self._instance.Priorwrk
|
|
39
|
+
@property
|
|
40
|
+
def dout_type(self) -> int:
|
|
41
|
+
return self._instance.DoutType
|
|
42
|
+
@property
|
|
43
|
+
def dout_indx(self) -> int:
|
|
44
|
+
return self._instance.DoutIndx
|
|
45
|
+
@property
|
|
46
|
+
def din_type(self) -> int:
|
|
47
|
+
return self._instance.DinType
|
|
48
|
+
@property
|
|
49
|
+
def din_indx(self) -> int:
|
|
50
|
+
return self._instance.DinIndx
|
|
51
|
+
@property
|
|
52
|
+
def friend_grp(self) -> int:
|
|
53
|
+
return self._instance.FriendGrp
|
|
54
|
+
@property
|
|
55
|
+
def ufram_num(self) -> int:
|
|
56
|
+
return self._instance.UframNum
|
|
57
|
+
@property
|
|
58
|
+
def utool_num(self) -> int:
|
|
59
|
+
return self._instance.UtoolNum
|
|
60
|
+
@property
|
|
61
|
+
def myhold(self) -> int:
|
|
62
|
+
return self._instance.Myhold
|
|
63
|
+
@property
|
|
64
|
+
def length_vtex(self) -> int:
|
|
65
|
+
return self._instance.LengthVtex
|
|
66
|
+
@property
|
|
67
|
+
def first_vtex(self) -> typing.List[float]:
|
|
68
|
+
return self._instance.FirstVtex
|
|
69
|
+
@property
|
|
70
|
+
def secnd_vtex(self) -> typing.List[float]:
|
|
71
|
+
return self._instance.SecndVtex
|
|
72
|
+
@property
|
|
73
|
+
def ufinv_post(self) -> CartesianPositionVariable:
|
|
74
|
+
return CartesianPositionVariable(self._instance.UfinvPost)
|
|
75
|
+
@property
|
|
76
|
+
def margin(self) -> float:
|
|
77
|
+
return self._instance.Margin
|
|
78
|
+
@property
|
|
79
|
+
def waiting(self) -> int:
|
|
80
|
+
return self._instance.Waiting
|
|
81
|
+
@property
|
|
82
|
+
def first_vtx2(self) -> typing.List[float]:
|
|
83
|
+
return self._instance.FirstVtx2
|
|
84
|
+
@property
|
|
85
|
+
def secnd_vtx2(self) -> typing.List[float]:
|
|
86
|
+
return self._instance.SecndVtx2
|
|
87
|
+
@property
|
|
88
|
+
def g2entry(self) -> bool:
|
|
89
|
+
return self._instance.G2entry
|
|
90
|
+
@property
|
|
91
|
+
def g1ent_intr(self) -> bool:
|
|
92
|
+
return self._instance.G1entIntr
|
|
93
|
+
@property
|
|
94
|
+
def g2ent_intr(self) -> bool:
|
|
95
|
+
return self._instance.G2entIntr
|
|
96
|
+
@property
|
|
97
|
+
def pre_ufram(self) -> int:
|
|
98
|
+
return self._instance.PreUfram
|
|
99
|
+
@property
|
|
100
|
+
def no_use_di(self) -> bool:
|
|
101
|
+
return self._instance.NoUseDi
|
|
102
|
+
@property
|
|
103
|
+
def hold_req(self) -> bool:
|
|
104
|
+
return self._instance.HoldReq
|
|
105
|
+
@property
|
|
106
|
+
def cspace_num(self) -> int:
|
|
107
|
+
return self._instance.CspaceNum
|
|
108
|
+
@property
|
|
109
|
+
def cur_tcp(self) -> typing.List[float]:
|
|
110
|
+
return self._instance.CurTcp
|
|
111
|
+
@property
|
|
112
|
+
def pre_tcp(self) -> typing.List[float]:
|
|
113
|
+
return self._instance.PreTcp
|
|
114
|
+
@property
|
|
115
|
+
def fanuc_internal_type_name(self) -> str:
|
|
116
|
+
return self._instance.FanucInternalTypeName
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.ftp.variables.com_space_variable_type import ComSpaceVariableType
|
|
3
|
+
from underautomation.fanuc.ftp.variables.gp_hold_variable_type import GpHoldVariableType
|
|
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 RspacegVariableType as rspaceg_variable_type
|
|
9
|
+
|
|
10
|
+
class RspacegVariableType(GenericVariableType):
|
|
11
|
+
def __init__(self, _internal = 0):
|
|
12
|
+
if(_internal == 0):
|
|
13
|
+
self._instance = rspaceg_variable_type()
|
|
14
|
+
else:
|
|
15
|
+
self._instance = _internal
|
|
16
|
+
@property
|
|
17
|
+
def com_space(self) -> typing.List[ComSpaceVariableType]:
|
|
18
|
+
return [ComSpaceVariableType(x) for x in self._instance.ComSpace]
|
|
19
|
+
@property
|
|
20
|
+
def gp_hold(self) -> typing.List[GpHoldVariableType]:
|
|
21
|
+
return [GpHoldVariableType(x) for x in self._instance.GpHold]
|
|
22
|
+
@property
|
|
23
|
+
def spare_int(self) -> typing.List[int]:
|
|
24
|
+
return self._instance.SpareInt
|
|
25
|
+
@property
|
|
26
|
+
def fanuc_internal_type_name(self) -> str:
|
|
27
|
+
return self._instance.FanucInternalTypeName
|
|
@@ -0,0 +1,58 @@
|
|
|
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 RspacesrVariableType as rspacesr_variable_type
|
|
7
|
+
|
|
8
|
+
class RspacesrVariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = rspacesr_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def sr_enb_typ(self) -> typing.List[int]:
|
|
16
|
+
return self._instance.SrEnbTyp
|
|
17
|
+
@property
|
|
18
|
+
def runner_axs(self) -> bool:
|
|
19
|
+
return self._instance.RunnerAxs
|
|
20
|
+
@property
|
|
21
|
+
def hand_lngth(self) -> float:
|
|
22
|
+
return self._instance.HandLngth
|
|
23
|
+
@property
|
|
24
|
+
def hand_thick(self) -> float:
|
|
25
|
+
return self._instance.HandThick
|
|
26
|
+
@property
|
|
27
|
+
def flip_enb(self) -> bool:
|
|
28
|
+
return self._instance.FlipEnb
|
|
29
|
+
@property
|
|
30
|
+
def intference(self) -> bool:
|
|
31
|
+
return self._instance.Intference
|
|
32
|
+
@property
|
|
33
|
+
def hand_if_chk(self) -> bool:
|
|
34
|
+
return self._instance.HandIfChk
|
|
35
|
+
@property
|
|
36
|
+
def handi_type(self) -> int:
|
|
37
|
+
return self._instance.HandiType
|
|
38
|
+
@property
|
|
39
|
+
def handi_indx(self) -> int:
|
|
40
|
+
return self._instance.HandiIndx
|
|
41
|
+
@property
|
|
42
|
+
def sr_g1pos(self) -> typing.List[float]:
|
|
43
|
+
return self._instance.SrG1pos
|
|
44
|
+
@property
|
|
45
|
+
def sr_g1pos_in(self) -> typing.List[float]:
|
|
46
|
+
return self._instance.SrG1posIn
|
|
47
|
+
@property
|
|
48
|
+
def sr_g1ang(self) -> typing.List[float]:
|
|
49
|
+
return self._instance.SrG1ang
|
|
50
|
+
@property
|
|
51
|
+
def sr_g1ang_jf(self) -> typing.List[float]:
|
|
52
|
+
return self._instance.SrG1angJf
|
|
53
|
+
@property
|
|
54
|
+
def sr_prm(self) -> typing.List[int]:
|
|
55
|
+
return self._instance.SrPrm
|
|
56
|
+
@property
|
|
57
|
+
def fanuc_internal_type_name(self) -> str:
|
|
58
|
+
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 Sbr2VariableType as sbr2_variable_type
|
|
7
|
+
|
|
8
|
+
class Sbr2VariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = sbr2_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def param(self) -> typing.List[int]:
|
|
16
|
+
return self._instance.Param
|
|
17
|
+
@property
|
|
18
|
+
def fanuc_internal_type_name(self) -> str:
|
|
19
|
+
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 SbrVariableType as sbr_variable_type
|
|
7
|
+
|
|
8
|
+
class SbrVariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = sbr_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def svmtr_id(self) -> int:
|
|
16
|
+
return self._instance.SvmtrId
|
|
17
|
+
@property
|
|
18
|
+
def robot_id(self) -> str:
|
|
19
|
+
return self._instance.RobotId
|
|
20
|
+
@property
|
|
21
|
+
def grp_num(self) -> int:
|
|
22
|
+
return self._instance.GrpNum
|
|
23
|
+
@property
|
|
24
|
+
def axis_num(self) -> int:
|
|
25
|
+
return self._instance.AxisNum
|
|
26
|
+
@property
|
|
27
|
+
def mtr_id(self) -> str:
|
|
28
|
+
return self._instance.MtrId
|
|
29
|
+
@property
|
|
30
|
+
def mtr_inf_id(self) -> str:
|
|
31
|
+
return self._instance.MtrInfId
|
|
32
|
+
@property
|
|
33
|
+
def sv_param_id(self) -> str:
|
|
34
|
+
return self._instance.SvParamId
|
|
35
|
+
@property
|
|
36
|
+
def param(self) -> typing.List[int]:
|
|
37
|
+
return self._instance.Param
|
|
38
|
+
@property
|
|
39
|
+
def mot_spd_lim(self) -> int:
|
|
40
|
+
return self._instance.MotSpdLim
|
|
41
|
+
@property
|
|
42
|
+
def fanuc_internal_type_name(self) -> str:
|
|
43
|
+
return self._instance.FanucInternalTypeName
|
|
@@ -0,0 +1,417 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.common.configuration import Configuration
|
|
3
|
+
from underautomation.fanuc.ftp.variables.ax_ofs_variable_type import AxOfsVariableType
|
|
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 ScrGrpVariableType as scr_grp_variable_type
|
|
9
|
+
|
|
10
|
+
class ScrGrpVariableType(GenericVariableType):
|
|
11
|
+
def __init__(self, _internal = 0):
|
|
12
|
+
if(_internal == 0):
|
|
13
|
+
self._instance = scr_grp_variable_type()
|
|
14
|
+
else:
|
|
15
|
+
self._instance = _internal
|
|
16
|
+
@property
|
|
17
|
+
def arm_type(self) -> int:
|
|
18
|
+
return self._instance.ArmType
|
|
19
|
+
@property
|
|
20
|
+
def dummy127(self) -> int:
|
|
21
|
+
return self._instance.Dummy127
|
|
22
|
+
@property
|
|
23
|
+
def arm_type_b(self) -> int:
|
|
24
|
+
return self._instance.ArmTypeB
|
|
25
|
+
@property
|
|
26
|
+
def num_axes(self) -> int:
|
|
27
|
+
return self._instance.NumAxes
|
|
28
|
+
@property
|
|
29
|
+
def num_rob_axs(self) -> int:
|
|
30
|
+
return self._instance.NumRobAxs
|
|
31
|
+
@property
|
|
32
|
+
def num_red_axs(self) -> int:
|
|
33
|
+
return self._instance.NumRedAxs
|
|
34
|
+
@property
|
|
35
|
+
def wrst_axis_s(self) -> int:
|
|
36
|
+
return self._instance.WrstAxisS
|
|
37
|
+
@property
|
|
38
|
+
def wrst_axis_e(self) -> int:
|
|
39
|
+
return self._instance.WrstAxisE
|
|
40
|
+
@property
|
|
41
|
+
def sync_m_axis(self) -> int:
|
|
42
|
+
return self._instance.SyncMAxis
|
|
43
|
+
@property
|
|
44
|
+
def sync_s_axis(self) -> int:
|
|
45
|
+
return self._instance.SyncSAxis
|
|
46
|
+
@property
|
|
47
|
+
def wrist_type(self) -> int:
|
|
48
|
+
return self._instance.WristType
|
|
49
|
+
@property
|
|
50
|
+
def hw_strt_axs(self) -> int:
|
|
51
|
+
return self._instance.HwStrtAxs
|
|
52
|
+
@property
|
|
53
|
+
def axisorder(self) -> typing.List[int]:
|
|
54
|
+
return self._instance.Axisorder
|
|
55
|
+
@property
|
|
56
|
+
def dummy128(self) -> int:
|
|
57
|
+
return self._instance.Dummy128
|
|
58
|
+
@property
|
|
59
|
+
def brk_number(self) -> typing.List[int]:
|
|
60
|
+
return self._instance.BrkNumber
|
|
61
|
+
@property
|
|
62
|
+
def dummy129(self) -> int:
|
|
63
|
+
return self._instance.Dummy129
|
|
64
|
+
@property
|
|
65
|
+
def dd_motor(self) -> typing.List[bool]:
|
|
66
|
+
return self._instance.DdMotor
|
|
67
|
+
@property
|
|
68
|
+
def rotary_axs(self) -> typing.List[bool]:
|
|
69
|
+
return self._instance.RotaryAxs
|
|
70
|
+
@property
|
|
71
|
+
def loadratio(self) -> typing.List[float]:
|
|
72
|
+
return self._instance.Loadratio
|
|
73
|
+
@property
|
|
74
|
+
def config_mask(self) -> Configuration:
|
|
75
|
+
return Configuration(None, None, None, None, None, None, None, self._instance.ConfigMask)
|
|
76
|
+
@property
|
|
77
|
+
def link_length(self) -> typing.List[float]:
|
|
78
|
+
return self._instance.LinkLength
|
|
79
|
+
@property
|
|
80
|
+
def ext_order(self) -> typing.List[int]:
|
|
81
|
+
return self._instance.ExtOrder
|
|
82
|
+
@property
|
|
83
|
+
def dummy130(self) -> int:
|
|
84
|
+
return self._instance.Dummy130
|
|
85
|
+
@property
|
|
86
|
+
def ext_xyz_map(self) -> typing.List[int]:
|
|
87
|
+
return self._instance.ExtXyzMap
|
|
88
|
+
@property
|
|
89
|
+
def dummy131(self) -> int:
|
|
90
|
+
return self._instance.Dummy131
|
|
91
|
+
@property
|
|
92
|
+
def ext_offset(self) -> typing.List[float]:
|
|
93
|
+
return self._instance.ExtOffset
|
|
94
|
+
@property
|
|
95
|
+
def ext_length(self) -> typing.List[float]:
|
|
96
|
+
return self._instance.ExtLength
|
|
97
|
+
@property
|
|
98
|
+
def robot_id(self) -> str:
|
|
99
|
+
return self._instance.RobotId
|
|
100
|
+
@property
|
|
101
|
+
def robot_model(self) -> str:
|
|
102
|
+
return self._instance.RobotModel
|
|
103
|
+
@property
|
|
104
|
+
def robot_file(self) -> str:
|
|
105
|
+
return self._instance.RobotFile
|
|
106
|
+
@property
|
|
107
|
+
def robot_int(self) -> int:
|
|
108
|
+
return self._instance.RobotInt
|
|
109
|
+
@property
|
|
110
|
+
def sv_code_id(self) -> str:
|
|
111
|
+
return self._instance.SvCodeId
|
|
112
|
+
@property
|
|
113
|
+
def joglim_jnt(self) -> typing.List[int]:
|
|
114
|
+
return self._instance.JoglimJnt
|
|
115
|
+
@property
|
|
116
|
+
def coord_mask(self) -> int:
|
|
117
|
+
return self._instance.CoordMask
|
|
118
|
+
@property
|
|
119
|
+
def op_brk_num(self) -> typing.List[int]:
|
|
120
|
+
return self._instance.OpBrkNum
|
|
121
|
+
@property
|
|
122
|
+
def dummy132(self) -> int:
|
|
123
|
+
return self._instance.Dummy132
|
|
124
|
+
@property
|
|
125
|
+
def use_tbjnt(self) -> bool:
|
|
126
|
+
return self._instance.UseTbjnt
|
|
127
|
+
@property
|
|
128
|
+
def use_tbcart(self) -> bool:
|
|
129
|
+
return self._instance.UseTbcart
|
|
130
|
+
@property
|
|
131
|
+
def num_dual(self) -> int:
|
|
132
|
+
return self._instance.NumDual
|
|
133
|
+
@property
|
|
134
|
+
def dummy133(self) -> int:
|
|
135
|
+
return self._instance.Dummy133
|
|
136
|
+
@property
|
|
137
|
+
def turn_axis(self) -> typing.List[int]:
|
|
138
|
+
return self._instance.TurnAxis
|
|
139
|
+
@property
|
|
140
|
+
def axs_amp_num(self) -> typing.List[int]:
|
|
141
|
+
return self._instance.AxsAmpNum
|
|
142
|
+
@property
|
|
143
|
+
def flextooltyp(self) -> int:
|
|
144
|
+
return self._instance.Flextooltyp
|
|
145
|
+
@property
|
|
146
|
+
def axs_xyz_map(self) -> typing.List[int]:
|
|
147
|
+
return self._instance.AxsXyzMap
|
|
148
|
+
@property
|
|
149
|
+
def dummy134(self) -> int:
|
|
150
|
+
return self._instance.Dummy134
|
|
151
|
+
@property
|
|
152
|
+
def ofst(self) -> typing.List[AxOfsVariableType]:
|
|
153
|
+
return [AxOfsVariableType(x) for x in self._instance.Ofst]
|
|
154
|
+
@property
|
|
155
|
+
def kinem_enb(self) -> int:
|
|
156
|
+
return self._instance.KinemEnb
|
|
157
|
+
@property
|
|
158
|
+
def dummy135(self) -> int:
|
|
159
|
+
return self._instance.Dummy135
|
|
160
|
+
@property
|
|
161
|
+
def update_map(self) -> int:
|
|
162
|
+
return self._instance.UpdateMap
|
|
163
|
+
@property
|
|
164
|
+
def torqctrl(self) -> int:
|
|
165
|
+
return self._instance.Torqctrl
|
|
166
|
+
@property
|
|
167
|
+
def dsp_num(self) -> typing.List[int]:
|
|
168
|
+
return self._instance.DspNum
|
|
169
|
+
@property
|
|
170
|
+
def dummy136(self) -> int:
|
|
171
|
+
return self._instance.Dummy136
|
|
172
|
+
@property
|
|
173
|
+
def m_pos_enb(self) -> bool:
|
|
174
|
+
return self._instance.MPosEnb
|
|
175
|
+
@property
|
|
176
|
+
def m_dst_enb(self) -> bool:
|
|
177
|
+
return self._instance.MDstEnb
|
|
178
|
+
@property
|
|
179
|
+
def move_dst(self) -> float:
|
|
180
|
+
return self._instance.MoveDst
|
|
181
|
+
@property
|
|
182
|
+
def mch_pos_x(self) -> float:
|
|
183
|
+
return self._instance.MchPosX
|
|
184
|
+
@property
|
|
185
|
+
def mch_pos_y(self) -> float:
|
|
186
|
+
return self._instance.MchPosY
|
|
187
|
+
@property
|
|
188
|
+
def mch_pos_z(self) -> float:
|
|
189
|
+
return self._instance.MchPosZ
|
|
190
|
+
@property
|
|
191
|
+
def mch_pos_w(self) -> float:
|
|
192
|
+
return self._instance.MchPosW
|
|
193
|
+
@property
|
|
194
|
+
def mch_pos_p(self) -> float:
|
|
195
|
+
return self._instance.MchPosP
|
|
196
|
+
@property
|
|
197
|
+
def mch_pos_r(self) -> float:
|
|
198
|
+
return self._instance.MchPosR
|
|
199
|
+
@property
|
|
200
|
+
def mch_ang(self) -> typing.List[float]:
|
|
201
|
+
return self._instance.MchAng
|
|
202
|
+
@property
|
|
203
|
+
def mch_spd(self) -> float:
|
|
204
|
+
return self._instance.MchSpd
|
|
205
|
+
@property
|
|
206
|
+
def dst_mir_p(self) -> int:
|
|
207
|
+
return self._instance.DstMirP
|
|
208
|
+
@property
|
|
209
|
+
def dpos_dst(self) -> float:
|
|
210
|
+
return self._instance.DposDst
|
|
211
|
+
@property
|
|
212
|
+
def dst_pos_x(self) -> float:
|
|
213
|
+
return self._instance.DstPosX
|
|
214
|
+
@property
|
|
215
|
+
def dst_pos_y(self) -> float:
|
|
216
|
+
return self._instance.DstPosY
|
|
217
|
+
@property
|
|
218
|
+
def dst_pos_z(self) -> float:
|
|
219
|
+
return self._instance.DstPosZ
|
|
220
|
+
@property
|
|
221
|
+
def dsp_ercnt(self) -> typing.List[int]:
|
|
222
|
+
return self._instance.DspErcnt
|
|
223
|
+
@property
|
|
224
|
+
def dest_data_p(self) -> typing.List[int]:
|
|
225
|
+
return self._instance.DestDataP
|
|
226
|
+
@property
|
|
227
|
+
def robot_func(self) -> int:
|
|
228
|
+
return self._instance.RobotFunc
|
|
229
|
+
@property
|
|
230
|
+
def proc_axs(self) -> typing.List[bool]:
|
|
231
|
+
return self._instance.ProcAxs
|
|
232
|
+
@property
|
|
233
|
+
def dac_mode(self) -> int:
|
|
234
|
+
return self._instance.DacMode
|
|
235
|
+
@property
|
|
236
|
+
def dac_axmode(self) -> typing.List[int]:
|
|
237
|
+
return self._instance.DacAxmode
|
|
238
|
+
@property
|
|
239
|
+
def dac_rate1(self) -> typing.List[float]:
|
|
240
|
+
return self._instance.DacRate1
|
|
241
|
+
@property
|
|
242
|
+
def dac_rate2(self) -> typing.List[float]:
|
|
243
|
+
return self._instance.DacRate2
|
|
244
|
+
@property
|
|
245
|
+
def dac_rate3(self) -> typing.List[float]:
|
|
246
|
+
return self._instance.DacRate3
|
|
247
|
+
@property
|
|
248
|
+
def dac_rate4(self) -> typing.List[float]:
|
|
249
|
+
return self._instance.DacRate4
|
|
250
|
+
@property
|
|
251
|
+
def dac_rate5(self) -> typing.List[float]:
|
|
252
|
+
return self._instance.DacRate5
|
|
253
|
+
@property
|
|
254
|
+
def dac_rate6(self) -> typing.List[float]:
|
|
255
|
+
return self._instance.DacRate6
|
|
256
|
+
@property
|
|
257
|
+
def dac_rate7(self) -> typing.List[float]:
|
|
258
|
+
return self._instance.DacRate7
|
|
259
|
+
@property
|
|
260
|
+
def dac_rate8(self) -> typing.List[float]:
|
|
261
|
+
return self._instance.DacRate8
|
|
262
|
+
@property
|
|
263
|
+
def dac_rate9(self) -> typing.List[float]:
|
|
264
|
+
return self._instance.DacRate9
|
|
265
|
+
@property
|
|
266
|
+
def dac_rate10(self) -> typing.List[float]:
|
|
267
|
+
return self._instance.DacRate10
|
|
268
|
+
@property
|
|
269
|
+
def dac_lmt1(self) -> typing.List[float]:
|
|
270
|
+
return self._instance.DacLmt1
|
|
271
|
+
@property
|
|
272
|
+
def dac_lmt2(self) -> typing.List[float]:
|
|
273
|
+
return self._instance.DacLmt2
|
|
274
|
+
@property
|
|
275
|
+
def dac_lmt3(self) -> typing.List[float]:
|
|
276
|
+
return self._instance.DacLmt3
|
|
277
|
+
@property
|
|
278
|
+
def dac_lmt4(self) -> typing.List[float]:
|
|
279
|
+
return self._instance.DacLmt4
|
|
280
|
+
@property
|
|
281
|
+
def dac_lmt5(self) -> typing.List[float]:
|
|
282
|
+
return self._instance.DacLmt5
|
|
283
|
+
@property
|
|
284
|
+
def dac_lmt6(self) -> typing.List[float]:
|
|
285
|
+
return self._instance.DacLmt6
|
|
286
|
+
@property
|
|
287
|
+
def dac_lmt7(self) -> typing.List[float]:
|
|
288
|
+
return self._instance.DacLmt7
|
|
289
|
+
@property
|
|
290
|
+
def dac_lmt8(self) -> typing.List[float]:
|
|
291
|
+
return self._instance.DacLmt8
|
|
292
|
+
@property
|
|
293
|
+
def dac_lmt9(self) -> typing.List[float]:
|
|
294
|
+
return self._instance.DacLmt9
|
|
295
|
+
@property
|
|
296
|
+
def dac_lmt10(self) -> typing.List[float]:
|
|
297
|
+
return self._instance.DacLmt10
|
|
298
|
+
@property
|
|
299
|
+
def dac_flt_len(self) -> int:
|
|
300
|
+
return self._instance.DacFltLen
|
|
301
|
+
@property
|
|
302
|
+
def dac_debug(self) -> typing.List[int]:
|
|
303
|
+
return self._instance.DacDebug
|
|
304
|
+
@property
|
|
305
|
+
def func_sw(self) -> typing.List[int]:
|
|
306
|
+
return self._instance.FuncSw
|
|
307
|
+
@property
|
|
308
|
+
def func_val(self) -> typing.List[float]:
|
|
309
|
+
return self._instance.FuncVal
|
|
310
|
+
@property
|
|
311
|
+
def abc_enb(self) -> bool:
|
|
312
|
+
return self._instance.AbcEnb
|
|
313
|
+
@property
|
|
314
|
+
def hbk_enbl(self) -> bool:
|
|
315
|
+
return self._instance.HbkEnbl
|
|
316
|
+
@property
|
|
317
|
+
def mv_diag(self) -> typing.List[float]:
|
|
318
|
+
return self._instance.MvDiag
|
|
319
|
+
@property
|
|
320
|
+
def abc_mode1(self) -> float:
|
|
321
|
+
return self._instance.AbcMode1
|
|
322
|
+
@property
|
|
323
|
+
def abc_mode2(self) -> float:
|
|
324
|
+
return self._instance.AbcMode2
|
|
325
|
+
@property
|
|
326
|
+
def abc_mode3(self) -> float:
|
|
327
|
+
return self._instance.AbcMode3
|
|
328
|
+
@property
|
|
329
|
+
def abc_mode4(self) -> float:
|
|
330
|
+
return self._instance.AbcMode4
|
|
331
|
+
@property
|
|
332
|
+
def abc_mode5(self) -> float:
|
|
333
|
+
return self._instance.AbcMode5
|
|
334
|
+
@property
|
|
335
|
+
def abc_mode6(self) -> float:
|
|
336
|
+
return self._instance.AbcMode6
|
|
337
|
+
@property
|
|
338
|
+
def abc_mode7(self) -> float:
|
|
339
|
+
return self._instance.AbcMode7
|
|
340
|
+
@property
|
|
341
|
+
def abc_mode8(self) -> float:
|
|
342
|
+
return self._instance.AbcMode8
|
|
343
|
+
@property
|
|
344
|
+
def abc_mode9(self) -> float:
|
|
345
|
+
return self._instance.AbcMode9
|
|
346
|
+
@property
|
|
347
|
+
def safe_jntspd(self) -> typing.List[float]:
|
|
348
|
+
return self._instance.SafeJntspd
|
|
349
|
+
@property
|
|
350
|
+
def robot_label(self) -> str:
|
|
351
|
+
return self._instance.RobotLabel
|
|
352
|
+
@property
|
|
353
|
+
def dsp_num_flg(self) -> int:
|
|
354
|
+
return self._instance.DspNumFlg
|
|
355
|
+
@property
|
|
356
|
+
def group_num(self) -> int:
|
|
357
|
+
return self._instance.GroupNum
|
|
358
|
+
@property
|
|
359
|
+
def comp_sw(self) -> typing.List[int]:
|
|
360
|
+
return self._instance.CompSw
|
|
361
|
+
@property
|
|
362
|
+
def amb_temp(self) -> float:
|
|
363
|
+
return self._instance.AmbTemp
|
|
364
|
+
@property
|
|
365
|
+
def dsp_strt_ax(self) -> int:
|
|
366
|
+
return self._instance.DspStrtAx
|
|
367
|
+
@property
|
|
368
|
+
def tot_sbr_num(self) -> int:
|
|
369
|
+
return self._instance.TotSbrNum
|
|
370
|
+
@property
|
|
371
|
+
def tot_dsp_num(self) -> int:
|
|
372
|
+
return self._instance.TotDspNum
|
|
373
|
+
@property
|
|
374
|
+
def tot_atr_num(self) -> int:
|
|
375
|
+
return self._instance.TotAtrNum
|
|
376
|
+
@property
|
|
377
|
+
def tandem_sub(self) -> typing.List[int]:
|
|
378
|
+
return self._instance.TandemSub
|
|
379
|
+
@property
|
|
380
|
+
def dsp_order(self) -> typing.List[int]:
|
|
381
|
+
return self._instance.DspOrder
|
|
382
|
+
@property
|
|
383
|
+
def atr_order(self) -> typing.List[int]:
|
|
384
|
+
return self._instance.AtrOrder
|
|
385
|
+
@property
|
|
386
|
+
def ampinf_ordr(self) -> typing.List[int]:
|
|
387
|
+
return self._instance.AmpinfOrdr
|
|
388
|
+
@property
|
|
389
|
+
def ampcur_ordr(self) -> typing.List[int]:
|
|
390
|
+
return self._instance.AmpcurOrdr
|
|
391
|
+
@property
|
|
392
|
+
def fix_ornt_wr(self) -> bool:
|
|
393
|
+
return self._instance.FixOrntWr
|
|
394
|
+
@property
|
|
395
|
+
def jnt_vel_lim(self) -> typing.List[float]:
|
|
396
|
+
return self._instance.JntVelLim
|
|
397
|
+
@property
|
|
398
|
+
def jnt_acc_lim(self) -> typing.List[float]:
|
|
399
|
+
return self._instance.JntAccLim
|
|
400
|
+
@property
|
|
401
|
+
def joglimrot(self) -> int:
|
|
402
|
+
return self._instance.Joglimrot
|
|
403
|
+
@property
|
|
404
|
+
def robot_name(self) -> str:
|
|
405
|
+
return self._instance.RobotName
|
|
406
|
+
@property
|
|
407
|
+
def axis_cat(self) -> typing.List[int]:
|
|
408
|
+
return self._instance.AxisCat
|
|
409
|
+
@property
|
|
410
|
+
def dummy137(self) -> int:
|
|
411
|
+
return self._instance.Dummy137
|
|
412
|
+
@property
|
|
413
|
+
def dummy138(self) -> int:
|
|
414
|
+
return self._instance.Dummy138
|
|
415
|
+
@property
|
|
416
|
+
def fanuc_internal_type_name(self) -> str:
|
|
417
|
+
return self._instance.FanucInternalTypeName
|