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
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import clr
|
|
2
|
+
import os
|
|
3
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
4
|
+
from UnderAutomation.Fanuc.Common import ArmFrontBack as arm_front_back
|
|
5
|
+
|
|
6
|
+
class ArmFrontBack(int):
|
|
7
|
+
Unknown = arm_front_back.Unknown
|
|
8
|
+
Front = arm_front_back.Front
|
|
9
|
+
Back = arm_front_back.Back
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import clr
|
|
2
|
+
import os
|
|
3
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
4
|
+
from UnderAutomation.Fanuc.Common import ArmLeftRight as arm_left_right
|
|
5
|
+
|
|
6
|
+
class ArmLeftRight(int):
|
|
7
|
+
Unknown = arm_left_right.Unknown
|
|
8
|
+
Left = arm_left_right.Left
|
|
9
|
+
Right = arm_left_right.Right
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import clr
|
|
2
|
+
import os
|
|
3
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
4
|
+
from UnderAutomation.Fanuc.Common import ArmUpDown as arm_up_down
|
|
5
|
+
|
|
6
|
+
class ArmUpDown(int):
|
|
7
|
+
Unknown = arm_up_down.Unknown
|
|
8
|
+
Up = arm_up_down.Up
|
|
9
|
+
Down = arm_up_down.Down
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.common.configuration import Configuration
|
|
3
|
+
from underautomation.fanuc.common.xyz_position import XYZPosition
|
|
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.Common import CartesianPosition as cartesian_position
|
|
8
|
+
|
|
9
|
+
class CartesianPosition(XYZPosition):
|
|
10
|
+
def __init__(self, x: float, y: float, z: float, w: float, p: float, r: float, configuration: Configuration, _internal = 0):
|
|
11
|
+
if(_internal == 0):
|
|
12
|
+
self._instance = cartesian_position(x, y, z, w, p, r, configuration)
|
|
13
|
+
else:
|
|
14
|
+
self._instance = _internal
|
|
15
|
+
def __repr__(self):
|
|
16
|
+
return self._instance.ToString()
|
|
17
|
+
@property
|
|
18
|
+
def w(self) -> float:
|
|
19
|
+
return self._instance.W
|
|
20
|
+
@w.setter
|
|
21
|
+
def w(self, value: float):
|
|
22
|
+
self._instance.W = value
|
|
23
|
+
@property
|
|
24
|
+
def p(self) -> float:
|
|
25
|
+
return self._instance.P
|
|
26
|
+
@p.setter
|
|
27
|
+
def p(self, value: float):
|
|
28
|
+
self._instance.P = value
|
|
29
|
+
@property
|
|
30
|
+
def r(self) -> float:
|
|
31
|
+
return self._instance.R
|
|
32
|
+
@r.setter
|
|
33
|
+
def r(self, value: float):
|
|
34
|
+
self._instance.R = value
|
|
35
|
+
@property
|
|
36
|
+
def configuration(self) -> Configuration:
|
|
37
|
+
return Configuration(None, None, None, None, None, None, None, self._instance.Configuration)
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.common.cartesian_position import CartesianPosition
|
|
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.Common import CartesianPositionWithTool as cartesian_position_with_tool
|
|
7
|
+
|
|
8
|
+
class CartesianPositionWithTool(CartesianPosition):
|
|
9
|
+
def __init__(self, x: float, y: float, z: float, w: float, p: float, r: float, tool: int, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = cartesian_position_with_tool(x, y, z, w, p, r, tool)
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
def __repr__(self):
|
|
15
|
+
return self._instance.ToString()
|
|
16
|
+
@property
|
|
17
|
+
def tool(self) -> int:
|
|
18
|
+
return self._instance.Tool
|
|
19
|
+
@tool.setter
|
|
20
|
+
def tool(self, value: int):
|
|
21
|
+
self._instance.Tool = value
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.common.cartesian_position_with_tool import CartesianPositionWithTool
|
|
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.Common import CartesianPositionWithUserFrame as cartesian_position_with_user_frame
|
|
7
|
+
|
|
8
|
+
class CartesianPositionWithUserFrame(CartesianPositionWithTool):
|
|
9
|
+
def __init__(self, x: float, y: float, z: float, w: float, p: float, r: float, tool: int, frame: int, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = cartesian_position_with_user_frame(x, y, z, w, p, r, tool, frame)
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
def __repr__(self):
|
|
15
|
+
return self._instance.ToString()
|
|
16
|
+
@property
|
|
17
|
+
def frame(self) -> int:
|
|
18
|
+
return self._instance.Frame
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.common.wrist_flip import WristFlip
|
|
3
|
+
from underautomation.fanuc.common.arm_up_down import ArmUpDown
|
|
4
|
+
from underautomation.fanuc.common.arm_left_right import ArmLeftRight
|
|
5
|
+
from underautomation.fanuc.common.arm_front_back import ArmFrontBack
|
|
6
|
+
import clr
|
|
7
|
+
import os
|
|
8
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
9
|
+
from UnderAutomation.Fanuc.Common import Configuration as configuration
|
|
10
|
+
|
|
11
|
+
class Configuration:
|
|
12
|
+
def __init__(self, wristFlip: WristFlip, armUpDown: ArmUpDown, armLeftRight: ArmLeftRight, armFrontBack: ArmFrontBack, turnAxis1: int, turnAxis2: int, turnAxis3: int, _internal = 0):
|
|
13
|
+
if(_internal == 0):
|
|
14
|
+
self._instance = configuration(wristFlip, armUpDown, armLeftRight, armFrontBack, turnAxis1, turnAxis2, turnAxis3)
|
|
15
|
+
else:
|
|
16
|
+
self._instance = _internal
|
|
17
|
+
def __repr__(self):
|
|
18
|
+
return self._instance.ToString()
|
|
19
|
+
def from_string(self, value: str) -> None:
|
|
20
|
+
self._instance.FromString(value)
|
|
21
|
+
@property
|
|
22
|
+
def wrist_flip(self) -> WristFlip:
|
|
23
|
+
return WristFlip(self._instance.WristFlip)
|
|
24
|
+
@wrist_flip.setter
|
|
25
|
+
def wrist_flip(self, value: WristFlip):
|
|
26
|
+
self._instance.WristFlip = value
|
|
27
|
+
@property
|
|
28
|
+
def arm_up_down(self) -> ArmUpDown:
|
|
29
|
+
return ArmUpDown(self._instance.ArmUpDown)
|
|
30
|
+
@arm_up_down.setter
|
|
31
|
+
def arm_up_down(self, value: ArmUpDown):
|
|
32
|
+
self._instance.ArmUpDown = value
|
|
33
|
+
@property
|
|
34
|
+
def arm_left_right(self) -> ArmLeftRight:
|
|
35
|
+
return ArmLeftRight(self._instance.ArmLeftRight)
|
|
36
|
+
@arm_left_right.setter
|
|
37
|
+
def arm_left_right(self, value: ArmLeftRight):
|
|
38
|
+
self._instance.ArmLeftRight = value
|
|
39
|
+
@property
|
|
40
|
+
def arm_front_back(self) -> ArmFrontBack:
|
|
41
|
+
return ArmFrontBack(self._instance.ArmFrontBack)
|
|
42
|
+
@arm_front_back.setter
|
|
43
|
+
def arm_front_back(self, value: ArmFrontBack):
|
|
44
|
+
self._instance.ArmFrontBack = value
|
|
45
|
+
@property
|
|
46
|
+
def turn_axis1(self) -> int:
|
|
47
|
+
return self._instance.TurnAxis1
|
|
48
|
+
@turn_axis1.setter
|
|
49
|
+
def turn_axis1(self, value: int):
|
|
50
|
+
self._instance.TurnAxis1 = value
|
|
51
|
+
@property
|
|
52
|
+
def turn_axis2(self) -> int:
|
|
53
|
+
return self._instance.TurnAxis2
|
|
54
|
+
@turn_axis2.setter
|
|
55
|
+
def turn_axis2(self, value: int):
|
|
56
|
+
self._instance.TurnAxis2 = value
|
|
57
|
+
@property
|
|
58
|
+
def turn_axis3(self) -> int:
|
|
59
|
+
return self._instance.TurnAxis3
|
|
60
|
+
@turn_axis3.setter
|
|
61
|
+
def turn_axis3(self, value: int):
|
|
62
|
+
self._instance.TurnAxis3 = value
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import clr
|
|
2
|
+
import os
|
|
3
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
4
|
+
from UnderAutomation.Fanuc.Common import DigitalPorts as digital_ports
|
|
5
|
+
|
|
6
|
+
class DigitalPorts(int):
|
|
7
|
+
DIN = digital_ports.DIN
|
|
8
|
+
DOUT = digital_ports.DOUT
|
|
9
|
+
UI = digital_ports.UI
|
|
10
|
+
UO = digital_ports.UO
|
|
11
|
+
SI = digital_ports.SI
|
|
12
|
+
SO = digital_ports.SO
|
|
13
|
+
RI = digital_ports.RI
|
|
14
|
+
RO = digital_ports.RO
|
|
15
|
+
FLG = digital_ports.FLG
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.common.cartesian_position import CartesianPosition
|
|
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.Common import ExtendedCartesianPosition as extended_cartesian_position
|
|
7
|
+
|
|
8
|
+
class ExtendedCartesianPosition(CartesianPosition):
|
|
9
|
+
def __init__(self, x: float, y: float, z: float, w: float, p: float, r: float, e1: float, e2: float, e3: float, t4: int, t5: int, t6: int, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = extended_cartesian_position(x, y, z, w, p, r, e1, e2, e3, t4, t5, t6)
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def e1(self) -> float:
|
|
16
|
+
return self._instance.E1
|
|
17
|
+
@e1.setter
|
|
18
|
+
def e1(self, value: float):
|
|
19
|
+
self._instance.E1 = value
|
|
20
|
+
@property
|
|
21
|
+
def e2(self) -> float:
|
|
22
|
+
return self._instance.E2
|
|
23
|
+
@e2.setter
|
|
24
|
+
def e2(self, value: float):
|
|
25
|
+
self._instance.E2 = value
|
|
26
|
+
@property
|
|
27
|
+
def e3(self) -> float:
|
|
28
|
+
return self._instance.E3
|
|
29
|
+
@e3.setter
|
|
30
|
+
def e3(self, value: float):
|
|
31
|
+
self._instance.E3 = value
|
|
32
|
+
@property
|
|
33
|
+
def t4(self) -> int:
|
|
34
|
+
return self._instance.T4
|
|
35
|
+
@t4.setter
|
|
36
|
+
def t4(self, value: int):
|
|
37
|
+
self._instance.T4 = value
|
|
38
|
+
@property
|
|
39
|
+
def t5(self) -> int:
|
|
40
|
+
return self._instance.T5
|
|
41
|
+
@t5.setter
|
|
42
|
+
def t5(self, value: int):
|
|
43
|
+
self._instance.T5 = value
|
|
44
|
+
@property
|
|
45
|
+
def t6(self) -> int:
|
|
46
|
+
return self._instance.T6
|
|
47
|
+
@t6.setter
|
|
48
|
+
def t6(self, value: int):
|
|
49
|
+
self._instance.T6 = value
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.ftp.internal.ftp_connect_parameters_base import FtpConnectParametersBase
|
|
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.Common import FtpConnectParameters as ftp_connect_parameters
|
|
7
|
+
|
|
8
|
+
class FtpConnectParameters(FtpConnectParametersBase):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = ftp_connect_parameters()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def enable(self) -> bool:
|
|
16
|
+
return self._instance.Enable
|
|
17
|
+
@enable.setter
|
|
18
|
+
def enable(self, value: bool):
|
|
19
|
+
self._instance.Enable = value
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.common.digital_ports import DigitalPorts
|
|
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.Common import IOStatus as io_status
|
|
7
|
+
|
|
8
|
+
class IOStatus:
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = io_status()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
def __repr__(self):
|
|
15
|
+
return self._instance.ToString()
|
|
16
|
+
@property
|
|
17
|
+
def port(self) -> DigitalPorts:
|
|
18
|
+
return DigitalPorts(self._instance.Port)
|
|
19
|
+
@property
|
|
20
|
+
def id(self) -> int:
|
|
21
|
+
return self._instance.Id
|
|
22
|
+
@property
|
|
23
|
+
def value(self) -> bool:
|
|
24
|
+
return self._instance.Value
|
|
25
|
+
@property
|
|
26
|
+
def name(self) -> str:
|
|
27
|
+
return self._instance.Name
|
|
@@ -0,0 +1,71 @@
|
|
|
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.Common import JointsPosition as joints_position
|
|
6
|
+
|
|
7
|
+
class JointsPosition:
|
|
8
|
+
def __init__(self, j1: float, j2: float, j3: float, j4: float, j5: float, j6: float, j7: float, j8: float, j9: float, _internal = 0):
|
|
9
|
+
if(_internal == 0):
|
|
10
|
+
self._instance = joints_position(j1, j2, j3, j4, j5, j6, j7, j8, j9)
|
|
11
|
+
else:
|
|
12
|
+
self._instance = _internal
|
|
13
|
+
def __repr__(self):
|
|
14
|
+
return self._instance.ToString()
|
|
15
|
+
@property
|
|
16
|
+
def values(self) -> typing.List[float]:
|
|
17
|
+
return self._instance.Values
|
|
18
|
+
@property
|
|
19
|
+
def j1(self) -> float:
|
|
20
|
+
return self._instance.J1
|
|
21
|
+
@j1.setter
|
|
22
|
+
def j1(self, value: float):
|
|
23
|
+
self._instance.J1 = value
|
|
24
|
+
@property
|
|
25
|
+
def j2(self) -> float:
|
|
26
|
+
return self._instance.J2
|
|
27
|
+
@j2.setter
|
|
28
|
+
def j2(self, value: float):
|
|
29
|
+
self._instance.J2 = value
|
|
30
|
+
@property
|
|
31
|
+
def j3(self) -> float:
|
|
32
|
+
return self._instance.J3
|
|
33
|
+
@j3.setter
|
|
34
|
+
def j3(self, value: float):
|
|
35
|
+
self._instance.J3 = value
|
|
36
|
+
@property
|
|
37
|
+
def j4(self) -> float:
|
|
38
|
+
return self._instance.J4
|
|
39
|
+
@j4.setter
|
|
40
|
+
def j4(self, value: float):
|
|
41
|
+
self._instance.J4 = value
|
|
42
|
+
@property
|
|
43
|
+
def j5(self) -> float:
|
|
44
|
+
return self._instance.J5
|
|
45
|
+
@j5.setter
|
|
46
|
+
def j5(self, value: float):
|
|
47
|
+
self._instance.J5 = value
|
|
48
|
+
@property
|
|
49
|
+
def j6(self) -> float:
|
|
50
|
+
return self._instance.J6
|
|
51
|
+
@j6.setter
|
|
52
|
+
def j6(self, value: float):
|
|
53
|
+
self._instance.J6 = value
|
|
54
|
+
@property
|
|
55
|
+
def j7(self) -> float:
|
|
56
|
+
return self._instance.J7
|
|
57
|
+
@j7.setter
|
|
58
|
+
def j7(self, value: float):
|
|
59
|
+
self._instance.J7 = value
|
|
60
|
+
@property
|
|
61
|
+
def j8(self) -> float:
|
|
62
|
+
return self._instance.J8
|
|
63
|
+
@j8.setter
|
|
64
|
+
def j8(self, value: float):
|
|
65
|
+
self._instance.J8 = value
|
|
66
|
+
@property
|
|
67
|
+
def j9(self) -> float:
|
|
68
|
+
return self._instance.J9
|
|
69
|
+
@j9.setter
|
|
70
|
+
def j9(self, value: float):
|
|
71
|
+
self._instance.J9 = value
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.common.joints_position import JointsPosition
|
|
3
|
+
from underautomation.fanuc.common.extended_cartesian_position import ExtendedCartesianPosition
|
|
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.Common import Position as position
|
|
8
|
+
|
|
9
|
+
class Position:
|
|
10
|
+
def __init__(self, userFrame: int, userTool: int, jointsPosition: JointsPosition, cartesianPosition: ExtendedCartesianPosition, _internal = 0):
|
|
11
|
+
if(_internal == 0):
|
|
12
|
+
self._instance = position(userFrame, userTool, jointsPosition, cartesianPosition)
|
|
13
|
+
else:
|
|
14
|
+
self._instance = _internal
|
|
15
|
+
@property
|
|
16
|
+
def user_frame(self) -> int:
|
|
17
|
+
return self._instance.UserFrame
|
|
18
|
+
@user_frame.setter
|
|
19
|
+
def user_frame(self, value: int):
|
|
20
|
+
self._instance.UserFrame = value
|
|
21
|
+
@property
|
|
22
|
+
def user_tool(self) -> int:
|
|
23
|
+
return self._instance.UserTool
|
|
24
|
+
@user_tool.setter
|
|
25
|
+
def user_tool(self, value: int):
|
|
26
|
+
self._instance.UserTool = value
|
|
27
|
+
@property
|
|
28
|
+
def joints_position(self) -> JointsPosition:
|
|
29
|
+
return JointsPosition(None, None, None, None, None, None, None, None, None, self._instance.JointsPosition)
|
|
30
|
+
@joints_position.setter
|
|
31
|
+
def joints_position(self, value: JointsPosition):
|
|
32
|
+
self._instance.JointsPosition = value
|
|
33
|
+
@property
|
|
34
|
+
def cartesian_position(self) -> ExtendedCartesianPosition:
|
|
35
|
+
return ExtendedCartesianPosition(None, None, None, None, None, None, None, None, None, None, None, None, self._instance.CartesianPosition)
|
|
36
|
+
@cartesian_position.setter
|
|
37
|
+
def cartesian_position(self, value: ExtendedCartesianPosition):
|
|
38
|
+
self._instance.CartesianPosition = value
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import clr
|
|
2
|
+
import os
|
|
3
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
4
|
+
from UnderAutomation.Fanuc.Common import ProgramType as program_type
|
|
5
|
+
|
|
6
|
+
class ProgramType(int):
|
|
7
|
+
Unknown = program_type.Unknown
|
|
8
|
+
Karel = program_type.Karel
|
|
9
|
+
TP = program_type.TP
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.rmi.internal.rmi_connect_parameters_base import RmiConnectParametersBase
|
|
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.Common import RmiConnectParameters as rmi_connect_parameters
|
|
7
|
+
|
|
8
|
+
class RmiConnectParameters(RmiConnectParametersBase):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = rmi_connect_parameters()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def enable(self) -> bool:
|
|
16
|
+
return self._instance.Enable
|
|
17
|
+
@enable.setter
|
|
18
|
+
def enable(self, value: bool):
|
|
19
|
+
self._instance.Enable = value
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.snpx.internal.snpx_connect_parameters_base import SnpxConnectParametersBase
|
|
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.Common import SnpxConnectParameters as snpx_connect_parameters
|
|
7
|
+
|
|
8
|
+
class SnpxConnectParameters(SnpxConnectParametersBase):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = snpx_connect_parameters()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def enable(self) -> bool:
|
|
16
|
+
return self._instance.Enable
|
|
17
|
+
@enable.setter
|
|
18
|
+
def enable(self, value: bool):
|
|
19
|
+
self._instance.Enable = value
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import clr
|
|
2
|
+
import os
|
|
3
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
4
|
+
from UnderAutomation.Fanuc.Common import TaskStatus as task_status
|
|
5
|
+
|
|
6
|
+
class TaskStatus(int):
|
|
7
|
+
Unknown = task_status.Unknown
|
|
8
|
+
Running = task_status.Running
|
|
9
|
+
Paused = task_status.Paused
|
|
10
|
+
Aborted = task_status.Aborted
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.telnet.internal.telnet_connect_parameters_base import TelnetConnectParametersBase
|
|
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.Common import TelnetConnectParameters as telnet_connect_parameters
|
|
7
|
+
|
|
8
|
+
class TelnetConnectParameters(TelnetConnectParametersBase):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = telnet_connect_parameters()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def enable(self) -> bool:
|
|
16
|
+
return self._instance.Enable
|
|
17
|
+
@enable.setter
|
|
18
|
+
def enable(self, value: bool):
|
|
19
|
+
self._instance.Enable = value
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.ftp.variables.generic_field import GenericField
|
|
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.Common import Utils as utils
|
|
7
|
+
|
|
8
|
+
T = typing.TypeVar('T')
|
|
9
|
+
class Utils:
|
|
10
|
+
def __init__(self, _internal = 0):
|
|
11
|
+
if(_internal == 0):
|
|
12
|
+
self._instance = utils()
|
|
13
|
+
else:
|
|
14
|
+
self._instance = _internal
|
|
15
|
+
@staticmethod
|
|
16
|
+
def set_name(field: GenericField, name: str) -> None:
|
|
17
|
+
utils.SetName(field._instance, name)
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import clr
|
|
2
|
+
import os
|
|
3
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
4
|
+
from UnderAutomation.Fanuc.Common import WristFlip as wrist_flip
|
|
5
|
+
|
|
6
|
+
class WristFlip(int):
|
|
7
|
+
Unknown = wrist_flip.Unknown
|
|
8
|
+
Flip = wrist_flip.Flip
|
|
9
|
+
NoFlip = wrist_flip.NoFlip
|
|
@@ -0,0 +1,32 @@
|
|
|
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.Common import XYZPosition as xyz_position
|
|
6
|
+
|
|
7
|
+
class XYZPosition:
|
|
8
|
+
def __init__(self, x: float, y: float, z: float, _internal = 0):
|
|
9
|
+
if(_internal == 0):
|
|
10
|
+
self._instance = xyz_position(x, y, z)
|
|
11
|
+
else:
|
|
12
|
+
self._instance = _internal
|
|
13
|
+
def __repr__(self):
|
|
14
|
+
return self._instance.ToString()
|
|
15
|
+
@property
|
|
16
|
+
def x(self) -> float:
|
|
17
|
+
return self._instance.X
|
|
18
|
+
@x.setter
|
|
19
|
+
def x(self, value: float):
|
|
20
|
+
self._instance.X = value
|
|
21
|
+
@property
|
|
22
|
+
def y(self) -> float:
|
|
23
|
+
return self._instance.Y
|
|
24
|
+
@y.setter
|
|
25
|
+
def y(self, value: float):
|
|
26
|
+
self._instance.Y = value
|
|
27
|
+
@property
|
|
28
|
+
def z(self) -> float:
|
|
29
|
+
return self._instance.Z
|
|
30
|
+
@z.setter
|
|
31
|
+
def z(self, value: float):
|
|
32
|
+
self._instance.Z = value
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.common.telnet_connect_parameters import TelnetConnectParameters
|
|
3
|
+
from underautomation.fanuc.common.ftp_connect_parameters import FtpConnectParameters
|
|
4
|
+
from underautomation.fanuc.common.snpx_connect_parameters import SnpxConnectParameters
|
|
5
|
+
from underautomation.fanuc.common.rmi_connect_parameters import RmiConnectParameters
|
|
6
|
+
import clr
|
|
7
|
+
import os
|
|
8
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
9
|
+
from UnderAutomation.Fanuc import ConnectionParameters as connection_parameters
|
|
10
|
+
|
|
11
|
+
class ConnectionParameters:
|
|
12
|
+
def __init__(self, address: str, _internal = 0):
|
|
13
|
+
if(_internal == 0):
|
|
14
|
+
self._instance = connection_parameters(address)
|
|
15
|
+
else:
|
|
16
|
+
self._instance = _internal
|
|
17
|
+
@property
|
|
18
|
+
def address(self) -> str:
|
|
19
|
+
return self._instance.Address
|
|
20
|
+
@address.setter
|
|
21
|
+
def address(self, value: str):
|
|
22
|
+
self._instance.Address = value
|
|
23
|
+
@property
|
|
24
|
+
def ping_before_connect(self) -> bool:
|
|
25
|
+
return self._instance.PingBeforeConnect
|
|
26
|
+
@ping_before_connect.setter
|
|
27
|
+
def ping_before_connect(self, value: bool):
|
|
28
|
+
self._instance.PingBeforeConnect = value
|
|
29
|
+
@property
|
|
30
|
+
def telnet(self) -> TelnetConnectParameters:
|
|
31
|
+
return TelnetConnectParameters(self._instance.Telnet)
|
|
32
|
+
@telnet.setter
|
|
33
|
+
def telnet(self, value: TelnetConnectParameters):
|
|
34
|
+
self._instance.Telnet = value
|
|
35
|
+
@property
|
|
36
|
+
def ftp(self) -> FtpConnectParameters:
|
|
37
|
+
return FtpConnectParameters(self._instance.Ftp)
|
|
38
|
+
@ftp.setter
|
|
39
|
+
def ftp(self, value: FtpConnectParameters):
|
|
40
|
+
self._instance.Ftp = value
|
|
41
|
+
@property
|
|
42
|
+
def snpx(self) -> SnpxConnectParameters:
|
|
43
|
+
return SnpxConnectParameters(self._instance.Snpx)
|
|
44
|
+
@snpx.setter
|
|
45
|
+
def snpx(self, value: SnpxConnectParameters):
|
|
46
|
+
self._instance.Snpx = value
|
|
47
|
+
@property
|
|
48
|
+
def rmi(self) -> RmiConnectParameters:
|
|
49
|
+
return RmiConnectParameters(self._instance.Rmi)
|
|
50
|
+
@rmi.setter
|
|
51
|
+
def rmi(self, value: RmiConnectParameters):
|
|
52
|
+
self._instance.Rmi = value
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.connection_parameters import ConnectionParameters
|
|
3
|
+
from underautomation.fanuc.telnet.internal.telnet_client_internal import TelnetClientInternal
|
|
4
|
+
from underautomation.fanuc.ftp.internal.ftp_client_internal import FtpClientInternal
|
|
5
|
+
from underautomation.fanuc.snpx.internal.snpx_client_internal import SnpxClientInternal
|
|
6
|
+
from underautomation.fanuc.rmi.internal.rmi_client_internal import RmiClientInternal
|
|
7
|
+
from underautomation.fanuc.license.license_info import LicenseInfo
|
|
8
|
+
import clr
|
|
9
|
+
import os
|
|
10
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
11
|
+
from UnderAutomation.Fanuc import FanucRobot as fanuc_robot
|
|
12
|
+
|
|
13
|
+
class FanucRobot:
|
|
14
|
+
def __init__(self, _internal = 0):
|
|
15
|
+
if(_internal == 0):
|
|
16
|
+
self._instance = fanuc_robot()
|
|
17
|
+
else:
|
|
18
|
+
self._instance = _internal
|
|
19
|
+
def connect(self, parameters: ConnectionParameters) -> None:
|
|
20
|
+
self._instance.Connect(parameters._instance)
|
|
21
|
+
def disconnect(self) -> None:
|
|
22
|
+
self._instance.Disconnect()
|
|
23
|
+
@staticmethod
|
|
24
|
+
def register_license(licensee: str, key: str) -> LicenseInfo:
|
|
25
|
+
return LicenseInfo(None, None, fanuc_robot.RegisterLicense(licensee, key))
|
|
26
|
+
@property
|
|
27
|
+
def address(self) -> str:
|
|
28
|
+
return self._instance.Address
|
|
29
|
+
@property
|
|
30
|
+
def enabled(self) -> bool:
|
|
31
|
+
return self._instance.Enabled
|
|
32
|
+
@property
|
|
33
|
+
def telnet(self) -> TelnetClientInternal:
|
|
34
|
+
return TelnetClientInternal(self._instance.Telnet)
|
|
35
|
+
@property
|
|
36
|
+
def ftp(self) -> FtpClientInternal:
|
|
37
|
+
return FtpClientInternal(self._instance.Ftp)
|
|
38
|
+
@property
|
|
39
|
+
def snpx(self) -> SnpxClientInternal:
|
|
40
|
+
return SnpxClientInternal(self._instance.Snpx)
|
|
41
|
+
@property
|
|
42
|
+
def rmi(self) -> RmiClientInternal:
|
|
43
|
+
return RmiClientInternal(self._instance.Rmi)
|
|
44
|
+
@property
|
|
45
|
+
def license_info(self) -> LicenseInfo:
|
|
46
|
+
return LicenseInfo(None, None, self._instance.LicenseInfo)
|
|
File without changes
|
|
File without changes
|