Skip to content

Commit 5ac4f7a

Browse files
Update to new version : 3.4.0.0
1 parent 95e8590 commit 5ac4f7a

File tree

6 files changed

+8
-45
lines changed

6 files changed

+8
-45
lines changed

underautomation/fanuc/kinematics/crx10ia_l_dhm_parameters.py

Lines changed: 0 additions & 31 deletions
This file was deleted.
0 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.0.0
1+
3.4.0.0

underautomation/fanuc/snpx/internal/snpx_client_base.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ def __init__(self, _internal = 0):
2323
self._instance = snpx_client_base()
2424
else:
2525
self._instance = _internal
26+
def poll_and_get_updated_connected_state(self) -> bool:
27+
return self._instance.PollAndGetUpdatedConnectedState()
2628
def disconnect(self) -> None:
2729
self._instance.Disconnect()
2830
def clear_alarms(self) -> None:

underautomation/fanuc/telnet/internal/telnet_client_base.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ class Wrapper :
6666
def __init__(self, _internal):
6767
self._instance = _internal
6868
self._instance.CommandReceived+= lambda sender, e : handler(Wrapper(sender), Wrapper(e))
69+
def poll_and_get_updated_connected_state(self) -> bool:
70+
return self._instance.PollAndGetUpdatedConnectedState()
6971
def disconnect(self) -> None:
7072
self._instance.Disconnect()
7173
def abort(self, program: str="None", force: bool=True) -> ProgramCommandResult:

whatsNew.md

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
- Add `GetEncoding` method to `StringUtils` for retrieving encoding by controller language
2-
3-
```csharp
4-
namespace UnderAutomation.Fanuc.Common;
5-
6-
public static class StringUtils {
7-
public static Encoding GetEncoding(Languages language);
8-
}
9-
```
10-
11-
- Fix Telnet program Breakpoint commands for Japanese and Chinese controllers
12-
13-
- Set FTP encoding according to robot controller language
1+
- Add method `PollAndGetUpdatedConnectedState` for SNPX and Telnet to poll and get the updated connected state of the controller.
2+
- Fix issue where Telnet raises a StackOverflowException after closing ROBOGUIDE
3+
- Updated License information after the introduction of the Pro License

0 commit comments

Comments
 (0)