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,217 @@
|
|
|
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 LogbookVariableType as logbook_variable_type
|
|
7
|
+
|
|
8
|
+
class LogbookVariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = logbook_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def num_er_itm(self) -> int:
|
|
16
|
+
return self._instance.NumErItm
|
|
17
|
+
@property
|
|
18
|
+
def num_er_typ(self) -> int:
|
|
19
|
+
return self._instance.NumErTyp
|
|
20
|
+
@property
|
|
21
|
+
def num_rec_typ(self) -> int:
|
|
22
|
+
return self._instance.NumRecTyp
|
|
23
|
+
@property
|
|
24
|
+
def num_scrn_fl(self) -> int:
|
|
25
|
+
return self._instance.NumScrnFl
|
|
26
|
+
@property
|
|
27
|
+
def num_dio(self) -> int:
|
|
28
|
+
return self._instance.NumDio
|
|
29
|
+
@property
|
|
30
|
+
def sram_margin(self) -> int:
|
|
31
|
+
return self._instance.SramMargin
|
|
32
|
+
@property
|
|
33
|
+
def dram_margin(self) -> int:
|
|
34
|
+
return self._instance.DramMargin
|
|
35
|
+
@property
|
|
36
|
+
def option(self) -> int:
|
|
37
|
+
return self._instance.Option
|
|
38
|
+
@property
|
|
39
|
+
def log_er(self) -> int:
|
|
40
|
+
return self._instance.LogEr
|
|
41
|
+
@property
|
|
42
|
+
def log_ent(self) -> int:
|
|
43
|
+
return self._instance.LogEnt
|
|
44
|
+
@property
|
|
45
|
+
def log_sel(self) -> int:
|
|
46
|
+
return self._instance.LogSel
|
|
47
|
+
@property
|
|
48
|
+
def log_win(self) -> int:
|
|
49
|
+
return self._instance.LogWin
|
|
50
|
+
@property
|
|
51
|
+
def log_menu(self) -> int:
|
|
52
|
+
return self._instance.LogMenu
|
|
53
|
+
@property
|
|
54
|
+
def log_jgmu(self) -> int:
|
|
55
|
+
return self._instance.LogJgmu
|
|
56
|
+
@property
|
|
57
|
+
def log_mnchg(self) -> int:
|
|
58
|
+
return self._instance.LogMnchg
|
|
59
|
+
@property
|
|
60
|
+
def log_fnkey(self) -> int:
|
|
61
|
+
return self._instance.LogFnkey
|
|
62
|
+
@property
|
|
63
|
+
def log_jgky(self) -> int:
|
|
64
|
+
return self._instance.LogJgky
|
|
65
|
+
@property
|
|
66
|
+
def log_prgkey(self) -> int:
|
|
67
|
+
return self._instance.LogPrgkey
|
|
68
|
+
@property
|
|
69
|
+
def log_ufky(self) -> int:
|
|
70
|
+
return self._instance.LogUfky
|
|
71
|
+
@property
|
|
72
|
+
def log_ovrky(self) -> int:
|
|
73
|
+
return self._instance.LogOvrky
|
|
74
|
+
@property
|
|
75
|
+
def log_fwdky(self) -> int:
|
|
76
|
+
return self._instance.LogFwdky
|
|
77
|
+
@property
|
|
78
|
+
def log_hldky(self) -> int:
|
|
79
|
+
return self._instance.LogHldky
|
|
80
|
+
@property
|
|
81
|
+
def log_stpky(self) -> int:
|
|
82
|
+
return self._instance.LogStpky
|
|
83
|
+
@property
|
|
84
|
+
def log_prvky(self) -> int:
|
|
85
|
+
return self._instance.LogPrvky
|
|
86
|
+
@property
|
|
87
|
+
def log_entky(self) -> int:
|
|
88
|
+
return self._instance.LogEntky
|
|
89
|
+
@property
|
|
90
|
+
def log_itmky(self) -> int:
|
|
91
|
+
return self._instance.LogItmky
|
|
92
|
+
@property
|
|
93
|
+
def log_rstky(self) -> int:
|
|
94
|
+
return self._instance.LogRstky
|
|
95
|
+
@property
|
|
96
|
+
def log_helpky(self) -> int:
|
|
97
|
+
return self._instance.LogHelpky
|
|
98
|
+
@property
|
|
99
|
+
def log_ovr(self) -> int:
|
|
100
|
+
return self._instance.LogOvr
|
|
101
|
+
@property
|
|
102
|
+
def log_crd(self) -> int:
|
|
103
|
+
return self._instance.LogCrd
|
|
104
|
+
@property
|
|
105
|
+
def log_step(self) -> int:
|
|
106
|
+
return self._instance.LogStep
|
|
107
|
+
@property
|
|
108
|
+
def log_grp(self) -> int:
|
|
109
|
+
return self._instance.LogGrp
|
|
110
|
+
@property
|
|
111
|
+
def log_sgrp(self) -> int:
|
|
112
|
+
return self._instance.LogSgrp
|
|
113
|
+
@property
|
|
114
|
+
def log_uf(self) -> int:
|
|
115
|
+
return self._instance.LogUf
|
|
116
|
+
@property
|
|
117
|
+
def log_ut(self) -> int:
|
|
118
|
+
return self._instance.LogUt
|
|
119
|
+
@property
|
|
120
|
+
def log_file(self) -> int:
|
|
121
|
+
return self._instance.LogFile
|
|
122
|
+
@property
|
|
123
|
+
def log_wtrls(self) -> int:
|
|
124
|
+
return self._instance.LogWtrls
|
|
125
|
+
@property
|
|
126
|
+
def log_pgchg(self) -> int:
|
|
127
|
+
return self._instance.LogPgchg
|
|
128
|
+
@property
|
|
129
|
+
def log_setpos(self) -> int:
|
|
130
|
+
return self._instance.LogSetpos
|
|
131
|
+
@property
|
|
132
|
+
def log_tpky(self) -> int:
|
|
133
|
+
return self._instance.LogTpky
|
|
134
|
+
@property
|
|
135
|
+
def log_dio(self) -> int:
|
|
136
|
+
return self._instance.LogDio
|
|
137
|
+
@property
|
|
138
|
+
def log_stmd(self) -> int:
|
|
139
|
+
return self._instance.LogStmd
|
|
140
|
+
@property
|
|
141
|
+
def log_focus(self) -> int:
|
|
142
|
+
return self._instance.LogFocus
|
|
143
|
+
@property
|
|
144
|
+
def log_prgexe(self) -> int:
|
|
145
|
+
return self._instance.LogPrgexe
|
|
146
|
+
@property
|
|
147
|
+
def log_tuikey(self) -> int:
|
|
148
|
+
return self._instance.LogTuikey
|
|
149
|
+
@property
|
|
150
|
+
def img_ent(self) -> bool:
|
|
151
|
+
return self._instance.ImgEnt
|
|
152
|
+
@property
|
|
153
|
+
def img_sel(self) -> bool:
|
|
154
|
+
return self._instance.ImgSel
|
|
155
|
+
@property
|
|
156
|
+
def img_win(self) -> bool:
|
|
157
|
+
return self._instance.ImgWin
|
|
158
|
+
@property
|
|
159
|
+
def img_fnky(self) -> bool:
|
|
160
|
+
return self._instance.ImgFnky
|
|
161
|
+
@property
|
|
162
|
+
def save_file(self) -> str:
|
|
163
|
+
return self._instance.SaveFile
|
|
164
|
+
@property
|
|
165
|
+
def scrn_fl(self) -> bool:
|
|
166
|
+
return self._instance.ScrnFl
|
|
167
|
+
@property
|
|
168
|
+
def scrn_no_ent(self) -> bool:
|
|
169
|
+
return self._instance.ScrnNoEnt
|
|
170
|
+
@property
|
|
171
|
+
def analog_tol(self) -> int:
|
|
172
|
+
return self._instance.AnalogTol
|
|
173
|
+
@property
|
|
174
|
+
def available(self) -> int:
|
|
175
|
+
return self._instance.Available
|
|
176
|
+
@property
|
|
177
|
+
def clear_enb(self) -> bool:
|
|
178
|
+
return self._instance.ClearEnb
|
|
179
|
+
@property
|
|
180
|
+
def dcs_hi1(self) -> int:
|
|
181
|
+
return self._instance.DcsHi1
|
|
182
|
+
@property
|
|
183
|
+
def dcs_hi2(self) -> int:
|
|
184
|
+
return self._instance.DcsHi2
|
|
185
|
+
@property
|
|
186
|
+
def dcs_ho1(self) -> int:
|
|
187
|
+
return self._instance.DcsHo1
|
|
188
|
+
@property
|
|
189
|
+
def dcs_ho2(self) -> int:
|
|
190
|
+
return self._instance.DcsHo2
|
|
191
|
+
@property
|
|
192
|
+
def dcs_si(self) -> int:
|
|
193
|
+
return self._instance.DcsSi
|
|
194
|
+
@property
|
|
195
|
+
def dcs_so1(self) -> int:
|
|
196
|
+
return self._instance.DcsSo1
|
|
197
|
+
@property
|
|
198
|
+
def dcs_so2(self) -> int:
|
|
199
|
+
return self._instance.DcsSo2
|
|
200
|
+
@property
|
|
201
|
+
def dcs_option(self) -> int:
|
|
202
|
+
return self._instance.DcsOption
|
|
203
|
+
@property
|
|
204
|
+
def ignr_save(self) -> int:
|
|
205
|
+
return self._instance.IgnrSave
|
|
206
|
+
@property
|
|
207
|
+
def fnkey_fltr(self) -> int:
|
|
208
|
+
return self._instance.FnkeyFltr
|
|
209
|
+
@property
|
|
210
|
+
def dcs_dev(self) -> int:
|
|
211
|
+
return self._instance.DcsDev
|
|
212
|
+
@property
|
|
213
|
+
def log_cllb(self) -> int:
|
|
214
|
+
return self._instance.LogCllb
|
|
215
|
+
@property
|
|
216
|
+
def fanuc_internal_type_name(self) -> str:
|
|
217
|
+
return self._instance.FanucInternalTypeName
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.ftp.variables.generic_variable_type import GenericVariableType
|
|
3
|
+
import clr
|
|
4
|
+
import os
|
|
5
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
6
|
+
from UnderAutomation.Fanuc.Ftp.Variables import MaxPldCalVariableType as max_pld_cal_variable_type
|
|
7
|
+
|
|
8
|
+
class MaxPldCalVariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = max_pld_cal_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def aa(self) -> float:
|
|
16
|
+
return self._instance.Aa
|
|
17
|
+
@property
|
|
18
|
+
def bb(self) -> float:
|
|
19
|
+
return self._instance.Bb
|
|
20
|
+
@property
|
|
21
|
+
def cc(self) -> float:
|
|
22
|
+
return self._instance.Cc
|
|
23
|
+
@property
|
|
24
|
+
def dd(self) -> float:
|
|
25
|
+
return self._instance.Dd
|
|
26
|
+
@property
|
|
27
|
+
def ee(self) -> float:
|
|
28
|
+
return self._instance.Ee
|
|
29
|
+
@property
|
|
30
|
+
def fanuc_internal_type_name(self) -> str:
|
|
31
|
+
return self._instance.FanucInternalTypeName
|
|
@@ -0,0 +1,217 @@
|
|
|
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 McrGrpVariableType as mcr_grp_variable_type
|
|
7
|
+
|
|
8
|
+
class McrGrpVariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = mcr_grp_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def calibrate(self) -> bool:
|
|
16
|
+
return self._instance.Calibrate
|
|
17
|
+
@property
|
|
18
|
+
def crc_rsm_tol(self) -> float:
|
|
19
|
+
return self._instance.CrcRsmTol
|
|
20
|
+
@property
|
|
21
|
+
def hold(self) -> bool:
|
|
22
|
+
return self._instance.Hold
|
|
23
|
+
@property
|
|
24
|
+
def hard_hold(self) -> bool:
|
|
25
|
+
return self._instance.HardHold
|
|
26
|
+
@property
|
|
27
|
+
def machinelock(self) -> bool:
|
|
28
|
+
return self._instance.Machinelock
|
|
29
|
+
@property
|
|
30
|
+
def master(self) -> bool:
|
|
31
|
+
return self._instance.Master
|
|
32
|
+
@property
|
|
33
|
+
def prgoverride(self) -> float:
|
|
34
|
+
return self._instance.Prgoverride
|
|
35
|
+
@property
|
|
36
|
+
def dry_run_spd(self) -> float:
|
|
37
|
+
return self._instance.DryRunSpd
|
|
38
|
+
@property
|
|
39
|
+
def dryrun_jspd(self) -> float:
|
|
40
|
+
return self._instance.DryrunJspd
|
|
41
|
+
@property
|
|
42
|
+
def dry_jog_ovr(self) -> float:
|
|
43
|
+
return self._instance.DryJogOvr
|
|
44
|
+
@property
|
|
45
|
+
def rsm_speed(self) -> float:
|
|
46
|
+
return self._instance.RsmSpeed
|
|
47
|
+
@property
|
|
48
|
+
def rsm_motype(self) -> int:
|
|
49
|
+
return self._instance.RsmMotype
|
|
50
|
+
@property
|
|
51
|
+
def rsm_termtyp(self) -> int:
|
|
52
|
+
return self._instance.RsmTermtyp
|
|
53
|
+
@property
|
|
54
|
+
def jnt_prc_enb(self) -> bool:
|
|
55
|
+
return self._instance.JntPrcEnb
|
|
56
|
+
@property
|
|
57
|
+
def soft_alarm(self) -> bool:
|
|
58
|
+
return self._instance.SoftAlarm
|
|
59
|
+
@property
|
|
60
|
+
def syn_adj_mod(self) -> bool:
|
|
61
|
+
return self._instance.SynAdjMod
|
|
62
|
+
@property
|
|
63
|
+
def syn_adj_sel(self) -> bool:
|
|
64
|
+
return self._instance.SynAdjSel
|
|
65
|
+
@property
|
|
66
|
+
def turn_on_srv(self) -> bool:
|
|
67
|
+
return self._instance.TurnOnSrv
|
|
68
|
+
@property
|
|
69
|
+
def rsm_offset(self) -> float:
|
|
70
|
+
return self._instance.RsmOffset
|
|
71
|
+
@property
|
|
72
|
+
def set_ref(self) -> bool:
|
|
73
|
+
return self._instance.SetRef
|
|
74
|
+
@property
|
|
75
|
+
def master_type(self) -> int:
|
|
76
|
+
return self._instance.MasterType
|
|
77
|
+
@property
|
|
78
|
+
def intr_debug(self) -> int:
|
|
79
|
+
return self._instance.IntrDebug
|
|
80
|
+
@property
|
|
81
|
+
def plan_debug(self) -> int:
|
|
82
|
+
return self._instance.PlanDebug
|
|
83
|
+
@property
|
|
84
|
+
def chk_jnt_spd(self) -> typing.List[bool]:
|
|
85
|
+
return self._instance.ChkJntSpd
|
|
86
|
+
@property
|
|
87
|
+
def dsp_upd_blk(self) -> typing.List[int]:
|
|
88
|
+
return self._instance.DspUpdBlk
|
|
89
|
+
@property
|
|
90
|
+
def dummy66(self) -> int:
|
|
91
|
+
return self._instance.Dummy66
|
|
92
|
+
@property
|
|
93
|
+
def dsp_update(self) -> typing.List[int]:
|
|
94
|
+
return self._instance.DspUpdate
|
|
95
|
+
@property
|
|
96
|
+
def dummy67(self) -> int:
|
|
97
|
+
return self._instance.Dummy67
|
|
98
|
+
@property
|
|
99
|
+
def servo_disbl(self) -> typing.List[bool]:
|
|
100
|
+
return self._instance.ServoDisbl
|
|
101
|
+
@property
|
|
102
|
+
def intplockhol(self) -> bool:
|
|
103
|
+
return self._instance.Intplockhol
|
|
104
|
+
@property
|
|
105
|
+
def qck_stp_enb(self) -> bool:
|
|
106
|
+
return self._instance.QckStpEnb
|
|
107
|
+
@property
|
|
108
|
+
def otf_speed(self) -> float:
|
|
109
|
+
return self._instance.OtfSpeed
|
|
110
|
+
@property
|
|
111
|
+
def otf_org_spd(self) -> float:
|
|
112
|
+
return self._instance.OtfOrgSpd
|
|
113
|
+
@property
|
|
114
|
+
def otf_spd_chg(self) -> int:
|
|
115
|
+
return self._instance.OtfSpdChg
|
|
116
|
+
@property
|
|
117
|
+
def otf_spd_upd(self) -> bool:
|
|
118
|
+
return self._instance.OtfSpdUpd
|
|
119
|
+
@property
|
|
120
|
+
def tsmod_on(self) -> bool:
|
|
121
|
+
return self._instance.TsmodOn
|
|
122
|
+
@property
|
|
123
|
+
def uop_imstp(self) -> bool:
|
|
124
|
+
return self._instance.UopImstp
|
|
125
|
+
@property
|
|
126
|
+
def lch_edm_enb(self) -> bool:
|
|
127
|
+
return self._instance.LchEdmEnb
|
|
128
|
+
@property
|
|
129
|
+
def eachmst_sel(self) -> typing.List[bool]:
|
|
130
|
+
return self._instance.EachmstSel
|
|
131
|
+
@property
|
|
132
|
+
def fjog_enb(self) -> bool:
|
|
133
|
+
return self._instance.FjogEnb
|
|
134
|
+
@property
|
|
135
|
+
def sflt_enb(self) -> typing.List[bool]:
|
|
136
|
+
return self._instance.SfltEnb
|
|
137
|
+
@property
|
|
138
|
+
def sflt_val(self) -> typing.List[int]:
|
|
139
|
+
return self._instance.SfltVal
|
|
140
|
+
@property
|
|
141
|
+
def sflt_fup(self) -> bool:
|
|
142
|
+
return self._instance.SfltFup
|
|
143
|
+
@property
|
|
144
|
+
def rsm_orient(self) -> int:
|
|
145
|
+
return self._instance.RsmOrient
|
|
146
|
+
@property
|
|
147
|
+
def rsm_cmd_pth(self) -> bool:
|
|
148
|
+
return self._instance.RsmCmdPth
|
|
149
|
+
@property
|
|
150
|
+
def pos_estblsh(self) -> bool:
|
|
151
|
+
return self._instance.PosEstblsh
|
|
152
|
+
@property
|
|
153
|
+
def pos_can_req(self) -> bool:
|
|
154
|
+
return self._instance.PosCanReq
|
|
155
|
+
@property
|
|
156
|
+
def srvo_q_stop(self) -> int:
|
|
157
|
+
return self._instance.SrvoQStop
|
|
158
|
+
@property
|
|
159
|
+
def dummy68(self) -> int:
|
|
160
|
+
return self._instance.Dummy68
|
|
161
|
+
@property
|
|
162
|
+
def pg_org_rsm(self) -> bool:
|
|
163
|
+
return self._instance.PgOrgRsm
|
|
164
|
+
@property
|
|
165
|
+
def fltr_flush(self) -> int:
|
|
166
|
+
return self._instance.FltrFlush
|
|
167
|
+
@property
|
|
168
|
+
def dummy69(self) -> int:
|
|
169
|
+
return self._instance.Dummy69
|
|
170
|
+
@property
|
|
171
|
+
def forceupdate(self) -> int:
|
|
172
|
+
return self._instance.Forceupdate
|
|
173
|
+
@property
|
|
174
|
+
def lckd_caldon(self) -> bool:
|
|
175
|
+
return self._instance.LckdCaldon
|
|
176
|
+
@property
|
|
177
|
+
def fltr_debug1(self) -> int:
|
|
178
|
+
return self._instance.FltrDebug1
|
|
179
|
+
@property
|
|
180
|
+
def fltr_debug2(self) -> int:
|
|
181
|
+
return self._instance.FltrDebug2
|
|
182
|
+
@property
|
|
183
|
+
def fltr_debug3(self) -> int:
|
|
184
|
+
return self._instance.FltrDebug3
|
|
185
|
+
@property
|
|
186
|
+
def fltr_debug4(self) -> int:
|
|
187
|
+
return self._instance.FltrDebug4
|
|
188
|
+
@property
|
|
189
|
+
def fltr_func(self) -> int:
|
|
190
|
+
return self._instance.FltrFunc
|
|
191
|
+
@property
|
|
192
|
+
def frcebrkrel(self) -> int:
|
|
193
|
+
return self._instance.Frcebrkrel
|
|
194
|
+
@property
|
|
195
|
+
def hold2(self) -> int:
|
|
196
|
+
return self._instance.Hold2
|
|
197
|
+
@property
|
|
198
|
+
def hard_hold2(self) -> int:
|
|
199
|
+
return self._instance.HardHold2
|
|
200
|
+
@property
|
|
201
|
+
def qstop_ecc(self) -> bool:
|
|
202
|
+
return self._instance.QstopEcc
|
|
203
|
+
@property
|
|
204
|
+
def mpdt_enb(self) -> typing.List[bool]:
|
|
205
|
+
return self._instance.MpdtEnb
|
|
206
|
+
@property
|
|
207
|
+
def mpdt_start(self) -> typing.List[bool]:
|
|
208
|
+
return self._instance.MpdtStart
|
|
209
|
+
@property
|
|
210
|
+
def mpdt_status(self) -> typing.List[int]:
|
|
211
|
+
return self._instance.MpdtStatus
|
|
212
|
+
@property
|
|
213
|
+
def mpdt_done(self) -> typing.List[bool]:
|
|
214
|
+
return self._instance.MpdtDone
|
|
215
|
+
@property
|
|
216
|
+
def fanuc_internal_type_name(self) -> str:
|
|
217
|
+
return self._instance.FanucInternalTypeName
|
|
@@ -0,0 +1,97 @@
|
|
|
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 McrVariableType as mcr_variable_type
|
|
7
|
+
|
|
8
|
+
class McrVariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = mcr_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def enbl(self) -> bool:
|
|
16
|
+
return self._instance.Enbl
|
|
17
|
+
@property
|
|
18
|
+
def sfspd(self) -> bool:
|
|
19
|
+
return self._instance.Sfspd
|
|
20
|
+
@property
|
|
21
|
+
def brk_out_enb(self) -> bool:
|
|
22
|
+
return self._instance.BrkOutEnb
|
|
23
|
+
@property
|
|
24
|
+
def brk_output(self) -> typing.List[bool]:
|
|
25
|
+
return self._instance.BrkOutput
|
|
26
|
+
@property
|
|
27
|
+
def ot_release(self) -> bool:
|
|
28
|
+
return self._instance.OtRelease
|
|
29
|
+
@property
|
|
30
|
+
def dry_run(self) -> bool:
|
|
31
|
+
return self._instance.DryRun
|
|
32
|
+
@property
|
|
33
|
+
def genoverride(self) -> int:
|
|
34
|
+
return self._instance.Genoverride
|
|
35
|
+
@property
|
|
36
|
+
def fltr_debug(self) -> int:
|
|
37
|
+
return self._instance.FltrDebug
|
|
38
|
+
@property
|
|
39
|
+
def mmgr_debug(self) -> int:
|
|
40
|
+
return self._instance.MmgrDebug
|
|
41
|
+
@property
|
|
42
|
+
def mjog_debug(self) -> int:
|
|
43
|
+
return self._instance.MjogDebug
|
|
44
|
+
@property
|
|
45
|
+
def otf_prg_id(self) -> int:
|
|
46
|
+
return self._instance.OtfPrgId
|
|
47
|
+
@property
|
|
48
|
+
def otf_lin_no(self) -> int:
|
|
49
|
+
return self._instance.OtfLinNo
|
|
50
|
+
@property
|
|
51
|
+
def otf_ofst(self) -> int:
|
|
52
|
+
return self._instance.OtfOfst
|
|
53
|
+
@property
|
|
54
|
+
def spc_reset(self) -> bool:
|
|
55
|
+
return self._instance.SpcReset
|
|
56
|
+
@property
|
|
57
|
+
def mo_warn_enb(self) -> bool:
|
|
58
|
+
return self._instance.MoWarnEnb
|
|
59
|
+
@property
|
|
60
|
+
def cld_release(self) -> bool:
|
|
61
|
+
return self._instance.CldRelease
|
|
62
|
+
@property
|
|
63
|
+
def ovrdslow(self) -> int:
|
|
64
|
+
return self._instance.Ovrdslow
|
|
65
|
+
@property
|
|
66
|
+
def ovrdfast(self) -> int:
|
|
67
|
+
return self._instance.Ovrdfast
|
|
68
|
+
@property
|
|
69
|
+
def fast_rate(self) -> int:
|
|
70
|
+
return self._instance.FastRate
|
|
71
|
+
@property
|
|
72
|
+
def slow_rate(self) -> int:
|
|
73
|
+
return self._instance.SlowRate
|
|
74
|
+
@property
|
|
75
|
+
def slow_max(self) -> int:
|
|
76
|
+
return self._instance.SlowMax
|
|
77
|
+
@property
|
|
78
|
+
def chain_reset(self) -> bool:
|
|
79
|
+
return self._instance.ChainReset
|
|
80
|
+
@property
|
|
81
|
+
def shft_rst_pr(self) -> bool:
|
|
82
|
+
return self._instance.ShftRstPr
|
|
83
|
+
@property
|
|
84
|
+
def actoverride(self) -> int:
|
|
85
|
+
return self._instance.Actoverride
|
|
86
|
+
@property
|
|
87
|
+
def jogoverride(self) -> int:
|
|
88
|
+
return self._instance.Jogoverride
|
|
89
|
+
@property
|
|
90
|
+
def ovr_zero(self) -> bool:
|
|
91
|
+
return self._instance.OvrZero
|
|
92
|
+
@property
|
|
93
|
+
def ovrzero_enb(self) -> bool:
|
|
94
|
+
return self._instance.OvrzeroEnb
|
|
95
|
+
@property
|
|
96
|
+
def fanuc_internal_type_name(self) -> str:
|
|
97
|
+
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 McspGrpVariableType as mcsp_grp_variable_type
|
|
7
|
+
|
|
8
|
+
class McspGrpVariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = mcsp_grp_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def joglim_ovr(self) -> int:
|
|
16
|
+
return self._instance.JoglimOvr
|
|
17
|
+
@property
|
|
18
|
+
def trqlim_flg(self) -> bool:
|
|
19
|
+
return self._instance.TrqlimFlg
|
|
20
|
+
@property
|
|
21
|
+
def sv_ptlim(self) -> typing.List[int]:
|
|
22
|
+
return self._instance.SvPtlim
|
|
23
|
+
@property
|
|
24
|
+
def org_ptlim(self) -> typing.List[int]:
|
|
25
|
+
return self._instance.OrgPtlim
|
|
26
|
+
@property
|
|
27
|
+
def org_rclmc(self) -> typing.List[int]:
|
|
28
|
+
return self._instance.OrgRclmc
|
|
29
|
+
@property
|
|
30
|
+
def reserve1(self) -> int:
|
|
31
|
+
return self._instance.Reserve1
|
|
32
|
+
@property
|
|
33
|
+
def reserve2(self) -> int:
|
|
34
|
+
return self._instance.Reserve2
|
|
35
|
+
@property
|
|
36
|
+
def reserve3(self) -> typing.List[int]:
|
|
37
|
+
return self._instance.Reserve3
|
|
38
|
+
@property
|
|
39
|
+
def reserve4(self) -> typing.List[int]:
|
|
40
|
+
return self._instance.Reserve4
|
|
41
|
+
@property
|
|
42
|
+
def fanuc_internal_type_name(self) -> str:
|
|
43
|
+
return self._instance.FanucInternalTypeName
|
|
@@ -0,0 +1,55 @@
|
|
|
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 McspVariableType as mcsp_variable_type
|
|
7
|
+
|
|
8
|
+
class McspVariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = mcsp_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def cldpop_enb(self) -> bool:
|
|
16
|
+
return self._instance.CldpopEnb
|
|
17
|
+
@property
|
|
18
|
+
def trqlim_enb(self) -> bool:
|
|
19
|
+
return self._instance.TrqlimEnb
|
|
20
|
+
@property
|
|
21
|
+
def joglim_enb(self) -> bool:
|
|
22
|
+
return self._instance.JoglimEnb
|
|
23
|
+
@property
|
|
24
|
+
def cldpop_flg(self) -> bool:
|
|
25
|
+
return self._instance.CldpopFlg
|
|
26
|
+
@property
|
|
27
|
+
def cldgrp_flg(self) -> int:
|
|
28
|
+
return self._instance.CldgrpFlg
|
|
29
|
+
@property
|
|
30
|
+
def cldrel_flg(self) -> bool:
|
|
31
|
+
return self._instance.CldrelFlg
|
|
32
|
+
@property
|
|
33
|
+
def clr_cldflg(self) -> bool:
|
|
34
|
+
return self._instance.ClrCldflg
|
|
35
|
+
@property
|
|
36
|
+
def joglim_flg(self) -> bool:
|
|
37
|
+
return self._instance.JoglimFlg
|
|
38
|
+
@property
|
|
39
|
+
def orgjog_ovr(self) -> int:
|
|
40
|
+
return self._instance.OrgjogOvr
|
|
41
|
+
@property
|
|
42
|
+
def comp_sw(self) -> int:
|
|
43
|
+
return self._instance.CompSw
|
|
44
|
+
@property
|
|
45
|
+
def reserve1(self) -> int:
|
|
46
|
+
return self._instance.Reserve1
|
|
47
|
+
@property
|
|
48
|
+
def reserve2(self) -> int:
|
|
49
|
+
return self._instance.Reserve2
|
|
50
|
+
@property
|
|
51
|
+
def reserve3(self) -> int:
|
|
52
|
+
return self._instance.Reserve3
|
|
53
|
+
@property
|
|
54
|
+
def fanuc_internal_type_name(self) -> str:
|
|
55
|
+
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 MemoMemoVariableType as memo_memo_variable_type
|
|
7
|
+
|
|
8
|
+
class MemoMemoVariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = memo_memo_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def tpe_area(self) -> int:
|
|
16
|
+
return self._instance.TpeArea
|
|
17
|
+
@property
|
|
18
|
+
def tskwrk_area(self) -> int:
|
|
19
|
+
return self._instance.TskwrkArea
|
|
20
|
+
@property
|
|
21
|
+
def wrk_buf_siz(self) -> int:
|
|
22
|
+
return self._instance.WrkBufSiz
|
|
23
|
+
@property
|
|
24
|
+
def prc_tbl_siz(self) -> int:
|
|
25
|
+
return self._instance.PrcTblSiz
|
|
26
|
+
@property
|
|
27
|
+
def tmp_alc_sum(self) -> int:
|
|
28
|
+
return self._instance.TmpAlcSum
|
|
29
|
+
@property
|
|
30
|
+
def open_size(self) -> int:
|
|
31
|
+
return self._instance.OpenSize
|
|
32
|
+
@property
|
|
33
|
+
def revive_prog(self) -> str:
|
|
34
|
+
return self._instance.ReviveProg
|
|
35
|
+
@property
|
|
36
|
+
def mm_dsbl_msk(self) -> int:
|
|
37
|
+
return self._instance.MmDsblMsk
|
|
38
|
+
@property
|
|
39
|
+
def recv_mode(self) -> int:
|
|
40
|
+
return self._instance.RecvMode
|
|
41
|
+
@property
|
|
42
|
+
def fanuc_internal_type_name(self) -> str:
|
|
43
|
+
return self._instance.FanucInternalTypeName
|