Tutorial

Come Automatizzare TIA Portal con Openness API

La guida definitiva per trasformare il tuo flusso di lavoro di ingegneria Siemens in una moderna pipeline DevOps.

T
Team T-IA Connect
15 min di lettura
Aggiornato 10 Mar 2026

Perché l'Automazione è Inevitabile

L'ingegneria manuale in TIA Portal è lenta e soggetta a errori. Tasti destri, creazione blocchi, copia-incolla codice... Questi compiti ripetitivi devono sparire. Grazie all'Openness API (e al wrapper REST T-IA Connect), puoi guidare TIA Portal come qualsiasi software moderno.

Prerequisiti

  • TIA Portal V16, V17, V18, V19 o V21 installato
  • Una licenza T-IA Connect (o piano Freemium)
  • PowerShell o Python installato sulla vostra macchina

Passo 1: Avviare l'API REST

Invece di avviare TIA Portal manualmente, avvieremo il server T-IA Connect che agirà da gateway. Apri il terminale ed esegui:

PowerShell
./TiaPortalApi.App.exe --headless

Passo 2: Health Check

Prima di tutto, verifichiamo che l'API funzioni e quali versioni di TIA Portal sono disponibili.

curl
curl http://localhost:9000/api/health

curl http://localhost:9000/api/health/versions
Response
{
  "status": "healthy",
  "tiaPortalConnected": true,
  "uptime": "00:01:23"
}

{
  "installedVersions": ["V17", "V18", "V19"]
}

Passo 3: Creare un Progetto

Basta con i menu 'File > Nuovo'. Inviamo una richiesta POST per creare un progetto vuoto.

curl — POST /api/projects/actions/create
curl -X POST http://localhost:9000/api/projects/actions/create \
  -H "Content-Type: application/json" \
  -d '{
    "name": "MyAutomatedProject",
    "path": "C:\\TIA_Projects",
    "version": "V19"
  }'
Response
{
  "name": "MyAutomatedProject",
  "path": "C:\\TIA_Projects\\MyAutomatedProject",
  "version": "V19",
  "created": true
}

Passo 4: Aggiungere un PLC e Creare un FB

Cercate una CPU nel catalogo hardware, aggiungetela al progetto e create un Function Block con codice SCL — tutto in poche chiamate API.

curl — Search catalog + Add device
# Search the hardware catalog
curl -X POST http://localhost:9000/api/catalog/actions/search \
  -H "Content-Type: application/json" \
  -d '{ "searchPattern": "CPU 1511" }'

# Add the device to the project
curl -X POST http://localhost:9000/api/projects/devices/actions/add \
  -H "Content-Type: application/json" \
  -d '{
    "name": "PLC_1",
    "typeId": "<typeId from search>",
    "deviceName": "CPU 1511C-1 PN"
  }'

# Create a Function Block
curl -X POST http://localhost:9000/api/devices/PLC_1/blocks \
  -H "Content-Type: application/json" \
  -d '{
    "name": "FB_MotorControl",
    "type": "FB",
    "programmingLanguage": "SCL"
  }'

# Add SCL code to the block
curl -X POST http://localhost:9000/api/devices/PLC_1/blocks/FB_MotorControl/networks \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Motor control logic",
    "code": "#Running := #Start AND NOT #Stop;\nIF #Running THEN\n  #Speed := #SpeedSetpoint;\nEND_IF;"
  }'
Response
// Block creation response
{
  "name": "FB_MotorControl",
  "type": "FB",
  "programmingLanguage": "SCL",
  "number": 1
}

// Network added
{
  "networkId": 1,
  "title": "Motor control logic",
  "created": true
}

Passo 5: Creare Tag

Importate tag PLC (ingressi, uscite, memoria) in blocco con una singola chiamata API.

curl — POST /api/devices/PLC_1/tags/actions/import
curl -X POST http://localhost:9000/api/devices/PLC_1/tags/actions/import \
  -H "Content-Type: application/json" \
  -d '{
    "tagTable": "Motors",
    "tags": [
      { "name": "Motor1_Start",   "dataType": "Bool", "address": "%I0.0" },
      { "name": "Motor1_Stop",    "dataType": "Bool", "address": "%I0.1" },
      { "name": "Motor1_Running", "dataType": "Bool", "address": "%Q0.0" },
      { "name": "Motor1_Speed",   "dataType": "Real", "address": "%QD4"  },
      { "name": "Motor1_Fault",   "dataType": "Bool", "address": "%Q0.1" }
    ]
  }'
Response
{
  "tagTable": "Motors",
  "importedCount": 5,
  "tags": [
    { "name": "Motor1_Start",   "dataType": "Bool", "address": "%I0.0" },
    { "name": "Motor1_Stop",    "dataType": "Bool", "address": "%I0.1" },
    { "name": "Motor1_Running", "dataType": "Bool", "address": "%Q0.0" },
    { "name": "Motor1_Speed",   "dataType": "Real", "address": "%QD4"  },
    { "name": "Motor1_Fault",   "dataType": "Bool", "address": "%Q0.1" }
  ]
}

Passo 6: Compilare il Progetto

Avviate una compilazione e seguite il progresso tramite l'API Jobs. La compilazione viene eseguita in modo asincrono.

curl — Compile + Poll job
# Start compilation
curl -X POST http://localhost:9000/api/devices/PLC_1/actions/compile

# Poll the job status (replace <jobId>)
curl http://localhost:9000/api/jobs/<jobId>
Response
// Compilation started
{ "jobId": "c7f3a1b2-...", "status": "running" }

// Job completed
{
  "jobId": "c7f3a1b2-...",
  "status": "completed",
  "errors": [],
  "warnings": 2
}

Passo 7: Esportare in XML

Esportate i vostri blocchi in formato SimaticML (XML) per il controllo versione con Git.

curl — POST /api/devices/PLC_1/blocks/actions/export
curl -X POST http://localhost:9000/api/devices/PLC_1/blocks/actions/export \
  -H "Content-Type: application/json" \
  -d '{
    "blocks": ["FB_MotorControl"],
    "exportPath": "C:\\TIA_Projects\\Export"
  }'
Response
{
  "exportedCount": 1,
  "exportPath": "C:\\TIA_Projects\\Export",
  "files": ["FB_MotorControl.xml"]
}

Passo 8: Salvare e Chiudere

Salvate il progetto e chiudetelo correttamente. L'istanza TIA Portal è libera per la prossima esecuzione.

curl — Save & Close
curl -X POST http://localhost:9000/api/projects/actions/save

curl -X POST http://localhost:9000/api/projects/actions/close
Response
{ "saved": true }

{ "closed": true }

E Adesso?

Hai appena automatizzato il 90% dei compiti manuali di creazione progetto. Ora puoi integrare questo script nella tua pipeline CI/CD (Jenkins, GitLab CI) per validare il codice ad ogni commit.

Scaricate gli script completi di questo tutorial e provateli con il nostro piano Freemium.