×

Teilen Sie Ihre Erfahrunge und Wünsche mit uns und anderen Usern!

Teilen Sie Ihre Erfahrunge und Wünsche mit uns und anderen Usern!

0
Answered

Modbus TCP/IP support

Rick 5 years ago in General Questions updated 2 years ago 19

I. was wondering if  Modbus TCP / IP support was planned in the near future. 


Modbus is very well supported in the open source world and would enable they use of a large selection of pre-existing software, hardware and PLCs, in North American particularly.

Answer
Support 4 years ago

How to use Modbus on G4A side is described here:

https://game4automation.com/documentation/current/modbus.html

G4A works as a Modbus server so your PLC needs to write and read from the modbus registers by some small PLC code. We don't have any knowledge about fx3u so you would need to take care about the fx3u side by yourself.

Best regards

0
Answered

OPCUA4Unity Adding Monitored Items to Subscription.

JacobKreck 5 years ago in OPCUA4Unity updated 5 years ago 7

Hello, I'm currently working on a project that requires reading of thousands of node values. Currently your documentation implies we should subscribe to nodes using OPCInterface.Subscribe() however, this makes a new subscription for each value which quickly reaches a limit. Is there a procedure for adding new monitored items to a single subscription?
 

Answer
Support 5 years ago

Ho Jacob, we have now a beta whoch is able to have the needed limits. It is currently tested by a few customers and will be released soon.

If you are interest I can send you the beta.

Best regards

Thomas

0
Answered

S7 interface problem

D St 5 years ago in realvirtual.io Starter and Professional updated by Support 5 years ago 3

Hello,

I was following the youtube tutorial on how to connect Unity with S7 controller (in my case 1500).


After I successfully checked the connection and added PLCTags sdf file, made a fast test scene but when I Play it I have the following messages cycling:

Image 200

Image 201

Image 199

Any suggestions ?

Answer
Support 5 years ago

You are welcome, please give us a good rating in the Unity asset store if you are happy with our solution - thanks!

0
Answered

Tracking Pulses

Paul Brumfitt 5 years ago in General Questions updated by Support 5 years ago 2

Hello there,

I have been messing around with a behaviour interface to add tracking pulses to a drive. It has suddenly dawned on me that you may already have such functionality tucked away somewhere, please let me know before I re-invent the wheel ;)

Answer
Support 5 years ago

No we don't send out pulses so far on a drive. But it should be simple to add. I only see a problem if drive is to fast. Pulses could be needed faster than communication cycle is.

0
Answered

Student Access

kai grundmann 5 years ago in realvirtual.io Starter and Professional updated by Support 5 years ago 2

Dear Thomas


I am currently working as a student at the Corporate University of Baden-Württemberg on my bachelor thesis on machine simulation and automation.

G4A is helping me a lot with my thesis. I find it very intuitive and easy to use. Furthermore, your Youtube tutorials are very helpful in learning the basics of G4A.

I was wondering whether professional licenses will be available for students in the near future?

I am looking forward to your feedback.


With kind regards

Kai Grundmann

Answer
Support 5 years ago

Thanks a lot for the positive feedback. We are not planning to do that. The Starter version is meant for for free usage. In very rare cases we are developing things together with universities, companies or students in bachelor thesis and in this case we are suppling for free licenses based on special test contracts.

Best regards

Thomas

0
Answered

OPCUA and WebGl

Steffen 5 years ago in OPCUA4Unity updated by Support 5 years ago 1

Hi,

is it possible to run the OPCUA Interface inside a webgl app? I tried with Unity 2018.4.15 and 2019.2.17 and always got a "Memory index out of range" error in Chrome and Edge.

Thanks,

Steffen

Answer
Support 5 years ago

No WebGL is not supported - sorry. I also think that communicating in a Web application over OPCUA might also be not wished from the security point of view.

0
Completed

Universal Robots integration

Mike 5 years ago updated by Support 5 years ago 2
Hello,
we are working a lot with universal robots (UR3, UR5, UR10). Will there be an integration for these robots in Game4Automation Professional? If so, when?

Best regards,
Mike

0
Answered

Augmented Reality with Siemens

Ivan 5 years ago in realvirtual.io Starter and Professional updated by Support 5 years ago 2

Hi, I am interested in connecting a SIEMENS PLC to content in Augmented Reality with Unity in a Android mobile phone. How can I do it with Game4Automation?

Answer
Support 5 years ago

Hi,

best would be to do it with Game4Automation Professional and the included OPCUA interface.

With the OPCUA interface, you can get the data from the PLC and with the standard Unity UI and AR functions, you could display it on your android phone. Like in this example:

Best regards

Thomas

Answer
Support 5 years ago

Hi Jeff,

you will need the Professional version because all the "advanced" interfaces are part of Professional (like the needed Shared Memory Interface to PLCConnect).

Currently the PLCConnect developers are developing a "special" Game4Automation Interface what will be a "special" PLCConnect Interface on the Game4Automation Professional side. But the current version and standard Shared Memory should also work.


I will get you a PLCConnet trial and some documentation on it. It might take until end of this week. Could you please send me your full contact data to info@game4automation.com.


Thanks and best regards

Thomas

0
Answered

Writing to PLC inputs

leevi parssinen 5 years ago in realvirtual.io Starter and Professional updated by Support 5 years ago 2

Hi,

If i have PLC connected and imported signals...how would i approach writing for example a velocity of a rigid body into the value of a PLC signal under TwinCATInterface?

Answer
Support 5 years ago

Hi Leve,

I assume that you are having PLCInputs and PLCOutputs in your project after importing from TwinCAT:


Now you can write to the PLCInput with 

PLCInput.Value = YourValue;



You should write your own behavior scripts and attach this to the Gameobject with the rigid-body where you want to measure the velocity.


Here is a simple example of a behavior script (it is the Sensor_standard script from the Game4Auomation Framework).

This script is sending a "High" to the PLC when the sensor is occupied.

namespace game4automation
{
  [RequireComponent(typeof(Sensor))]
//! The Sensor_Standard component is providing the Sensor behavior and connection to the PLC inputs and outputs.
public class Sensor_Standard : BehaviorInterface
{

  [Header("Settings")] public bool NormallyClosed = false; //!< Defines if sensor signal is *true* if occupied (*NormallyClosed=false*) of if signal is *false* if occupied (*NormallyClosed=true*)
  [Header("Interface Connection")] public PLCInputBool Occupied; //! Boolean PLC input for the Sensor signal.

private Sensor Sensor;
private bool _isOccupiedNotNull;

// Use this for initialization
void Start()
{
_isOccupiedNotNull = Occupied != null;
Sensor = GetComponent<Sensor>();
}

// Update is called once per frame
  void Update()
{
bool occupied = false;

// Set Behavior Outputs
if (NormallyClosed)
{
occupied = !Sensor.Occupied;
}
else
{
occupied = Sensor.Occupied;
}

// Set external PLC Outputs
if (_isOccupiedNotNull)
Occupied.Value = occupied;

}
}
}



Senden Sie uns Ihr Feedback

Wir hören zu und setzen Ihre Ideen um.
0
Completed

I used mono build normally, but I used il2cpp incorrectly

zhang kang 11 months ago updated by Support 9 months ago 7
0
Answered

TwinCat HMI Interface | Error in Connection

Andrea 11 months ago in General Questions updated by Support 9 months ago 7
0
Declined

IL2CPP erro

zhang kang 11 months ago updated by Support 11 months ago 4
0
Answered

S7 TCP Interface DB access

Wombo 5 years ago in realvirtual.io Starter and Professional updated 5 years ago 12
0
Answered

AR template

marinel moraru 5 years ago in General Questions updated by Support 5 years ago 1
0
Answered

Tracking Pulses

Paul Brumfitt 5 years ago in General Questions updated by Support 5 years ago 2
0
Answered

About OPCUA, Licence and use

matthieu leroux 5 years ago in OPCUA4Unity updated by Support 5 years ago 1
0
Answered

State: Robot Integration

Mike 5 years ago in General Questions updated by Support 5 years ago 8
0
Answered

S7 interface problem

D St 5 years ago in realvirtual.io Starter and Professional updated by Support 5 years ago 3
+1
Answered

When will Unity 2019 be supported?

Stan 5 years ago in OPCUA4Unity updated by Support 5 years ago 5
0
Answered

Augmented Reality with Siemens

Ivan 5 years ago in realvirtual.io Starter and Professional updated by Support 5 years ago 2