Rednas
Rednas
For siemens I would recommend RPC or MQQT https://www.youtube.com/watch?v=d9EX2FixY1A Unfortunately this is not supported for Schneiderš¢
> > For siemens I would recommend RPC or MQQT https://www.youtube.com/watch?v=d9EX2FixY1A Unfortunately this is not supported for Schneiderš¢ > > MQTT on S7 suck! just for fun try JSON payload...
I saw benchmarks where ua is 5-7 times faster then polling. So if you would be able to reach 500ms with polling you would get something like 100ms with ua.
Only with an external ua server there is polling. In my case the PLC is the ua server which looks every 20ms with a dedicated core for changes in the...
Thanks for your response. Is it not better to get income by simply applying the library for customers with a need of event driven communication? It's a lot faster then...
I agree. Unfortunately polling is pretty much the default within OT. Libraries like this could help the adoption of OPC UA but RPC is also getting adopted more and more.
Idk For me it's confusing that a toggle button is returning a `string `instead of a `boolean`. Why not support both scenarios to make it more universal? It think it...
I meant to list the custom svg files from the customCollections ``` export default defineNuxtConfig({ modules: [ '@nuxt/icon' ], ssr: false, icon: { provider: 'server', //
Just tried it and it actually also works for custom collections. Unfortunate thing is that it only works on server levelš¤ **server** ``` import { listIcons } from "@iconify/vue" var...
You can easily reproduce by **pages/icons.vue** ``` {{ listIcons() }} import { listIcons } from "@iconify/vue" ``` **console**  I also created an iconify issue for tracking this issue https://github.com/iconify/iconify/issues/365...