SC3 - Sequence Controller 3*

From PlcWiki

(Difference between revisions)
Jump to: navigation, search
Jon (Talk | contribs)
(Created page with 'Configuration is expected in the /var/tomcat/sc3/conf/config.json file { "kernel": { "server": "172.22.20.4", "port": 7789, "title": "TEST Kernel" …')

Current revision as of 07:23, 27 October 2020

Configuration is expected in the /var/tomcat/sc3/conf/config.json file

 {
   "kernel": {
      "server": "172.22.20.4",
      "port": 7789,
      "title": "TEST Kernel"
   }
 }

The title parameter is optional.

Or it can contain an array of kernels

 {
   "kernel": [
      {
         "server": "172.22.20.4",
         "port": 7789,
         "title": "TEST Kernel"
      },
      {
         "server": "172.22.20.5",
         "port": 7766,
         "title": "Demo Kernel"
      }
   ]
 }
Personal tools