UnderAutomation.Fanuc 3.5.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- underautomation/__init__.py +0 -0
- underautomation/fanuc/__init__.py +0 -0
- underautomation/fanuc/common/__init__.py +0 -0
- underautomation/fanuc/common/arm_front_back.py +9 -0
- underautomation/fanuc/common/arm_left_right.py +9 -0
- underautomation/fanuc/common/arm_up_down.py +9 -0
- underautomation/fanuc/common/cartesian_position.py +51 -0
- underautomation/fanuc/common/cartesian_position_with_tool.py +21 -0
- underautomation/fanuc/common/cartesian_position_with_user_frame.py +18 -0
- underautomation/fanuc/common/configuration.py +65 -0
- underautomation/fanuc/common/connect_exception.py +18 -0
- underautomation/fanuc/common/digital_ports.py +15 -0
- underautomation/fanuc/common/extended_cartesian_position.py +31 -0
- underautomation/fanuc/common/ftp_connect_parameters.py +19 -0
- underautomation/fanuc/common/io_status.py +27 -0
- underautomation/fanuc/common/joints_position.py +80 -0
- underautomation/fanuc/common/languages.py +9 -0
- underautomation/fanuc/common/position.py +38 -0
- underautomation/fanuc/common/program_type.py +9 -0
- underautomation/fanuc/common/rmi_connect_parameters.py +19 -0
- underautomation/fanuc/common/snpx_connect_parameters.py +19 -0
- underautomation/fanuc/common/string_utils.py +16 -0
- underautomation/fanuc/common/task_status.py +10 -0
- underautomation/fanuc/common/telnet_connect_parameters.py +19 -0
- underautomation/fanuc/common/wrist_flip.py +9 -0
- underautomation/fanuc/common/xyz_position.py +32 -0
- underautomation/fanuc/connection_parameters.py +59 -0
- underautomation/fanuc/fanuc_robot.py +46 -0
- underautomation/fanuc/ftp/__init__.py +0 -0
- underautomation/fanuc/ftp/diagnosis/__init__.py +0 -0
- underautomation/fanuc/ftp/diagnosis/current_position.py +20 -0
- underautomation/fanuc/ftp/diagnosis/current_position_reader.py +21 -0
- underautomation/fanuc/ftp/diagnosis/diagnosis_reader_2.py +18 -0
- underautomation/fanuc/ftp/diagnosis/feature.py +24 -0
- underautomation/fanuc/ftp/diagnosis/features.py +25 -0
- underautomation/fanuc/ftp/diagnosis/features_parser.py +21 -0
- underautomation/fanuc/ftp/diagnosis/group_position.py +27 -0
- underautomation/fanuc/ftp/diagnosis/header_section.py +27 -0
- underautomation/fanuc/ftp/diagnosis/io_state.py +20 -0
- underautomation/fanuc/ftp/diagnosis/io_state_parser.py +21 -0
- underautomation/fanuc/ftp/diagnosis/program_states.py +23 -0
- underautomation/fanuc/ftp/diagnosis/program_states_parser.py +21 -0
- underautomation/fanuc/ftp/diagnosis/safety_status.py +52 -0
- underautomation/fanuc/ftp/diagnosis/safety_status_parser.py +19 -0
- underautomation/fanuc/ftp/diagnosis/summary_diagnosis.py +36 -0
- underautomation/fanuc/ftp/diagnosis/summary_diagnosis_reader.py +17 -0
- underautomation/fanuc/ftp/diagnosis/task_history_data.py +43 -0
- underautomation/fanuc/ftp/diagnosis/task_state.py +38 -0
- underautomation/fanuc/ftp/fanuc_file_readers.py +47 -0
- underautomation/fanuc/ftp/ftp_client.py +15 -0
- underautomation/fanuc/ftp/ftp_file_system_object_type.py +9 -0
- underautomation/fanuc/ftp/ftp_list_item.py +34 -0
- underautomation/fanuc/ftp/internal/__init__.py +0 -0
- underautomation/fanuc/ftp/internal/file_reader.py +16 -0
- underautomation/fanuc/ftp/internal/file_reader_1.py +19 -0
- underautomation/fanuc/ftp/internal/ftp_client_base.py +62 -0
- underautomation/fanuc/ftp/internal/ftp_client_internal.py +13 -0
- underautomation/fanuc/ftp/internal/ftp_connect_parameters_base.py +24 -0
- underautomation/fanuc/ftp/internal/ftp_direct_file_handling.py +37 -0
- underautomation/fanuc/ftp/internal/ftp_known_variable_files.py +117 -0
- underautomation/fanuc/ftp/internal/i_fanuc_content.py +15 -0
- underautomation/fanuc/ftp/internal/i_file_reader.py +15 -0
- underautomation/fanuc/ftp/internal/i_file_reader_1.py +17 -0
- underautomation/fanuc/ftp/internal/section_parser.py +27 -0
- underautomation/fanuc/ftp/internal/section_parser_1.py +17 -0
- underautomation/fanuc/ftp/list/__init__.py +0 -0
- underautomation/fanuc/ftp/list/errall_section_item.py +32 -0
- underautomation/fanuc/ftp/list/error_list.py +22 -0
- underautomation/fanuc/ftp/list/error_list_reader.py +17 -0
- underautomation/fanuc/ftp/variables/__init__.py +0 -0
- underautomation/fanuc/ftp/variables/aavm_grp_variable_type.py +211 -0
- underautomation/fanuc/ftp/variables/aavm_wrk_variable_type.py +106 -0
- underautomation/fanuc/ftp/variables/aavmmain_file.py +234 -0
- underautomation/fanuc/ftp/variables/abspos_grp_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/adj_rtrq_variable_type.py +32 -0
- underautomation/fanuc/ftp/variables/aio_cnv_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/alm_if_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/almdg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/amp_coef_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/amp_id_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/apcoupled_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/apcureq_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/appinfo_variable_type.py +35 -0
- underautomation/fanuc/ftp/variables/appinfoeq_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/arg_str_variable_type.py +79 -0
- underautomation/fanuc/ftp/variables/armld_pos_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/armload_p_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/armload_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/array_element.py +28 -0
- underautomation/fanuc/ftp/variables/asbn_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/at_cellsetup_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/auto_col_rec_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/autobackup_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/ax_ofs_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/axscrdcfg_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/back_edit_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/bbl_nt_wnd_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/bicsetup_file.py +16 -0
- underautomation/fanuc/ftp/variables/bigallow_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/bin_cfg_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/blal_out_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/calc_result_variable_type.py +70 -0
- underautomation/fanuc/ftp/variables/camera_variable_type.py +100 -0
- underautomation/fanuc/ftp/variables/cartesian_position_variable.py +22 -0
- underautomation/fanuc/ftp/variables/cbparam_file.py +97 -0
- underautomation/fanuc/ftp/variables/cell_grp_variable_type.py +60 -0
- underautomation/fanuc/ftp/variables/cellio_file.py +39 -0
- underautomation/fanuc/ftp/variables/cellset_variable_type.py +373 -0
- underautomation/fanuc/ftp/variables/cf_paramgp_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/cfcfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/chg_pri_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/chk_result_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/chkpos_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/clhist_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/clmlio_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/cmd_info_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/co_morgrp_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/co_paramgp_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/cocfg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/collect_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/com_space_variable_type.py +92 -0
- underautomation/fanuc/ftp/variables/comset_file.py +76 -0
- underautomation/fanuc/ftp/variables/condet_cfg_variable_type.py +47 -0
- underautomation/fanuc/ftp/variables/condet_data_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/condet_grp_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/condet_io_variable_type.py +29 -0
- underautomation/fanuc/ftp/variables/condet_trgp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/condet_trig_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/cp_mcrgrp_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/cp_morgrp_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/cp_paramgp_variable_type.py +146 -0
- underautomation/fanuc/ftp/variables/cp_t1_grp_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/cp_t1_mode_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/cp_test_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/cpcfg_variable_type.py +65 -0
- underautomation/fanuc/ftp/variables/cpdbg_variable_type.py +53 -0
- underautomation/fanuc/ftp/variables/cpidebug_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/crcfg_variable_type.py +106 -0
- underautomation/fanuc/ftp/variables/create_prg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/ctrl_cab_variable_type.py +32 -0
- underautomation/fanuc/ftp/variables/current_pos_variable_type.py +29 -0
- underautomation/fanuc/ftp/variables/custommenu_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/db_dbg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/db_record_variable_type.py +98 -0
- underautomation/fanuc/ftp/variables/dbg_errlog_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/dbinfo_variable_type.py +60 -0
- underautomation/fanuc/ftp/variables/dbpxwork_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/dbtb_ctrl_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/dbwork_variable_type.py +20 -0
- underautomation/fanuc/ftp/variables/dcs_cfg_variable_type.py +148 -0
- underautomation/fanuc/ftp/variables/dcs_crc_out_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/dcs_nocode_variable_type.py +16 -0
- underautomation/fanuc/ftp/variables/dcs_sgn_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/dcss_cnstcy_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/dcss_device_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/dcss_hndgd_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/dcss_ls_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/dcss_param_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/dcss_slave_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/deflogic_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/demo_init_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/det_io_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/dh_extra_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/dhcp_ctrl_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/dhcp_int_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/diag_grp_variable_type.py +166 -0
- underautomation/fanuc/ftp/variables/dict_cfg_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/diocfgsv_file.py +91 -0
- underautomation/fanuc/ftp/variables/dmr_grp_variable_type.py +110 -0
- underautomation/fanuc/ftp/variables/dmr_shferr_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/dmsw_cfg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/dns_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/dnss_cfg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/docviewer_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/drc_cfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/dryrun_port_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/dryrun_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/dsbl_fault_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/dtrec_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/dyn_brk_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/edt_recent_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/eff_axis_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/enc_info_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/enc_stat_variable_type.py +94 -0
- underautomation/fanuc/ftp/variables/enetmode_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/eoatcfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/eoatdata_variable_type.py +118 -0
- underautomation/fanuc/ftp/variables/er_noalm_variable_type.py +142 -0
- underautomation/fanuc/ftp/variables/er_noauto_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/erpost_log_variable_type.py +26 -0
- underautomation/fanuc/ftp/variables/err_mask_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/ext_set_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/fdot_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/fdr_grp_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/feature_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/file_back_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/file_setup2_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/file_setup_variable_type.py +44 -0
- underautomation/fanuc/ftp/variables/filecomp_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/fileconfig_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/fltr_ovrn_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/flui_cfg_variable_type.py +67 -0
- underautomation/fanuc/ftp/variables/flui_data_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/flui_res_variable_type.py +48 -0
- underautomation/fanuc/ftp/variables/fmr2_grp_variable_type.py +76 -0
- underautomation/fanuc/ftp/variables/fmr_cfg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/fms_grp_variable_type.py +71 -0
- underautomation/fanuc/ftp/variables/fsac_lst_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/fssb_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/ftp_ctrl_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/fx_trigger_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/gemdata_file.py +25 -0
- underautomation/fanuc/ftp/variables/generic_field.py +37 -0
- underautomation/fanuc/ftp/variables/generic_value.py +42 -0
- underautomation/fanuc/ftp/variables/generic_variable.py +23 -0
- underautomation/fanuc/ftp/variables/generic_variable_file.py +35 -0
- underautomation/fanuc/ftp/variables/generic_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/generic_variable_type_helpers.py +19 -0
- underautomation/fanuc/ftp/variables/glofatt_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/glofset_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/gp_hold_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/gp_status_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/gravc_grp_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/grsmt_grp_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/hist_day_variable_type.py +29 -0
- underautomation/fanuc/ftp/variables/hist_ele_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/host_cfg_variable_type.py +67 -0
- underautomation/fanuc/ftp/variables/hostent_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/hscd_grp_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/hscd_mng_variable_type.py +73 -0
- underautomation/fanuc/ftp/variables/htcolrec_file.py +26 -0
- underautomation/fanuc/ftp/variables/http_auth_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/http_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/httpkcl_file.py +37 -0
- underautomation/fanuc/ftp/variables/hwr_config_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/i_generic_variable_type.py +21 -0
- underautomation/fanuc/ftp/variables/interact_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/intrac_d_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/intrac_n_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/io_def_asg_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/io_uop_cfg_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/iolnk_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/ioslave_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/irc_counter_file.py +56 -0
- underautomation/fanuc/ftp/variables/irc_gnrc_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/irc_msg_file.py +53 -0
- underautomation/fanuc/ftp/variables/irc_status_file.py +53 -0
- underautomation/fanuc/ftp/variables/irc_stlabel_file.py +53 -0
- underautomation/fanuc/ftp/variables/irca_cnf_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/irprog_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/item_acc_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/item_buff_el_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/item_name_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/j2red_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/j3d_pld_cal_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/jcr_grp_variable_type.py +88 -0
- underautomation/fanuc/ftp/variables/jcr_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/jinc_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/jog_rad_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/joint_position_variable.py +22 -0
- underautomation/fanuc/ftp/variables/karel_cfg_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/karelmon_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/klaction_file.py +31 -0
- underautomation/fanuc/ftp/variables/lgcfg_variable_type.py +121 -0
- underautomation/fanuc/ftp/variables/ln_disp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/log_alarm_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/log_buff_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/log_dcs_variable_type.py +56 -0
- underautomation/fanuc/ftp/variables/log_dio_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/log_scrn_fl_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/logbook_variable_type.py +217 -0
- underautomation/fanuc/ftp/variables/max_pld_cal_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/mcr_grp_variable_type.py +217 -0
- underautomation/fanuc/ftp/variables/mcr_variable_type.py +97 -0
- underautomation/fanuc/ftp/variables/mcsp_grp_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/mcsp_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/memo_memo_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/mfrq_cfg_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/mfrq_grp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/mgdebug_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/misc_grp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/misc_mstr_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/misc_scd_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/mix_bg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/mix_logic_variable_type.py +95 -0
- underautomation/fanuc/ftp/variables/mix_mkr_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/mixlogic_file.py +40 -0
- underautomation/fanuc/ftp/variables/mkcfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/mltarm_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/mn_mcr_sop_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/mn_mcr_table_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/mn_mcr_uop_variable_type.py +70 -0
- underautomation/fanuc/ftp/variables/mndsp_mst_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/mndsppstl_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/modaq_cfg_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/modem_inf_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/moptimiz_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/mor_grp_sv_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/mor_grp_variable_type.py +305 -0
- underautomation/fanuc/ftp/variables/mor_variable_type.py +105 -0
- underautomation/fanuc/ftp/variables/motion_dbg_variable_type.py +56 -0
- underautomation/fanuc/ftp/variables/mouse_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/mr_hist_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/mrr2_grp_variable_type.py +162 -0
- underautomation/fanuc/ftp/variables/mrr_grp_variable_type.py +785 -0
- underautomation/fanuc/ftp/variables/msk_ce_grp_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/mtcom_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/mtparam_file.py +148 -0
- underautomation/fanuc/ftp/variables/numreg_file.py +19 -0
- underautomation/fanuc/ftp/variables/on_path_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/optstate_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/opwork_variable_type.py +70 -0
- underautomation/fanuc/ftp/variables/ovrd_setup_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/ovrdslct_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/palreg_file.py +19 -0
- underautomation/fanuc/ftp/variables/passname_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/password_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/pf_cfg_variable_type.py +116 -0
- underautomation/fanuc/ftp/variables/pf_data_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/pf_enhance_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/pf_pref_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/pg_cfg_variable_type.py +79 -0
- underautomation/fanuc/ftp/variables/pg_defspd_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/pgmaxspd_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/pinfo_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/ping_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/pipe_cfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/pl_res_g_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/plcfg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/plcl_grp_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/plid_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/plid_cllb_variable_type.py +98 -0
- underautomation/fanuc/ftp/variables/plid_grp_variable_type.py +320 -0
- underautomation/fanuc/ftp/variables/plid_sv_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/plim_grp_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/plmr_grp_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/plst_grp_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/pmon_que_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/pocfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/podata_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/poinfo_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/poio_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/pos_edit_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/position_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/posreg_file.py +20 -0
- underautomation/fanuc/ftp/variables/pppcfg_lst_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/prgadj_sch_variable_type.py +76 -0
- underautomation/fanuc/ftp/variables/prgadj_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/prgns_cfg_variable_type.py +64 -0
- underautomation/fanuc/ftp/variables/prgns_elem_variable_type.py +67 -0
- underautomation/fanuc/ftp/variables/prgns_grp_variable_type.py +44 -0
- underautomation/fanuc/ftp/variables/prgns_pref_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/protoent_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/proxy_cfg_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/pslgset_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/pslgtemp_variable_type.py +136 -0
- underautomation/fanuc/ftp/variables/pssave_grp_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/pssave_variable_type.py +85 -0
- underautomation/fanuc/ftp/variables/pulco_idata_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/pwrup_dly_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/qskip_grp_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/rcmcfg_variable_type.py +203 -0
- underautomation/fanuc/ftp/variables/rdcr_grp_variable_type.py +47 -0
- underautomation/fanuc/ftp/variables/rdm_cfg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/recloc_variable_type.py +20 -0
- underautomation/fanuc/ftp/variables/recovery_variable_type.py +61 -0
- underautomation/fanuc/ftp/variables/redprot_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/redprot_grp_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/refpos11_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos21_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos31_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos41_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos51_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos61_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos71_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos81_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpsmsk_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/remote_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/repower_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/req_data_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/restart_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/resume_ofst_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/rs232_cfg_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/rsch_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/rspace_variable_type.py +116 -0
- underautomation/fanuc/ftp/variables/rspaceg_variable_type.py +27 -0
- underautomation/fanuc/ftp/variables/rspacesr_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/sbr2_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/sbr_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/scr_grp_variable_type.py +417 -0
- underautomation/fanuc/ftp/variables/scr_variable_type.py +508 -0
- underautomation/fanuc/ftp/variables/servent_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/sfzn_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/sfzn_grp_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/shell_cfg_variable_type.py +175 -0
- underautomation/fanuc/ftp/variables/shell_chk_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/shell_comm_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/shell_wrk_variable_type.py +127 -0
- underautomation/fanuc/ftp/variables/simiofwdlm_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/smb_clnt_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/smb_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/smh_made_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/smtp_ctrl_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/snpx_asg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/snpx_param_variable_type.py +61 -0
- underautomation/fanuc/ftp/variables/sntp_cfg_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/sntp_custom_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/sscbk_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/ssr_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/stop_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/strreg_file.py +19 -0
- underautomation/fanuc/ftp/variables/sv_info_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/svdt_grp_variable_type.py +400 -0
- underautomation/fanuc/ftp/variables/svprm_upd_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/swiupdt_file.py +16 -0
- underautomation/fanuc/ftp/variables/sycldint_file.py +49 -0
- underautomation/fanuc/ftp/variables/symotn_file.py +149 -0
- underautomation/fanuc/ftp/variables/synosave_file.py +192 -0
- underautomation/fanuc/ftp/variables/sys_time_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/sysframe_file.py +33 -0
- underautomation/fanuc/ftp/variables/sysfsac_file.py +23 -0
- underautomation/fanuc/ftp/variables/syshost_file.py +79 -0
- underautomation/fanuc/ftp/variables/syslog_sav_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/syslog_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/sysmacro_file.py +43 -0
- underautomation/fanuc/ftp/variables/sysmast_file.py +25 -0
- underautomation/fanuc/ftp/variables/syspass_file.py +24 -0
- underautomation/fanuc/ftp/variables/sysservo_file.py +21 -0
- underautomation/fanuc/ftp/variables/system_file.py +2232 -0
- underautomation/fanuc/ftp/variables/system_timer_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/sysuif_file.py +29 -0
- underautomation/fanuc/ftp/variables/t2mode_lim_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/t2spdlim_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/tbc2_grp_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/tbc_acc_variable_type.py +151 -0
- underautomation/fanuc/ftp/variables/tbc_grp_variable_type.py +104 -0
- underautomation/fanuc/ftp/variables/tbccfg_variable_type.py +38 -0
- underautomation/fanuc/ftp/variables/tbcparam_variable_type.py +70 -0
- underautomation/fanuc/ftp/variables/tbcsg_grp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/tbj2_grp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/tbj_acc_variable_type.py +190 -0
- underautomation/fanuc/ftp/variables/tbj_grp_variable_type.py +125 -0
- underautomation/fanuc/ftp/variables/tbjcfg_variable_type.py +53 -0
- underautomation/fanuc/ftp/variables/tbjop_grp_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/tbparam_variable_type.py +124 -0
- underautomation/fanuc/ftp/variables/tcol_line_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/tcpipcfg_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/thr_cfg_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/timer_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/torqctrl_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/tp_curscrn_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/tp_thr_table_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/tpgl_cam_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/tpgl_conf_variable_type.py +115 -0
- underautomation/fanuc/ftp/variables/tpgl_mset_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/tpgl_out_variable_type.py +44 -0
- underautomation/fanuc/ftp/variables/tpgl_uview_variable_type.py +26 -0
- underautomation/fanuc/ftp/variables/tpgl_view_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/tpglmach_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/tpp_mon_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/tpsnap_file.py +82 -0
- underautomation/fanuc/ftp/variables/tpstrtchk_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/tpvwvar_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/trace_cfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/trace_chnl_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/trace_item_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/tracectl_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/tracedt_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/traceup_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/tscfg_variable_type.py +76 -0
- underautomation/fanuc/ftp/variables/tsr_grp_variable_type.py +79 -0
- underautomation/fanuc/ftp/variables/tsscb_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/tune_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/tutorial_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/tv_config_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/tv_output_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/tx_variable_type.py +79 -0
- underautomation/fanuc/ftp/variables/txram_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/txscreen_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/uecfg_variable_type.py +44 -0
- underautomation/fanuc/ftp/variables/uegrp_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/ui_config_variable_type.py +235 -0
- underautomation/fanuc/ftp/variables/ui_custom_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/ui_fctnfav_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/ui_fkeydat_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/ui_menhis_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/ui_panedat_variable_type.py +62 -0
- underautomation/fanuc/ftp/variables/ui_panelnk_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/ui_topmenu_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/ui_usrview_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/ujr_grp_variable_type.py +56 -0
- underautomation/fanuc/ftp/variables/umr_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/undo_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/upr_variable_type.py +152 -0
- underautomation/fanuc/ftp/variables/user_info_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/user_offst_variable_type.py +36 -0
- underautomation/fanuc/ftp/variables/user_tool_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/user_ufram_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/user_work_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/usr_ev_cfg_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/usr_ev_wrk_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/usrtol_grp_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/value_kind.py +10 -0
- underautomation/fanuc/ftp/variables/variable_file.py +15 -0
- underautomation/fanuc/ftp/variables/variable_file_list.py +26 -0
- underautomation/fanuc/ftp/variables/variable_reader.py +130 -0
- underautomation/fanuc/ftp/variables/variable_reader_1.py +17 -0
- underautomation/fanuc/ftp/variables/vars_config_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/vcal_mv_variable_type.py +35 -0
- underautomation/fanuc/ftp/variables/vcal_vd_variable_type.py +78 -0
- underautomation/fanuc/ftp/variables/vcal_vf_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/vcmr_grp_variable_type.py +75 -0
- underautomation/fanuc/ftp/variables/vcmr_trgt_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/vcmrinit_file.py +56 -0
- underautomation/fanuc/ftp/variables/vcrsm_cfg_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/vcwm_cfg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/vcwm_grp_variable_type.py +133 -0
- underautomation/fanuc/ftp/variables/vector_variable.py +33 -0
- underautomation/fanuc/ftp/variables/via_work_variable_type.py +47 -0
- underautomation/fanuc/ftp/variables/view_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/vis_ge_cfg_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/vis_logreg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/vision_cfg_variable_type.py +175 -0
- underautomation/fanuc/ftp/variables/vision_grp_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/vlexe_cfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/vrtd_filt_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/vsft_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/vsmo_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/vsmo_pls_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/vsmo_tmp_variable_type.py +59 -0
- underautomation/fanuc/ftp/variables/vsmo_val_variable_type.py +23 -0
- underautomation/fanuc/ftp/variables/vtcpset_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/vzdt_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/wait_data_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/xf_variable_type.py +29 -0
- underautomation/fanuc/ftp/variables/xvrcfg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/zabc_grp_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/zdt_actvspt_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/zdt_dcschg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/zip_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/zmpcf_grp_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/zmpos_grp_variable_type.py +74 -0
- underautomation/fanuc/ftp/variables/zp_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/zp_cylinder_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/zp_grp_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/zp_sphere_variable_type.py +25 -0
- underautomation/fanuc/kinematics/__init__.py +0 -0
- underautomation/fanuc/kinematics/arm_kinematic_models.py +88 -0
- underautomation/fanuc/kinematics/crx/__init__.py +0 -0
- underautomation/fanuc/kinematics/crx/crx_kinematics_utils.py +18 -0
- underautomation/fanuc/kinematics/dh_parameters.py +77 -0
- underautomation/fanuc/kinematics/i_dh_parameters.py +30 -0
- underautomation/fanuc/kinematics/internal/__init__.py +0 -0
- underautomation/fanuc/kinematics/internal/arm_model_attribute.py +31 -0
- underautomation/fanuc/kinematics/kinematics_category.py +9 -0
- underautomation/fanuc/kinematics/kinematics_utils.py +24 -0
- underautomation/fanuc/kinematics/opw/__init__.py +0 -0
- underautomation/fanuc/kinematics/opw/opw_kinematics_utils.py +18 -0
- underautomation/fanuc/lib/UnderAutomation.Fanuc.dll +0 -0
- underautomation/fanuc/lib/version.txt +1 -0
- underautomation/fanuc/license/__init__.py +0 -0
- underautomation/fanuc/license/invalid_license_exception.py +16 -0
- underautomation/fanuc/license/license_info.py +48 -0
- underautomation/fanuc/license/license_state.py +12 -0
- underautomation/fanuc/rmi/__init__.py +0 -0
- underautomation/fanuc/rmi/data/__init__.py +0 -0
- underautomation/fanuc/rmi/data/cartesian_position.py +27 -0
- underautomation/fanuc/rmi/data/command_verb.py +27 -0
- underautomation/fanuc/rmi/data/communication_verb.py +10 -0
- underautomation/fanuc/rmi/data/controller_error_text.py +19 -0
- underautomation/fanuc/rmi/data/controller_status.py +61 -0
- underautomation/fanuc/rmi/data/digital_input_value.py +25 -0
- underautomation/fanuc/rmi/data/frame.py +66 -0
- underautomation/fanuc/rmi/data/indexed_frame.py +26 -0
- underautomation/fanuc/rmi/data/instruction_verb.py +21 -0
- underautomation/fanuc/rmi/data/joint_angles.py +66 -0
- underautomation/fanuc/rmi/data/joint_angles_sample.py +20 -0
- underautomation/fanuc/rmi/data/motion_configuration.py +66 -0
- underautomation/fanuc/rmi/data/on_off.py +8 -0
- underautomation/fanuc/rmi/data/port_type.py +8 -0
- underautomation/fanuc/rmi/data/position_register_data.py +33 -0
- underautomation/fanuc/rmi/data/rmi_message_kind.py +9 -0
- underautomation/fanuc/rmi/data/rmi_response_base.py +18 -0
- underautomation/fanuc/rmi/data/rmi_sequence_response.py +19 -0
- underautomation/fanuc/rmi/data/rmi_timed_response.py +19 -0
- underautomation/fanuc/rmi/data/speed_type.py +10 -0
- underautomation/fanuc/rmi/data/tcp_speed.py +19 -0
- underautomation/fanuc/rmi/data/termination_type.py +9 -0
- underautomation/fanuc/rmi/data/u_frame_u_tool_numbers.py +25 -0
- underautomation/fanuc/rmi/internal/__init__.py +0 -0
- underautomation/fanuc/rmi/internal/rmi_client_base.py +119 -0
- underautomation/fanuc/rmi/internal/rmi_client_internal.py +13 -0
- underautomation/fanuc/rmi/internal/rmi_connect_parameters_base.py +36 -0
- underautomation/fanuc/rmi/rmi_client.py +15 -0
- underautomation/fanuc/rmi/rmi_exception.py +15 -0
- underautomation/fanuc/snpx/__init__.py +0 -0
- underautomation/fanuc/snpx/assignment/__init__.py +0 -0
- underautomation/fanuc/snpx/assignment/integer_system_variables_batch_assignment.py +15 -0
- underautomation/fanuc/snpx/assignment/numeric_registers_batch_assignment.py +15 -0
- underautomation/fanuc/snpx/assignment/position_registers_batch_assignment.py +16 -0
- underautomation/fanuc/snpx/assignment/position_system_variables_batch_assignment.py +16 -0
- underautomation/fanuc/snpx/assignment/real_system_variables_batch_assignment.py +15 -0
- underautomation/fanuc/snpx/assignment/string_registers_batch_assignment.py +15 -0
- underautomation/fanuc/snpx/assignment/string_system_variables_batch_assignment.py +15 -0
- underautomation/fanuc/snpx/internal/__init__.py +0 -0
- underautomation/fanuc/snpx/internal/alarm_access.py +14 -0
- underautomation/fanuc/snpx/internal/alarm_id.py +102 -0
- underautomation/fanuc/snpx/internal/alarm_severity.py +17 -0
- underautomation/fanuc/snpx/internal/alarm_type.py +8 -0
- underautomation/fanuc/snpx/internal/assignment.py +23 -0
- underautomation/fanuc/snpx/internal/assignment_1.py +17 -0
- underautomation/fanuc/snpx/internal/batch_assignment_2.py +23 -0
- underautomation/fanuc/snpx/internal/current_position.py +19 -0
- underautomation/fanuc/snpx/internal/current_position_request.py +24 -0
- underautomation/fanuc/snpx/internal/current_task_status.py +14 -0
- underautomation/fanuc/snpx/internal/digital_signals.py +29 -0
- underautomation/fanuc/snpx/internal/integer_system_variables.py +14 -0
- underautomation/fanuc/snpx/internal/numeric_io.py +29 -0
- underautomation/fanuc/snpx/internal/numeric_registers.py +16 -0
- underautomation/fanuc/snpx/internal/position_registers.py +22 -0
- underautomation/fanuc/snpx/internal/position_system_variables.py +20 -0
- underautomation/fanuc/snpx/internal/real_system_variables.py +14 -0
- underautomation/fanuc/snpx/internal/robot_alarm.py +76 -0
- underautomation/fanuc/snpx/internal/robot_task_state.py +9 -0
- underautomation/fanuc/snpx/internal/robot_task_status.py +43 -0
- underautomation/fanuc/snpx/internal/segment_name.py +24 -0
- underautomation/fanuc/snpx/internal/segment_offset.py +17 -0
- underautomation/fanuc/snpx/internal/segment_selector.py +27 -0
- underautomation/fanuc/snpx/internal/snpx_assignable_elements_2.py +20 -0
- underautomation/fanuc/snpx/internal/snpx_client_base.py +139 -0
- underautomation/fanuc/snpx/internal/snpx_client_internal.py +13 -0
- underautomation/fanuc/snpx/internal/snpx_connect_parameters_base.py +20 -0
- underautomation/fanuc/snpx/internal/snpx_elements_2.py +16 -0
- underautomation/fanuc/snpx/internal/snpx_writable_assignable_elements_3.py +20 -0
- underautomation/fanuc/snpx/internal/string_registers.py +16 -0
- underautomation/fanuc/snpx/internal/string_system_variables.py +14 -0
- underautomation/fanuc/snpx/snpx_client.py +15 -0
- underautomation/fanuc/telnet/__init__.py +0 -0
- underautomation/fanuc/telnet/abort_result.py +13 -0
- underautomation/fanuc/telnet/add_breakpoint_result.py +13 -0
- underautomation/fanuc/telnet/base_result.py +13 -0
- underautomation/fanuc/telnet/breakpoint.py +15 -0
- underautomation/fanuc/telnet/breakpoints_result.py +17 -0
- underautomation/fanuc/telnet/command_sent_event_args.py +18 -0
- underautomation/fanuc/telnet/continue_result.py +13 -0
- underautomation/fanuc/telnet/custom_command_result.py +18 -0
- underautomation/fanuc/telnet/get_current_pose_result.py +22 -0
- underautomation/fanuc/telnet/get_variable_result.py +18 -0
- underautomation/fanuc/telnet/internal/__init__.py +0 -0
- underautomation/fanuc/telnet/internal/telnet_client_base.py +137 -0
- underautomation/fanuc/telnet/internal/telnet_client_internal.py +13 -0
- underautomation/fanuc/telnet/internal/telnet_connect_parameters_base.py +18 -0
- underautomation/fanuc/telnet/kcl_client_error_event_args.py +18 -0
- underautomation/fanuc/telnet/kcl_command_received.py +19 -0
- underautomation/fanuc/telnet/kcl_ports.py +17 -0
- underautomation/fanuc/telnet/message_received_event_args.py +21 -0
- underautomation/fanuc/telnet/pause_result.py +13 -0
- underautomation/fanuc/telnet/program_command_result.py +13 -0
- underautomation/fanuc/telnet/raw_data_received_event_args.py +18 -0
- underautomation/fanuc/telnet/remove_breakpoint_result.py +13 -0
- underautomation/fanuc/telnet/reset_result.py +13 -0
- underautomation/fanuc/telnet/result.py +23 -0
- underautomation/fanuc/telnet/run_result.py +13 -0
- underautomation/fanuc/telnet/set_port_result.py +13 -0
- underautomation/fanuc/telnet/set_value_result.py +21 -0
- underautomation/fanuc/telnet/set_variable_result.py +13 -0
- underautomation/fanuc/telnet/simulate_result.py +13 -0
- underautomation/fanuc/telnet/step_off_result.py +13 -0
- underautomation/fanuc/telnet/step_on_result.py +13 -0
- underautomation/fanuc/telnet/task_information_result.py +47 -0
- underautomation/fanuc/telnet/telnet_client.py +15 -0
- underautomation/fanuc/telnet/tp_coordinates.py +12 -0
- underautomation/fanuc/telnet/tp_coordinates_received_event_args.py +19 -0
- underautomation/fanuc/telnet/unsimulate_all_result.py +13 -0
- underautomation/fanuc/telnet/unsimulate_result.py +13 -0
- underautomation/fanuc/telnet/variable_result.py +13 -0
- underautomation/fanuc/telnet/variables_result.py +13 -0
- underautomation_fanuc-3.5.0.0.dist-info/METADATA +210 -0
- underautomation_fanuc-3.5.0.0.dist-info/RECORD +681 -0
- underautomation_fanuc-3.5.0.0.dist-info/WHEEL +5 -0
- underautomation_fanuc-3.5.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,22 @@
|
|
|
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 ZipCfgVariableType as zip_cfg_variable_type
|
|
7
|
+
|
|
8
|
+
class ZipCfgVariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = zip_cfg_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def dbglvl(self) -> int:
|
|
16
|
+
return self._instance.Dbglvl
|
|
17
|
+
@property
|
|
18
|
+
def ldebug(self) -> typing.List[int]:
|
|
19
|
+
return self._instance.Ldebug
|
|
20
|
+
@property
|
|
21
|
+
def fanuc_internal_type_name(self) -> str:
|
|
22
|
+
return self._instance.FanucInternalTypeName
|
|
@@ -0,0 +1,22 @@
|
|
|
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 ZmpcfGrpVariableType as zmpcf_grp_variable_type
|
|
7
|
+
|
|
8
|
+
class ZmpcfGrpVariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = zmpcf_grp_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def zmp_enb(self) -> int:
|
|
16
|
+
return self._instance.ZmpEnb
|
|
17
|
+
@property
|
|
18
|
+
def zmp_dmy_lnk(self) -> typing.List[float]:
|
|
19
|
+
return self._instance.ZmpDmyLnk
|
|
20
|
+
@property
|
|
21
|
+
def fanuc_internal_type_name(self) -> str:
|
|
22
|
+
return self._instance.FanucInternalTypeName
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.ftp.variables.cartesian_position_variable import CartesianPositionVariable
|
|
3
|
+
from underautomation.fanuc.ftp.variables.generic_variable_type import GenericVariableType
|
|
4
|
+
import clr
|
|
5
|
+
import os
|
|
6
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
7
|
+
from UnderAutomation.Fanuc.Ftp.Variables import ZmposGrpVariableType as zmpos_grp_variable_type
|
|
8
|
+
|
|
9
|
+
class ZmposGrpVariableType(GenericVariableType):
|
|
10
|
+
def __init__(self, _internal = 0):
|
|
11
|
+
if(_internal == 0):
|
|
12
|
+
self._instance = zmpos_grp_variable_type()
|
|
13
|
+
else:
|
|
14
|
+
self._instance = _internal
|
|
15
|
+
@property
|
|
16
|
+
def m_pos_enb(self) -> int:
|
|
17
|
+
return self._instance.MPosEnb
|
|
18
|
+
@property
|
|
19
|
+
def cmcmd_scl(self) -> int:
|
|
20
|
+
return self._instance.CmcmdScl
|
|
21
|
+
@property
|
|
22
|
+
def cart_mcmd(self) -> typing.List[float]:
|
|
23
|
+
return self._instance.CartMcmd
|
|
24
|
+
@property
|
|
25
|
+
def p_act(self) -> CartesianPositionVariable:
|
|
26
|
+
return CartesianPositionVariable(self._instance.PAct)
|
|
27
|
+
@property
|
|
28
|
+
def j_act(self) -> typing.List[float]:
|
|
29
|
+
return self._instance.JAct
|
|
30
|
+
@property
|
|
31
|
+
def p_des(self) -> CartesianPositionVariable:
|
|
32
|
+
return CartesianPositionVariable(self._instance.PDes)
|
|
33
|
+
@property
|
|
34
|
+
def j_des(self) -> typing.List[float]:
|
|
35
|
+
return self._instance.JDes
|
|
36
|
+
@property
|
|
37
|
+
def p_des2(self) -> CartesianPositionVariable:
|
|
38
|
+
return CartesianPositionVariable(self._instance.PDes2)
|
|
39
|
+
@property
|
|
40
|
+
def j_des2(self) -> typing.List[float]:
|
|
41
|
+
return self._instance.JDes2
|
|
42
|
+
@property
|
|
43
|
+
def p_act_uf(self) -> typing.List[float]:
|
|
44
|
+
return self._instance.PActUf
|
|
45
|
+
@property
|
|
46
|
+
def p_des_uf(self) -> typing.List[float]:
|
|
47
|
+
return self._instance.PDesUf
|
|
48
|
+
@property
|
|
49
|
+
def uxwpr_enb(self) -> int:
|
|
50
|
+
return self._instance.UxwprEnb
|
|
51
|
+
@property
|
|
52
|
+
def uxeul_enb(self) -> int:
|
|
53
|
+
return self._instance.UxeulEnb
|
|
54
|
+
@property
|
|
55
|
+
def uxwpr_act(self) -> typing.List[float]:
|
|
56
|
+
return self._instance.UxwprAct
|
|
57
|
+
@property
|
|
58
|
+
def uxwpr_des(self) -> typing.List[float]:
|
|
59
|
+
return self._instance.UxwprDes
|
|
60
|
+
@property
|
|
61
|
+
def uxeul_act(self) -> typing.List[float]:
|
|
62
|
+
return self._instance.UxeulAct
|
|
63
|
+
@property
|
|
64
|
+
def uxeul_des(self) -> typing.List[float]:
|
|
65
|
+
return self._instance.UxeulDes
|
|
66
|
+
@property
|
|
67
|
+
def p_aftflt(self) -> CartesianPositionVariable:
|
|
68
|
+
return CartesianPositionVariable(self._instance.PAftflt)
|
|
69
|
+
@property
|
|
70
|
+
def j_aftflt(self) -> typing.List[float]:
|
|
71
|
+
return self._instance.JAftflt
|
|
72
|
+
@property
|
|
73
|
+
def fanuc_internal_type_name(self) -> str:
|
|
74
|
+
return self._instance.FanucInternalTypeName
|
|
@@ -0,0 +1,22 @@
|
|
|
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 ZpCfgVariableType as zp_cfg_variable_type
|
|
7
|
+
|
|
8
|
+
class ZpCfgVariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = zp_cfg_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def enable(self) -> bool:
|
|
16
|
+
return self._instance.Enable
|
|
17
|
+
@property
|
|
18
|
+
def debug(self) -> int:
|
|
19
|
+
return self._instance.Debug
|
|
20
|
+
@property
|
|
21
|
+
def fanuc_internal_type_name(self) -> str:
|
|
22
|
+
return self._instance.FanucInternalTypeName
|
|
@@ -0,0 +1,28 @@
|
|
|
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 ZpCylinderVariableType as zp_cylinder_variable_type
|
|
7
|
+
|
|
8
|
+
class ZpCylinderVariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = zp_cylinder_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def radius(self) -> float:
|
|
16
|
+
return self._instance.Radius
|
|
17
|
+
@property
|
|
18
|
+
def height(self) -> float:
|
|
19
|
+
return self._instance.Height
|
|
20
|
+
@property
|
|
21
|
+
def prog_name(self) -> typing.List[str]:
|
|
22
|
+
return self._instance.ProgName
|
|
23
|
+
@property
|
|
24
|
+
def line_num(self) -> typing.List[int]:
|
|
25
|
+
return self._instance.LineNum
|
|
26
|
+
@property
|
|
27
|
+
def fanuc_internal_type_name(self) -> str:
|
|
28
|
+
return self._instance.FanucInternalTypeName
|
|
@@ -0,0 +1,49 @@
|
|
|
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 ZpGrpVariableType as zp_grp_variable_type
|
|
7
|
+
|
|
8
|
+
class ZpGrpVariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = zp_grp_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def options(self) -> typing.List[int]:
|
|
16
|
+
return self._instance.Options
|
|
17
|
+
@property
|
|
18
|
+
def break_time(self) -> int:
|
|
19
|
+
return self._instance.BreakTime
|
|
20
|
+
@property
|
|
21
|
+
def work_shift(self) -> int:
|
|
22
|
+
return self._instance.WorkShift
|
|
23
|
+
@property
|
|
24
|
+
def enable(self) -> bool:
|
|
25
|
+
return self._instance.Enable
|
|
26
|
+
@property
|
|
27
|
+
def rv_life(self) -> typing.List[int]:
|
|
28
|
+
return self._instance.RvLife
|
|
29
|
+
@property
|
|
30
|
+
def shift_ovc(self) -> typing.List[float]:
|
|
31
|
+
return self._instance.ShiftOvc
|
|
32
|
+
@property
|
|
33
|
+
def part_id(self) -> int:
|
|
34
|
+
return self._instance.PartId
|
|
35
|
+
@property
|
|
36
|
+
def optm_rate(self) -> typing.List[float]:
|
|
37
|
+
return self._instance.OptmRate
|
|
38
|
+
@property
|
|
39
|
+
def max_i_rate(self) -> int:
|
|
40
|
+
return self._instance.MaxIRate
|
|
41
|
+
@property
|
|
42
|
+
def max_di_rate(self) -> int:
|
|
43
|
+
return self._instance.MaxDiRate
|
|
44
|
+
@property
|
|
45
|
+
def trace_env(self) -> float:
|
|
46
|
+
return self._instance.TraceEnv
|
|
47
|
+
@property
|
|
48
|
+
def fanuc_internal_type_name(self) -> str:
|
|
49
|
+
return self._instance.FanucInternalTypeName
|
|
@@ -0,0 +1,25 @@
|
|
|
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 ZpSphereVariableType as zp_sphere_variable_type
|
|
7
|
+
|
|
8
|
+
class ZpSphereVariableType(GenericVariableType):
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = zp_sphere_variable_type()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def radius(self) -> float:
|
|
16
|
+
return self._instance.Radius
|
|
17
|
+
@property
|
|
18
|
+
def prog_name(self) -> typing.List[str]:
|
|
19
|
+
return self._instance.ProgName
|
|
20
|
+
@property
|
|
21
|
+
def line_num(self) -> typing.List[int]:
|
|
22
|
+
return self._instance.LineNum
|
|
23
|
+
@property
|
|
24
|
+
def fanuc_internal_type_name(self) -> str:
|
|
25
|
+
return self._instance.FanucInternalTypeName
|
|
File without changes
|
|
@@ -0,0 +1,88 @@
|
|
|
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.Kinematics import ArmKinematicModels as arm_kinematic_models
|
|
5
|
+
|
|
6
|
+
class ArmKinematicModels(int):
|
|
7
|
+
ARCMate0iA = arm_kinematic_models.ARCMate0iA
|
|
8
|
+
ARCMate0iB = arm_kinematic_models.ARCMate0iB
|
|
9
|
+
ARCMate0iB_2 = arm_kinematic_models.ARCMate0iB_2
|
|
10
|
+
ARCMate100iD = arm_kinematic_models.ARCMate100iD
|
|
11
|
+
ARCMate100iD10L = arm_kinematic_models.ARCMate100iD10L
|
|
12
|
+
ARCMate100iD16S = arm_kinematic_models.ARCMate100iD16S
|
|
13
|
+
ARCMate100iD8L = arm_kinematic_models.ARCMate100iD8L
|
|
14
|
+
ARCMate120iD = arm_kinematic_models.ARCMate120iD
|
|
15
|
+
ARCMate120iD12L = arm_kinematic_models.ARCMate120iD12L
|
|
16
|
+
ARCMate120iD35 = arm_kinematic_models.ARCMate120iD35
|
|
17
|
+
CR14iAL = arm_kinematic_models.CR14iAL
|
|
18
|
+
CR15iA = arm_kinematic_models.CR15iA
|
|
19
|
+
CR35iA = arm_kinematic_models.CR35iA
|
|
20
|
+
CR7iA = arm_kinematic_models.CR7iA
|
|
21
|
+
CR7iAL = arm_kinematic_models.CR7iAL
|
|
22
|
+
CRX10iA = arm_kinematic_models.CRX10iA
|
|
23
|
+
CRX10iAL = arm_kinematic_models.CRX10iAL
|
|
24
|
+
LRMate200iD = arm_kinematic_models.LRMate200iD
|
|
25
|
+
LRMate200iD7C = arm_kinematic_models.LRMate200iD7C
|
|
26
|
+
LRMate200iD7L = arm_kinematic_models.LRMate200iD7L
|
|
27
|
+
LRMate200iD7LC = arm_kinematic_models.LRMate200iD7LC
|
|
28
|
+
LaserRobotHA = arm_kinematic_models.LaserRobotHA
|
|
29
|
+
M10iA10M = arm_kinematic_models.M10iA10M
|
|
30
|
+
M10iA10MS = arm_kinematic_models.M10iA10MS
|
|
31
|
+
M10iA12 = arm_kinematic_models.M10iA12
|
|
32
|
+
M10iA12S = arm_kinematic_models.M10iA12S
|
|
33
|
+
M10iA7L = arm_kinematic_models.M10iA7L
|
|
34
|
+
M10iA8L = arm_kinematic_models.M10iA8L
|
|
35
|
+
M2000iA1700L = arm_kinematic_models.M2000iA1700L
|
|
36
|
+
M2000iA2300 = arm_kinematic_models.M2000iA2300
|
|
37
|
+
M2000iA1200 = arm_kinematic_models.M2000iA1200
|
|
38
|
+
M2000iA900L = arm_kinematic_models.M2000iA900L
|
|
39
|
+
M20iA = arm_kinematic_models.M20iA
|
|
40
|
+
M20iA12L = arm_kinematic_models.M20iA12L
|
|
41
|
+
M20iA20M = arm_kinematic_models.M20iA20M
|
|
42
|
+
M20iA35M = arm_kinematic_models.M20iA35M
|
|
43
|
+
M20iB25C = arm_kinematic_models.M20iB25C
|
|
44
|
+
M410iC110 = arm_kinematic_models.M410iC110
|
|
45
|
+
M410iC185_2 = arm_kinematic_models.M410iC185_2
|
|
46
|
+
M410iC185 = arm_kinematic_models.M410iC185
|
|
47
|
+
M410iC500 = arm_kinematic_models.M410iC500
|
|
48
|
+
M410iC500_2 = arm_kinematic_models.M410iC500_2
|
|
49
|
+
M800iA60 = arm_kinematic_models.M800iA60
|
|
50
|
+
M900iB280L = arm_kinematic_models.M900iB280L
|
|
51
|
+
M900iB330L = arm_kinematic_models.M900iB330L
|
|
52
|
+
M900iB360 = arm_kinematic_models.M900iB360
|
|
53
|
+
M900iB400L = arm_kinematic_models.M900iB400L
|
|
54
|
+
M900iB700 = arm_kinematic_models.M900iB700
|
|
55
|
+
M900iBKAI = arm_kinematic_models.M900iBKAI
|
|
56
|
+
M20iB25 = arm_kinematic_models.M20iB25
|
|
57
|
+
M20iB35S = arm_kinematic_models.M20iB35S
|
|
58
|
+
M710iC12L = arm_kinematic_models.M710iC12L
|
|
59
|
+
M710iC20M = arm_kinematic_models.M710iC20M
|
|
60
|
+
M710iC45M = arm_kinematic_models.M710iC45M
|
|
61
|
+
M710iC50 = arm_kinematic_models.M710iC50
|
|
62
|
+
P700iANewRightyArmRightOffset = arm_kinematic_models.P700iANewRightyArmRightOffset
|
|
63
|
+
P350iA45LeftHand = arm_kinematic_models.P350iA45LeftHand
|
|
64
|
+
P350iA45RightHand = arm_kinematic_models.P350iA45RightHand
|
|
65
|
+
R1000iA100F = arm_kinematic_models.R1000iA100F
|
|
66
|
+
R1000iA130F = arm_kinematic_models.R1000iA130F
|
|
67
|
+
R1000iA80F = arm_kinematic_models.R1000iA80F
|
|
68
|
+
R2000iB125L = arm_kinematic_models.R2000iB125L
|
|
69
|
+
R2000iB175L = arm_kinematic_models.R2000iB175L
|
|
70
|
+
R2000iC100S = arm_kinematic_models.R2000iC100S
|
|
71
|
+
R2000iC270F = arm_kinematic_models.R2000iC270F
|
|
72
|
+
R2000iD100FH = arm_kinematic_models.R2000iD100FH
|
|
73
|
+
R1000iA100F7 = arm_kinematic_models.R1000iA100F7
|
|
74
|
+
R1000iA120F7B_3 = arm_kinematic_models.R1000iA120F7B_3
|
|
75
|
+
R1000iA120F7B_2 = arm_kinematic_models.R1000iA120F7B_2
|
|
76
|
+
R1000iA120F7B = arm_kinematic_models.R1000iA120F7B
|
|
77
|
+
R1000iA120F7BS = arm_kinematic_models.R1000iA120F7BS
|
|
78
|
+
R1000iA120F7BS_3 = arm_kinematic_models.R1000iA120F7BS_3
|
|
79
|
+
R1000iA120F7BS_2 = arm_kinematic_models.R1000iA120F7BS_2
|
|
80
|
+
R2000iB210FS = arm_kinematic_models.R2000iB210FS
|
|
81
|
+
R2000iB220US = arm_kinematic_models.R2000iB220US
|
|
82
|
+
R2000iC125L = arm_kinematic_models.R2000iC125L
|
|
83
|
+
R2000iC190U = arm_kinematic_models.R2000iC190U
|
|
84
|
+
R2000iC210F = arm_kinematic_models.R2000iC210F
|
|
85
|
+
R2000iC210L = arm_kinematic_models.R2000iC210L
|
|
86
|
+
R2000iC210WE = arm_kinematic_models.R2000iC210WE
|
|
87
|
+
R2000iC210WEProto = arm_kinematic_models.R2000iC210WEProto
|
|
88
|
+
R2000iC220U = arm_kinematic_models.R2000iC220U
|
|
File without changes
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.common.joints_position import JointsPosition
|
|
3
|
+
from underautomation.fanuc.common.cartesian_position import CartesianPosition
|
|
4
|
+
from underautomation.fanuc.kinematics.dh_parameters import DhParameters
|
|
5
|
+
import clr
|
|
6
|
+
import os
|
|
7
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
8
|
+
from UnderAutomation.Fanuc.Kinematics.Crx import CrxKinematicsUtils as crx_kinematics_utils
|
|
9
|
+
|
|
10
|
+
class CrxKinematicsUtils:
|
|
11
|
+
def __init__(self, _internal = 0):
|
|
12
|
+
if(_internal == 0):
|
|
13
|
+
self._instance = crx_kinematics_utils()
|
|
14
|
+
else:
|
|
15
|
+
self._instance = _internal
|
|
16
|
+
@staticmethod
|
|
17
|
+
def inverse_kinematics(pose: CartesianPosition, parameters: DhParameters, includeDuals: bool=True, seedJoints: typing.List[float]=None) -> typing.List[JointsPosition]:
|
|
18
|
+
return [JointsPosition(x) for x in crx_kinematics_utils.InverseKinematics(pose._instance if pose else None, parameters._instance if parameters else None, includeDuals, seedJoints)]
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.kinematics.i_dh_parameters import IDhParameters
|
|
3
|
+
from underautomation.fanuc.kinematics.kinematics_category import KinematicsCategory
|
|
4
|
+
from underautomation.fanuc.kinematics.arm_kinematic_models import ArmKinematicModels
|
|
5
|
+
from underautomation.fanuc.ftp.variables.symotn_file import SymotnFile
|
|
6
|
+
from underautomation.fanuc.ftp.variables.mrr_grp_variable_type import MrrGrpVariableType
|
|
7
|
+
import clr
|
|
8
|
+
import os
|
|
9
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
10
|
+
from UnderAutomation.Fanuc.Kinematics import DhParameters as dh_parameters
|
|
11
|
+
|
|
12
|
+
class DhParameters(IDhParameters):
|
|
13
|
+
def __init__(self, d4: float, d5: float, d6: float, a1: float, a2: float, a3: float, _internal = 0):
|
|
14
|
+
if(_internal == 0):
|
|
15
|
+
self._instance = dh_parameters(d4, d5, d6, a1, a2, a3)
|
|
16
|
+
else:
|
|
17
|
+
self._instance = _internal
|
|
18
|
+
@staticmethod
|
|
19
|
+
def from_arm_kinematic_model(model: ArmKinematicModels) -> 'DhParameters':
|
|
20
|
+
return DhParameters(None, None, None, None, None, None, dh_parameters.FromArmKinematicModel(model))
|
|
21
|
+
@staticmethod
|
|
22
|
+
def from_opw_parameters(a1: float, a2: float, c2: float, c3: float, c4: float) -> 'DhParameters':
|
|
23
|
+
return DhParameters(None, None, None, None, None, None, dh_parameters.FromOpwParameters(a1, a2, c2, c3, c4))
|
|
24
|
+
@staticmethod
|
|
25
|
+
def from_def_file(doc: typing.Any) -> typing.List['DhParameters']:
|
|
26
|
+
return [DhParameters(x) for x in dh_parameters.FromDefFile(doc)]
|
|
27
|
+
@staticmethod
|
|
28
|
+
def from_symotn_file(file: SymotnFile) -> typing.List['DhParameters']:
|
|
29
|
+
return [DhParameters(x) for x in dh_parameters.FromSymotnFile(file._instance if file else None)]
|
|
30
|
+
@staticmethod
|
|
31
|
+
def from_mrr_grp(mrrGrp: MrrGrpVariableType) -> 'DhParameters':
|
|
32
|
+
return DhParameters(None, None, None, None, None, None, dh_parameters.FromMrrGrp(mrrGrp._instance if mrrGrp else None))
|
|
33
|
+
@property
|
|
34
|
+
def d4(self) -> float:
|
|
35
|
+
return self._instance.D4
|
|
36
|
+
@d4.setter
|
|
37
|
+
def d4(self, value: float):
|
|
38
|
+
self._instance.D4 = value
|
|
39
|
+
@property
|
|
40
|
+
def d5(self) -> float:
|
|
41
|
+
return self._instance.D5
|
|
42
|
+
@d5.setter
|
|
43
|
+
def d5(self, value: float):
|
|
44
|
+
self._instance.D5 = value
|
|
45
|
+
@property
|
|
46
|
+
def d6(self) -> float:
|
|
47
|
+
return self._instance.D6
|
|
48
|
+
@d6.setter
|
|
49
|
+
def d6(self, value: float):
|
|
50
|
+
self._instance.D6 = value
|
|
51
|
+
@property
|
|
52
|
+
def a1(self) -> float:
|
|
53
|
+
return self._instance.A1
|
|
54
|
+
@a1.setter
|
|
55
|
+
def a1(self, value: float):
|
|
56
|
+
self._instance.A1 = value
|
|
57
|
+
@property
|
|
58
|
+
def a2(self) -> float:
|
|
59
|
+
return self._instance.A2
|
|
60
|
+
@a2.setter
|
|
61
|
+
def a2(self, value: float):
|
|
62
|
+
self._instance.A2 = value
|
|
63
|
+
@property
|
|
64
|
+
def a3(self) -> float:
|
|
65
|
+
return self._instance.A3
|
|
66
|
+
@a3.setter
|
|
67
|
+
def a3(self, value: float):
|
|
68
|
+
self._instance.A3 = value
|
|
69
|
+
@property
|
|
70
|
+
def kinematics_category(self) -> KinematicsCategory:
|
|
71
|
+
return KinematicsCategory(self._instance.KinematicsCategory)
|
|
72
|
+
@property
|
|
73
|
+
def tag(self) -> typing.Any:
|
|
74
|
+
return self._instance.Tag
|
|
75
|
+
@tag.setter
|
|
76
|
+
def tag(self, value: typing.Any):
|
|
77
|
+
self._instance.Tag = value
|
|
@@ -0,0 +1,30 @@
|
|
|
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.Kinematics import IDhParameters as i_dh_parameters
|
|
6
|
+
|
|
7
|
+
class IDhParameters:
|
|
8
|
+
def __init__(self, _internal = 0):
|
|
9
|
+
if(_internal == 0):
|
|
10
|
+
self._instance = i_dh_parameters()
|
|
11
|
+
else:
|
|
12
|
+
self._instance = _internal
|
|
13
|
+
@property
|
|
14
|
+
def d4(self) -> float:
|
|
15
|
+
return self._instance.D4
|
|
16
|
+
@property
|
|
17
|
+
def d5(self) -> float:
|
|
18
|
+
return self._instance.D5
|
|
19
|
+
@property
|
|
20
|
+
def d6(self) -> float:
|
|
21
|
+
return self._instance.D6
|
|
22
|
+
@property
|
|
23
|
+
def a1(self) -> float:
|
|
24
|
+
return self._instance.A1
|
|
25
|
+
@property
|
|
26
|
+
def a2(self) -> float:
|
|
27
|
+
return self._instance.A2
|
|
28
|
+
@property
|
|
29
|
+
def a3(self) -> float:
|
|
30
|
+
return self._instance.A3
|
|
File without changes
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.kinematics.i_dh_parameters import IDhParameters
|
|
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.Kinematics.Internal import ArmModelAttribute as arm_model_attribute
|
|
7
|
+
|
|
8
|
+
class ArmModelAttribute(IDhParameters):
|
|
9
|
+
def __init__(self, description: str, d4: float, d5: float, d6: float, a1: float, a2: float, a3: float, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = arm_model_attribute(description, d4, d5, d6, a1, a2, a3)
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def d4(self) -> float:
|
|
16
|
+
return self._instance.D4
|
|
17
|
+
@property
|
|
18
|
+
def d5(self) -> float:
|
|
19
|
+
return self._instance.D5
|
|
20
|
+
@property
|
|
21
|
+
def d6(self) -> float:
|
|
22
|
+
return self._instance.D6
|
|
23
|
+
@property
|
|
24
|
+
def a1(self) -> float:
|
|
25
|
+
return self._instance.A1
|
|
26
|
+
@property
|
|
27
|
+
def a2(self) -> float:
|
|
28
|
+
return self._instance.A2
|
|
29
|
+
@property
|
|
30
|
+
def a3(self) -> float:
|
|
31
|
+
return self._instance.A3
|
|
@@ -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.Kinematics import KinematicsCategory as kinematics_category
|
|
5
|
+
|
|
6
|
+
class KinematicsCategory(int):
|
|
7
|
+
Invalid = kinematics_category.Invalid
|
|
8
|
+
Crx = kinematics_category.Crx
|
|
9
|
+
Opw = kinematics_category.Opw
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.common.cartesian_position import CartesianPosition
|
|
3
|
+
from underautomation.fanuc.common.joints_position import JointsPosition
|
|
4
|
+
from underautomation.fanuc.kinematics.dh_parameters import DhParameters
|
|
5
|
+
import clr
|
|
6
|
+
import os
|
|
7
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
8
|
+
from UnderAutomation.Fanuc.Kinematics import KinematicsUtils as kinematics_utils
|
|
9
|
+
|
|
10
|
+
class KinematicsUtils:
|
|
11
|
+
def __init__(self, _internal = 0):
|
|
12
|
+
if(_internal == 0):
|
|
13
|
+
self._instance = kinematics_utils()
|
|
14
|
+
else:
|
|
15
|
+
self._instance = _internal
|
|
16
|
+
@staticmethod
|
|
17
|
+
def forward_kinematics(jointAnglesRad: typing.List[float], dhParameters: DhParameters) -> CartesianPosition:
|
|
18
|
+
return CartesianPosition(None, None, None, None, None, None, None, kinematics_utils.ForwardKinematics(jointAnglesRad, dhParameters._instance if dhParameters else None))
|
|
19
|
+
@staticmethod
|
|
20
|
+
def inverse_kinematics(position: CartesianPosition, parameters: DhParameters) -> typing.List[JointsPosition]:
|
|
21
|
+
return [JointsPosition(x) for x in kinematics_utils.InverseKinematics(position._instance if position else None, parameters._instance if parameters else None)]
|
|
22
|
+
@staticmethod
|
|
23
|
+
def mul(A: typing.List[float], B: typing.List[float]) -> typing.List[float]:
|
|
24
|
+
return kinematics_utils.Mul(A, B)
|
|
File without changes
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.common.joints_position import JointsPosition
|
|
3
|
+
from underautomation.fanuc.common.cartesian_position import CartesianPosition
|
|
4
|
+
from underautomation.fanuc.kinematics.dh_parameters import DhParameters
|
|
5
|
+
import clr
|
|
6
|
+
import os
|
|
7
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
8
|
+
from UnderAutomation.Fanuc.Kinematics.Opw import OpwKinematicsUtils as opw_kinematics_utils
|
|
9
|
+
|
|
10
|
+
class OpwKinematicsUtils:
|
|
11
|
+
def __init__(self, _internal = 0):
|
|
12
|
+
if(_internal == 0):
|
|
13
|
+
self._instance = opw_kinematics_utils()
|
|
14
|
+
else:
|
|
15
|
+
self._instance = _internal
|
|
16
|
+
@staticmethod
|
|
17
|
+
def inverse_kinematics(pose: CartesianPosition, dhParameters: DhParameters) -> typing.List[JointsPosition]:
|
|
18
|
+
return [JointsPosition(x) for x in opw_kinematics_utils.InverseKinematics(pose._instance if pose else None, dhParameters._instance if dhParameters else None)]
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.5.0.0
|
|
File without changes
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.license.license_info import LicenseInfo
|
|
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.License import InvalidLicenseException as invalid_license_exception
|
|
7
|
+
|
|
8
|
+
class InvalidLicenseException:
|
|
9
|
+
def __init__(self, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = invalid_license_exception()
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
@property
|
|
15
|
+
def license_info(self) -> LicenseInfo:
|
|
16
|
+
return LicenseInfo(None, None, self._instance.LicenseInfo)
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.license.license_state import LicenseState
|
|
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.License import LicenseInfo as license_info
|
|
7
|
+
|
|
8
|
+
class LicenseInfo:
|
|
9
|
+
def __init__(self, licenseIdentifier: str, licenseKey: str, _internal = 0):
|
|
10
|
+
if(_internal == 0):
|
|
11
|
+
self._instance = license_info(licenseIdentifier, licenseKey)
|
|
12
|
+
else:
|
|
13
|
+
self._instance = _internal
|
|
14
|
+
def __repr__(self):
|
|
15
|
+
return self._instance.ToString()
|
|
16
|
+
@property
|
|
17
|
+
def license_key(self) -> str:
|
|
18
|
+
return self._instance.LicenseKey
|
|
19
|
+
@property
|
|
20
|
+
def product(self) -> str:
|
|
21
|
+
return self._instance.Product
|
|
22
|
+
@property
|
|
23
|
+
def evaluation_days_left(self) -> typing.Any:
|
|
24
|
+
return self._instance.EvaluationDaysLeft
|
|
25
|
+
@property
|
|
26
|
+
def evaluation_start_date(self) -> typing.Any:
|
|
27
|
+
return self._instance.EvaluationStartDate
|
|
28
|
+
@property
|
|
29
|
+
def licensee(self) -> str:
|
|
30
|
+
return self._instance.Licensee
|
|
31
|
+
@property
|
|
32
|
+
def trial_period_expiration_date(self) -> typing.Any:
|
|
33
|
+
return self._instance.TrialPeriodExpirationDate
|
|
34
|
+
@property
|
|
35
|
+
def state(self) -> LicenseState:
|
|
36
|
+
return LicenseState(self._instance.State)
|
|
37
|
+
@property
|
|
38
|
+
def product_release_date(self) -> typing.Any:
|
|
39
|
+
return self._instance.ProductReleaseDate
|
|
40
|
+
@property
|
|
41
|
+
def maintenance_years(self) -> int:
|
|
42
|
+
return self._instance.MaintenanceYears
|
|
43
|
+
@property
|
|
44
|
+
def license_issued_date(self) -> typing.Any:
|
|
45
|
+
return self._instance.LicenseIssuedDate
|
|
46
|
+
@property
|
|
47
|
+
def maintenance_expiration_date(self) -> typing.Any:
|
|
48
|
+
return self._instance.MaintenanceExpirationDate
|
|
@@ -0,0 +1,12 @@
|
|
|
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.License import LicenseState as license_state
|
|
5
|
+
|
|
6
|
+
class LicenseState(int):
|
|
7
|
+
Invalid = license_state.Invalid
|
|
8
|
+
Trial = license_state.Trial
|
|
9
|
+
ExtraTrial = license_state.ExtraTrial
|
|
10
|
+
Expired = license_state.Expired
|
|
11
|
+
MaintenanceNeeded = license_state.MaintenanceNeeded
|
|
12
|
+
Licensed = license_state.Licensed
|
|
File without changes
|
|
File without changes
|