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,56 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.ftp.internal.ftp_direct_file_handling import FtpDirectFileHandling
|
|
3
|
+
from underautomation.fanuc.ftp.internal.ftp_known_variable_files import FtpKnownVariableFiles
|
|
4
|
+
from underautomation.fanuc.ftp.diagnosis.summary_diagnosis import SummaryDiagnosis
|
|
5
|
+
from underautomation.fanuc.ftp.list.error_list import ErrorList
|
|
6
|
+
from underautomation.fanuc.ftp.diagnosis.current_position import CurrentPosition
|
|
7
|
+
from underautomation.fanuc.ftp.diagnosis.io_state import IOState
|
|
8
|
+
from underautomation.fanuc.ftp.diagnosis.safety_status import SafetyStatus
|
|
9
|
+
from underautomation.fanuc.ftp.diagnosis.program_states import ProgramStates
|
|
10
|
+
from underautomation.fanuc.ftp.variables.generic_variable_file import GenericVariableFile
|
|
11
|
+
from underautomation.fanuc.ftp.ftp_list_item import FtpListItem
|
|
12
|
+
from underautomation.fanuc.ftp.variables.variable_file_list import VariableFileList
|
|
13
|
+
import clr
|
|
14
|
+
import os
|
|
15
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
16
|
+
from UnderAutomation.Fanuc.Ftp.Internal import FtpClientBase as ftp_client_base
|
|
17
|
+
|
|
18
|
+
T = typing.TypeVar('T')
|
|
19
|
+
class FtpClientBase:
|
|
20
|
+
def __init__(self, _internal = 0):
|
|
21
|
+
if(_internal == 0):
|
|
22
|
+
self._instance = ftp_client_base()
|
|
23
|
+
else:
|
|
24
|
+
self._instance = _internal
|
|
25
|
+
def disconnect(self) -> None:
|
|
26
|
+
self._instance.Disconnect()
|
|
27
|
+
def get_summary_diagnostic(self) -> SummaryDiagnosis:
|
|
28
|
+
return SummaryDiagnosis(self._instance.GetSummaryDiagnostic())
|
|
29
|
+
def get_all_errors_list(self) -> ErrorList:
|
|
30
|
+
return ErrorList(self._instance.GetAllErrorsList())
|
|
31
|
+
def get_current_position(self) -> CurrentPosition:
|
|
32
|
+
return CurrentPosition(self._instance.GetCurrentPosition())
|
|
33
|
+
def get_io_state(self, progress: typing.Any=None) -> IOState:
|
|
34
|
+
return IOState(self._instance.GetIOState(progress))
|
|
35
|
+
def get_safety_status(self) -> SafetyStatus:
|
|
36
|
+
return SafetyStatus(self._instance.GetSafetyStatus())
|
|
37
|
+
def get_program_states(self) -> ProgramStates:
|
|
38
|
+
return ProgramStates(self._instance.GetProgramStates())
|
|
39
|
+
def get_variables_from_file(self, variableFileName: str) -> GenericVariableFile:
|
|
40
|
+
return GenericVariableFile(self._instance.GetVariablesFromFile(variableFileName))
|
|
41
|
+
def enumerate_variable_files(self) -> typing.List[FtpListItem]:
|
|
42
|
+
return [FtpListItem(x) for x in self._instance.EnumerateVariableFiles()]
|
|
43
|
+
def get_all_variables(self, progress: typing.Any=None) -> VariableFileList:
|
|
44
|
+
return VariableFileList(self._instance.GetAllVariables(progress))
|
|
45
|
+
@property
|
|
46
|
+
def ip(self) -> str:
|
|
47
|
+
return self._instance.IP
|
|
48
|
+
@property
|
|
49
|
+
def connected(self) -> bool:
|
|
50
|
+
return self._instance.Connected
|
|
51
|
+
@property
|
|
52
|
+
def direct_file_handling(self) -> FtpDirectFileHandling:
|
|
53
|
+
return FtpDirectFileHandling(self._instance.DirectFileHandling)
|
|
54
|
+
@property
|
|
55
|
+
def known_variable_files(self) -> FtpKnownVariableFiles:
|
|
56
|
+
return FtpKnownVariableFiles(self._instance.KnownVariableFiles)
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.ftp.internal.ftp_client_base import FtpClientBase
|
|
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.Internal import FtpClientInternal as ftp_client_internal
|
|
7
|
+
|
|
8
|
+
class FtpClientInternal(FtpClientBase):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = ftp_client_internal()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
import clr
|
|
3
|
+
import os
|
|
4
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
5
|
+
from UnderAutomation.Fanuc.Ftp.Internal import FtpConnectParametersBase as ftp_connect_parameters_base
|
|
6
|
+
|
|
7
|
+
class FtpConnectParametersBase:
|
|
8
|
+
def __init__(self, _internal = 0):
|
|
9
|
+
if(_internal == 0):
|
|
10
|
+
self._instance = ftp_connect_parameters_base()
|
|
11
|
+
else:
|
|
12
|
+
self._instance = _internal
|
|
13
|
+
@property
|
|
14
|
+
def ftp_user(self) -> str:
|
|
15
|
+
return self._instance.FtpUser
|
|
16
|
+
@ftp_user.setter
|
|
17
|
+
def ftp_user(self, value: str):
|
|
18
|
+
self._instance.FtpUser = value
|
|
19
|
+
@property
|
|
20
|
+
def ftp_password(self) -> str:
|
|
21
|
+
return self._instance.FtpPassword
|
|
22
|
+
@ftp_password.setter
|
|
23
|
+
def ftp_password(self, value: str):
|
|
24
|
+
self._instance.FtpPassword = value
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.ftp.ftp_list_item import FtpListItem
|
|
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.Internal import FtpDirectFileHandling as ftp_direct_file_handling
|
|
7
|
+
|
|
8
|
+
class FtpDirectFileHandling:
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = ftp_direct_file_handling()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
def upload_file_to_controller(self, localPath: str, remotePath: str, createRemoteDir: bool=False, progress: typing.Any=None) -> bool:
|
|
15
|
+
return self._instance.UploadFileToController(localPath, remotePath, createRemoteDir, progress)
|
|
16
|
+
def upload_files_to_controller(self, localPaths: typing.List[str], remoteDir: str, progress: typing.Any=None) -> typing.List[str]:
|
|
17
|
+
return self._instance.UploadFilesToController(localPaths, remoteDir, progress)
|
|
18
|
+
def download_file_from_controller(self, localPath: str, remotePath: str, progress: typing.Any=None) -> bool:
|
|
19
|
+
return self._instance.DownloadFileFromController(localPath, remotePath, progress)
|
|
20
|
+
def download_files_from_controller(self, localDir: str, remotePaths: typing.List[str], progress: typing.Any=None) -> typing.List[str]:
|
|
21
|
+
return self._instance.DownloadFilesFromController(localDir, remotePaths, progress)
|
|
22
|
+
def file_exists(self, path: str) -> bool:
|
|
23
|
+
return self._instance.FileExists(path)
|
|
24
|
+
def directory_exists(self, path: str) -> bool:
|
|
25
|
+
return self._instance.DirectoryExists(path)
|
|
26
|
+
def create_directory(self, path: str) -> None:
|
|
27
|
+
self._instance.CreateDirectory(path)
|
|
28
|
+
def delete_directory(self, path: str) -> None:
|
|
29
|
+
self._instance.DeleteDirectory(path)
|
|
30
|
+
def delete_file(self, path: str) -> None:
|
|
31
|
+
self._instance.DeleteFile(path)
|
|
32
|
+
def get_listing(self, path: str) -> typing.List[FtpListItem]:
|
|
33
|
+
return [FtpListItem(x) for x in self._instance.GetListing(path)]
|
|
34
|
+
def get_object_info(self, path: str) -> FtpListItem:
|
|
35
|
+
return FtpListItem(self._instance.GetObjectInfo(path))
|
|
36
|
+
def rename(self, path: str, dest: str) -> None:
|
|
37
|
+
self._instance.Rename(path, dest)
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.ftp.variables.aavmmain_file import AavmmainFile
|
|
3
|
+
from underautomation.fanuc.ftp.variables.bicsetup_file import BicsetupFile
|
|
4
|
+
from underautomation.fanuc.ftp.variables.cbparam_file import CbparamFile
|
|
5
|
+
from underautomation.fanuc.ftp.variables.cellio_file import CellioFile
|
|
6
|
+
from underautomation.fanuc.ftp.variables.comset_file import ComsetFile
|
|
7
|
+
from underautomation.fanuc.ftp.variables.diocfgsv_file import DiocfgsvFile
|
|
8
|
+
from underautomation.fanuc.ftp.variables.gemdata_file import GemdataFile
|
|
9
|
+
from underautomation.fanuc.ftp.variables.htcolrec_file import HtcolrecFile
|
|
10
|
+
from underautomation.fanuc.ftp.variables.httpkcl_file import HttpkclFile
|
|
11
|
+
from underautomation.fanuc.ftp.variables.irc_counter_file import IrcCounterFile
|
|
12
|
+
from underautomation.fanuc.ftp.variables.irc_msg_file import IrcMsgFile
|
|
13
|
+
from underautomation.fanuc.ftp.variables.irc_status_file import IrcStatusFile
|
|
14
|
+
from underautomation.fanuc.ftp.variables.irc_stlabel_file import IrcStlabelFile
|
|
15
|
+
from underautomation.fanuc.ftp.variables.klaction_file import KlactionFile
|
|
16
|
+
from underautomation.fanuc.ftp.variables.mixlogic_file import MixlogicFile
|
|
17
|
+
from underautomation.fanuc.ftp.variables.mtparam_file import MtparamFile
|
|
18
|
+
from underautomation.fanuc.ftp.variables.numreg_file import NumregFile
|
|
19
|
+
from underautomation.fanuc.ftp.variables.palreg_file import PalregFile
|
|
20
|
+
from underautomation.fanuc.ftp.variables.posreg_file import PosregFile
|
|
21
|
+
from underautomation.fanuc.ftp.variables.strreg_file import StrregFile
|
|
22
|
+
from underautomation.fanuc.ftp.variables.swiupdt_file import SwiupdtFile
|
|
23
|
+
from underautomation.fanuc.ftp.variables.sycldint_file import SycldintFile
|
|
24
|
+
from underautomation.fanuc.ftp.variables.symotn_file import SymotnFile
|
|
25
|
+
from underautomation.fanuc.ftp.variables.synosave_file import SynosaveFile
|
|
26
|
+
from underautomation.fanuc.ftp.variables.sysframe_file import SysframeFile
|
|
27
|
+
from underautomation.fanuc.ftp.variables.sysfsac_file import SysfsacFile
|
|
28
|
+
from underautomation.fanuc.ftp.variables.syshost_file import SyshostFile
|
|
29
|
+
from underautomation.fanuc.ftp.variables.sysmacro_file import SysmacroFile
|
|
30
|
+
from underautomation.fanuc.ftp.variables.sysmast_file import SysmastFile
|
|
31
|
+
from underautomation.fanuc.ftp.variables.syspass_file import SyspassFile
|
|
32
|
+
from underautomation.fanuc.ftp.variables.sysservo_file import SysservoFile
|
|
33
|
+
from underautomation.fanuc.ftp.variables.system_file import SystemFile
|
|
34
|
+
from underautomation.fanuc.ftp.variables.sysuif_file import SysuifFile
|
|
35
|
+
from underautomation.fanuc.ftp.variables.tpsnap_file import TpsnapFile
|
|
36
|
+
from underautomation.fanuc.ftp.variables.vcmrinit_file import VcmrinitFile
|
|
37
|
+
import clr
|
|
38
|
+
import os
|
|
39
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
40
|
+
from UnderAutomation.Fanuc.Ftp.Internal import FtpKnownVariableFiles as ftp_known_variable_files
|
|
41
|
+
|
|
42
|
+
class FtpKnownVariableFiles:
|
|
43
|
+
def __init__(self, _internal = 0):
|
|
44
|
+
if(_internal == 0):
|
|
45
|
+
self._instance = ftp_known_variable_files()
|
|
46
|
+
else:
|
|
47
|
+
self._instance = _internal
|
|
48
|
+
def get_aavmmain_file(self) -> AavmmainFile:
|
|
49
|
+
return AavmmainFile(self._instance.GetAavmmainFile())
|
|
50
|
+
def get_bicsetup_file(self) -> BicsetupFile:
|
|
51
|
+
return BicsetupFile(self._instance.GetBicsetupFile())
|
|
52
|
+
def get_cbparam_file(self) -> CbparamFile:
|
|
53
|
+
return CbparamFile(self._instance.GetCbparamFile())
|
|
54
|
+
def get_cellio_file(self) -> CellioFile:
|
|
55
|
+
return CellioFile(self._instance.GetCellioFile())
|
|
56
|
+
def get_comset_file(self) -> ComsetFile:
|
|
57
|
+
return ComsetFile(self._instance.GetComsetFile())
|
|
58
|
+
def get_diocfgsv_file(self) -> DiocfgsvFile:
|
|
59
|
+
return DiocfgsvFile(self._instance.GetDiocfgsvFile())
|
|
60
|
+
def get_gemdata_file(self) -> GemdataFile:
|
|
61
|
+
return GemdataFile(self._instance.GetGemdataFile())
|
|
62
|
+
def get_htcolrec_file(self) -> HtcolrecFile:
|
|
63
|
+
return HtcolrecFile(self._instance.GetHtcolrecFile())
|
|
64
|
+
def get_httpkcl_file(self) -> HttpkclFile:
|
|
65
|
+
return HttpkclFile(self._instance.GetHttpkclFile())
|
|
66
|
+
def get_irc_counter_file(self) -> IrcCounterFile:
|
|
67
|
+
return IrcCounterFile(self._instance.GetIrcCounterFile())
|
|
68
|
+
def get_irc_msg_file(self) -> IrcMsgFile:
|
|
69
|
+
return IrcMsgFile(self._instance.GetIrcMsgFile())
|
|
70
|
+
def get_irc_status_file(self) -> IrcStatusFile:
|
|
71
|
+
return IrcStatusFile(self._instance.GetIrcStatusFile())
|
|
72
|
+
def get_irc_stlabel_file(self) -> IrcStlabelFile:
|
|
73
|
+
return IrcStlabelFile(self._instance.GetIrcStlabelFile())
|
|
74
|
+
def get_klaction_file(self) -> KlactionFile:
|
|
75
|
+
return KlactionFile(self._instance.GetKlactionFile())
|
|
76
|
+
def get_mixlogic_file(self) -> MixlogicFile:
|
|
77
|
+
return MixlogicFile(self._instance.GetMixlogicFile())
|
|
78
|
+
def get_mtparam_file(self) -> MtparamFile:
|
|
79
|
+
return MtparamFile(self._instance.GetMtparamFile())
|
|
80
|
+
def get_numreg_file(self) -> NumregFile:
|
|
81
|
+
return NumregFile(self._instance.GetNumregFile())
|
|
82
|
+
def get_palreg_file(self) -> PalregFile:
|
|
83
|
+
return PalregFile(self._instance.GetPalregFile())
|
|
84
|
+
def get_posreg_file(self) -> PosregFile:
|
|
85
|
+
return PosregFile(self._instance.GetPosregFile())
|
|
86
|
+
def get_strreg_file(self) -> StrregFile:
|
|
87
|
+
return StrregFile(self._instance.GetStrregFile())
|
|
88
|
+
def get_swiupdt_file(self) -> SwiupdtFile:
|
|
89
|
+
return SwiupdtFile(self._instance.GetSwiupdtFile())
|
|
90
|
+
def get_sycldint_file(self) -> SycldintFile:
|
|
91
|
+
return SycldintFile(self._instance.GetSycldintFile())
|
|
92
|
+
def get_symotn_file(self) -> SymotnFile:
|
|
93
|
+
return SymotnFile(self._instance.GetSymotnFile())
|
|
94
|
+
def get_synosave_file(self) -> SynosaveFile:
|
|
95
|
+
return SynosaveFile(self._instance.GetSynosaveFile())
|
|
96
|
+
def get_sysframe_file(self) -> SysframeFile:
|
|
97
|
+
return SysframeFile(self._instance.GetSysframeFile())
|
|
98
|
+
def get_sysfsac_file(self) -> SysfsacFile:
|
|
99
|
+
return SysfsacFile(self._instance.GetSysfsacFile())
|
|
100
|
+
def get_syshost_file(self) -> SyshostFile:
|
|
101
|
+
return SyshostFile(self._instance.GetSyshostFile())
|
|
102
|
+
def get_sysmacro_file(self) -> SysmacroFile:
|
|
103
|
+
return SysmacroFile(self._instance.GetSysmacroFile())
|
|
104
|
+
def get_sysmast_file(self) -> SysmastFile:
|
|
105
|
+
return SysmastFile(self._instance.GetSysmastFile())
|
|
106
|
+
def get_syspass_file(self) -> SyspassFile:
|
|
107
|
+
return SyspassFile(self._instance.GetSyspassFile())
|
|
108
|
+
def get_sysservo_file(self) -> SysservoFile:
|
|
109
|
+
return SysservoFile(self._instance.GetSysservoFile())
|
|
110
|
+
def get_system_file(self) -> SystemFile:
|
|
111
|
+
return SystemFile(self._instance.GetSystemFile())
|
|
112
|
+
def get_sysuif_file(self) -> SysuifFile:
|
|
113
|
+
return SysuifFile(self._instance.GetSysuifFile())
|
|
114
|
+
def get_tpsnap_file(self) -> TpsnapFile:
|
|
115
|
+
return TpsnapFile(self._instance.GetTpsnapFile())
|
|
116
|
+
def get_vcmrinit_file(self) -> VcmrinitFile:
|
|
117
|
+
return VcmrinitFile(self._instance.GetVcmrinitFile())
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
import clr
|
|
3
|
+
import os
|
|
4
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
5
|
+
from UnderAutomation.Fanuc.Ftp.Internal import IFanucContent as i_fanuc_content
|
|
6
|
+
|
|
7
|
+
class IFanucContent:
|
|
8
|
+
def __init__(self, _internal = 0):
|
|
9
|
+
if(_internal == 0):
|
|
10
|
+
self._instance = i_fanuc_content()
|
|
11
|
+
else:
|
|
12
|
+
self._instance = _internal
|
|
13
|
+
@property
|
|
14
|
+
def name(self) -> str:
|
|
15
|
+
return self._instance.Name
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
import clr
|
|
3
|
+
import os
|
|
4
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
5
|
+
from UnderAutomation.Fanuc.Ftp.Internal import IFileReader as i_file_reader
|
|
6
|
+
|
|
7
|
+
class IFileReader:
|
|
8
|
+
def __init__(self, _internal = 0):
|
|
9
|
+
if(_internal == 0):
|
|
10
|
+
self._instance = i_file_reader()
|
|
11
|
+
else:
|
|
12
|
+
self._instance = _internal
|
|
13
|
+
@property
|
|
14
|
+
def file_name(self) -> str:
|
|
15
|
+
return self._instance.FileName
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.ftp.internal.i_file_reader import IFileReader
|
|
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.Internal import IFileReader as i_file_reader_1
|
|
7
|
+
|
|
8
|
+
T = typing.TypeVar('T')
|
|
9
|
+
class IFileReader1(IFileReader, typing.Generic[T]):
|
|
10
|
+
def __init__(self, _internal = 0):
|
|
11
|
+
if(_internal == 0):
|
|
12
|
+
self._instance = i_file_reader_1()
|
|
13
|
+
else:
|
|
14
|
+
self._instance = _internal
|
|
15
|
+
def read_file(self, fileStream: typing.Any, fileName: str) -> T:
|
|
16
|
+
return self._instance.ReadFile(fileStream, fileName)
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
import clr
|
|
3
|
+
import os
|
|
4
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
5
|
+
from UnderAutomation.Fanuc.Ftp.Internal import SectionParser as section_parser
|
|
6
|
+
|
|
7
|
+
class SectionParser:
|
|
8
|
+
def __init__(self, _internal = 0):
|
|
9
|
+
if(_internal == 0):
|
|
10
|
+
self._instance = section_parser()
|
|
11
|
+
else:
|
|
12
|
+
self._instance = _internal
|
|
13
|
+
def can_handle_section(self, line: str) -> bool:
|
|
14
|
+
return self._instance.CanHandleSection(line)
|
|
15
|
+
def parse_line(self, line: str) -> None:
|
|
16
|
+
self._instance.ParseLine(line)
|
|
17
|
+
def after_parse(self) -> None:
|
|
18
|
+
self._instance.AfterParse()
|
|
19
|
+
@property
|
|
20
|
+
def section_start(self) -> str:
|
|
21
|
+
return self._instance.SectionStart
|
|
22
|
+
@property
|
|
23
|
+
def end_of_file(self) -> bool:
|
|
24
|
+
return self._instance.EndOfFile
|
|
25
|
+
@end_of_file.setter
|
|
26
|
+
def end_of_file(self, value: bool):
|
|
27
|
+
self._instance.EndOfFile = value
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.ftp.internal.section_parser import SectionParser
|
|
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.Internal import SectionParser as section_parser_1
|
|
7
|
+
|
|
8
|
+
T = typing.TypeVar('T')
|
|
9
|
+
class SectionParser1(SectionParser, typing.Generic[T]):
|
|
10
|
+
def __init__(self, _internal = 0):
|
|
11
|
+
if(_internal == 0):
|
|
12
|
+
self._instance = section_parser_1()
|
|
13
|
+
else:
|
|
14
|
+
self._instance = _internal
|
|
15
|
+
@property
|
|
16
|
+
def section(self) -> T:
|
|
17
|
+
return self._instance.Section
|
|
File without changes
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
import clr
|
|
3
|
+
import os
|
|
4
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
5
|
+
from UnderAutomation.Fanuc.Ftp.List import ErrallSectionItem as errall_section_item
|
|
6
|
+
|
|
7
|
+
class ErrallSectionItem:
|
|
8
|
+
def __init__(self, _internal = 0):
|
|
9
|
+
if(_internal == 0):
|
|
10
|
+
self._instance = errall_section_item()
|
|
11
|
+
else:
|
|
12
|
+
self._instance = _internal
|
|
13
|
+
def __repr__(self):
|
|
14
|
+
return self._instance.ToString()
|
|
15
|
+
@property
|
|
16
|
+
def is_reset(self) -> bool:
|
|
17
|
+
return self._instance.IsReset
|
|
18
|
+
@property
|
|
19
|
+
def id(self) -> int:
|
|
20
|
+
return self._instance.Id
|
|
21
|
+
@id.setter
|
|
22
|
+
def id(self, value: int):
|
|
23
|
+
self._instance.Id = value
|
|
24
|
+
@property
|
|
25
|
+
def text(self) -> str:
|
|
26
|
+
return self._instance.Text
|
|
27
|
+
@text.setter
|
|
28
|
+
def text(self, value: str):
|
|
29
|
+
self._instance.Text = value
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.ftp.internal.i_fanuc_content import IFanucContent
|
|
3
|
+
from underautomation.fanuc.ftp.list.errall_section_item import ErrallSectionItem
|
|
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.List import ErrorList as error_list
|
|
8
|
+
|
|
9
|
+
class ErrorList(IFanucContent):
|
|
10
|
+
def __init__(self, _internal = 0):
|
|
11
|
+
if(_internal == 0):
|
|
12
|
+
self._instance = error_list()
|
|
13
|
+
else:
|
|
14
|
+
self._instance = _internal
|
|
15
|
+
@property
|
|
16
|
+
def name(self) -> str:
|
|
17
|
+
return self._instance.Name
|
|
18
|
+
@property
|
|
19
|
+
def items(self) -> typing.List[ErrallSectionItem]:
|
|
20
|
+
return [ErrallSectionItem(x) for x in self._instance.Items]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.ftp.list.error_list import ErrorList
|
|
3
|
+
from underautomation.fanuc.ftp.internal.file_reader_1 import FileReader1
|
|
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.List import ErrorListReader as error_list_reader
|
|
8
|
+
|
|
9
|
+
class ErrorListReader(FileReader1[ErrorList]):
|
|
10
|
+
def __init__(self, _internal = 0):
|
|
11
|
+
if(_internal == 0):
|
|
12
|
+
self._instance = error_list_reader()
|
|
13
|
+
else:
|
|
14
|
+
self._instance = _internal
|
|
15
|
+
def read_file(self, fileStream: typing.Any, fileName: str="None") -> ErrorList:
|
|
16
|
+
return ErrorList(self._instance.ReadFile(fileStream, fileName))
|
|
File without changes
|
|
@@ -0,0 +1,211 @@
|
|
|
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 AavmGrpVariableType as aavm_grp_variable_type
|
|
7
|
+
|
|
8
|
+
class AavmGrpVariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = aavm_grp_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def enabled(self) -> bool:
|
|
16
|
+
return self._instance.Enabled
|
|
17
|
+
@property
|
|
18
|
+
def method_sel(self) -> int:
|
|
19
|
+
return self._instance.MethodSel
|
|
20
|
+
@property
|
|
21
|
+
def focal_dist(self) -> float:
|
|
22
|
+
return self._instance.FocalDist
|
|
23
|
+
@property
|
|
24
|
+
def gd_spacing(self) -> float:
|
|
25
|
+
return self._instance.GdSpacing
|
|
26
|
+
@property
|
|
27
|
+
def offset_p(self) -> float:
|
|
28
|
+
return self._instance.OffsetP
|
|
29
|
+
@property
|
|
30
|
+
def vtcp_des(self) -> typing.List[float]:
|
|
31
|
+
return self._instance.VtcpDes
|
|
32
|
+
@property
|
|
33
|
+
def psshfenb(self) -> bool:
|
|
34
|
+
return self._instance.Psshfenb
|
|
35
|
+
@property
|
|
36
|
+
def ps_shift(self) -> typing.List[float]:
|
|
37
|
+
return self._instance.PsShift
|
|
38
|
+
@property
|
|
39
|
+
def ps_shiftj(self) -> float:
|
|
40
|
+
return self._instance.PsShiftj
|
|
41
|
+
@property
|
|
42
|
+
def tagt_des(self) -> typing.List[float]:
|
|
43
|
+
return self._instance.TagtDes
|
|
44
|
+
@property
|
|
45
|
+
def tagt_des2(self) -> typing.List[float]:
|
|
46
|
+
return self._instance.TagtDes2
|
|
47
|
+
@property
|
|
48
|
+
def mast_axis(self) -> typing.List[float]:
|
|
49
|
+
return self._instance.MastAxis
|
|
50
|
+
@property
|
|
51
|
+
def mast_axis2(self) -> typing.List[float]:
|
|
52
|
+
return self._instance.MastAxis2
|
|
53
|
+
@property
|
|
54
|
+
def vfb_mat(self) -> typing.List[float]:
|
|
55
|
+
return self._instance.VfbMat
|
|
56
|
+
@property
|
|
57
|
+
def num_pos(self) -> int:
|
|
58
|
+
return self._instance.NumPos
|
|
59
|
+
@property
|
|
60
|
+
def num_pos2(self) -> int:
|
|
61
|
+
return self._instance.NumPos2
|
|
62
|
+
@property
|
|
63
|
+
def mst_pos_x(self) -> typing.List[float]:
|
|
64
|
+
return self._instance.MstPosX
|
|
65
|
+
@property
|
|
66
|
+
def mst_pos_y(self) -> typing.List[float]:
|
|
67
|
+
return self._instance.MstPosY
|
|
68
|
+
@property
|
|
69
|
+
def mst_pos_z(self) -> typing.List[float]:
|
|
70
|
+
return self._instance.MstPosZ
|
|
71
|
+
@property
|
|
72
|
+
def mst_pos_w(self) -> typing.List[float]:
|
|
73
|
+
return self._instance.MstPosW
|
|
74
|
+
@property
|
|
75
|
+
def mst_pos_p(self) -> typing.List[float]:
|
|
76
|
+
return self._instance.MstPosP
|
|
77
|
+
@property
|
|
78
|
+
def mst_pos_r(self) -> typing.List[float]:
|
|
79
|
+
return self._instance.MstPosR
|
|
80
|
+
@property
|
|
81
|
+
def lim_res_er(self) -> float:
|
|
82
|
+
return self._instance.LimResEr
|
|
83
|
+
@property
|
|
84
|
+
def lim_vtcp_x(self) -> float:
|
|
85
|
+
return self._instance.LimVtcpX
|
|
86
|
+
@property
|
|
87
|
+
def lim_vtcp_z(self) -> float:
|
|
88
|
+
return self._instance.LimVtcpZ
|
|
89
|
+
@property
|
|
90
|
+
def lim_tagt_x(self) -> float:
|
|
91
|
+
return self._instance.LimTagtX
|
|
92
|
+
@property
|
|
93
|
+
def lim_tagt_z(self) -> float:
|
|
94
|
+
return self._instance.LimTagtZ
|
|
95
|
+
@property
|
|
96
|
+
def vs_speed(self) -> float:
|
|
97
|
+
return self._instance.VsSpeed
|
|
98
|
+
@property
|
|
99
|
+
def max_rdelay(self) -> int:
|
|
100
|
+
return self._instance.MaxRdelay
|
|
101
|
+
@property
|
|
102
|
+
def vfa_tol1p(self) -> float:
|
|
103
|
+
return self._instance.VfaTol1p
|
|
104
|
+
@property
|
|
105
|
+
def vfd_tol(self) -> float:
|
|
106
|
+
return self._instance.VfdTol
|
|
107
|
+
@property
|
|
108
|
+
def vfd_tol1p(self) -> float:
|
|
109
|
+
return self._instance.VfdTol1p
|
|
110
|
+
@property
|
|
111
|
+
def backlash(self) -> float:
|
|
112
|
+
return self._instance.Backlash
|
|
113
|
+
@property
|
|
114
|
+
def limit_dx(self) -> float:
|
|
115
|
+
return self._instance.LimitDx
|
|
116
|
+
@property
|
|
117
|
+
def limit_dy(self) -> float:
|
|
118
|
+
return self._instance.LimitDy
|
|
119
|
+
@property
|
|
120
|
+
def limit_dz(self) -> float:
|
|
121
|
+
return self._instance.LimitDz
|
|
122
|
+
@property
|
|
123
|
+
def limit_dw(self) -> float:
|
|
124
|
+
return self._instance.LimitDw
|
|
125
|
+
@property
|
|
126
|
+
def limit_dp(self) -> float:
|
|
127
|
+
return self._instance.LimitDp
|
|
128
|
+
@property
|
|
129
|
+
def limit_dr(self) -> float:
|
|
130
|
+
return self._instance.LimitDr
|
|
131
|
+
@property
|
|
132
|
+
def trgvt(self) -> float:
|
|
133
|
+
return self._instance.Trgvt
|
|
134
|
+
@property
|
|
135
|
+
def trghz(self) -> float:
|
|
136
|
+
return self._instance.Trghz
|
|
137
|
+
@property
|
|
138
|
+
def trgdist(self) -> float:
|
|
139
|
+
return self._instance.Trgdist
|
|
140
|
+
@property
|
|
141
|
+
def trgw(self) -> float:
|
|
142
|
+
return self._instance.Trgw
|
|
143
|
+
@property
|
|
144
|
+
def trgp(self) -> float:
|
|
145
|
+
return self._instance.Trgp
|
|
146
|
+
@property
|
|
147
|
+
def trgr(self) -> float:
|
|
148
|
+
return self._instance.Trgr
|
|
149
|
+
@property
|
|
150
|
+
def lens_cent_x(self) -> float:
|
|
151
|
+
return self._instance.LensCentX
|
|
152
|
+
@property
|
|
153
|
+
def lens_cent_y(self) -> float:
|
|
154
|
+
return self._instance.LensCentY
|
|
155
|
+
@property
|
|
156
|
+
def distort(self) -> typing.List[float]:
|
|
157
|
+
return self._instance.Distort
|
|
158
|
+
@property
|
|
159
|
+
def camclbdate(self) -> str:
|
|
160
|
+
return self._instance.Camclbdate
|
|
161
|
+
@property
|
|
162
|
+
def camera_name(self) -> str:
|
|
163
|
+
return self._instance.CameraName
|
|
164
|
+
@property
|
|
165
|
+
def tool_type(self) -> int:
|
|
166
|
+
return self._instance.ToolType
|
|
167
|
+
@property
|
|
168
|
+
def camera_type(self) -> int:
|
|
169
|
+
return self._instance.CameraType
|
|
170
|
+
@property
|
|
171
|
+
def exposure(self) -> int:
|
|
172
|
+
return self._instance.Exposure
|
|
173
|
+
@property
|
|
174
|
+
def num_mul_exp(self) -> int:
|
|
175
|
+
return self._instance.NumMulExp
|
|
176
|
+
@property
|
|
177
|
+
def num_dovis(self) -> int:
|
|
178
|
+
return self._instance.NumDovis
|
|
179
|
+
@property
|
|
180
|
+
def cmp_gc_w(self) -> float:
|
|
181
|
+
return self._instance.CmpGcW
|
|
182
|
+
@property
|
|
183
|
+
def cmp_gc_p(self) -> float:
|
|
184
|
+
return self._instance.CmpGcP
|
|
185
|
+
@property
|
|
186
|
+
def user_enb(self) -> bool:
|
|
187
|
+
return self._instance.UserEnb
|
|
188
|
+
@property
|
|
189
|
+
def lim_res_er2(self) -> float:
|
|
190
|
+
return self._instance.LimResEr2
|
|
191
|
+
@property
|
|
192
|
+
def lim_vtcp_x2(self) -> float:
|
|
193
|
+
return self._instance.LimVtcpX2
|
|
194
|
+
@property
|
|
195
|
+
def lim_vtcp_z2(self) -> float:
|
|
196
|
+
return self._instance.LimVtcpZ2
|
|
197
|
+
@property
|
|
198
|
+
def pre_ang(self) -> float:
|
|
199
|
+
return self._instance.PreAng
|
|
200
|
+
@property
|
|
201
|
+
def pre_ang_j7(self) -> typing.List[float]:
|
|
202
|
+
return self._instance.PreAngJ7
|
|
203
|
+
@property
|
|
204
|
+
def mst_pos_j7(self) -> typing.List[float]:
|
|
205
|
+
return self._instance.MstPosJ7
|
|
206
|
+
@property
|
|
207
|
+
def trim_ratio(self) -> float:
|
|
208
|
+
return self._instance.TrimRatio
|
|
209
|
+
@property
|
|
210
|
+
def fanuc_internal_type_name(self) -> str:
|
|
211
|
+
return self._instance.FanucInternalTypeName
|