- 138
- 1 673 854
DerHecht4.0
Germany
Приєднався 7 гру 2019
Hi,
want to share my impressions of WinCC Unified. I want share tips and tricks around the topic. If you have a idea for a Video I can try to create one.
I have learned a lot of the "basic" stuff. Now I want to start with CustomWebcontrols and some Edge apps. Please give me a little time. First I need to understand how it works
You finde my code and projects on GitHub
github.com/WinCCUnifiedbyHecht
want to share my impressions of WinCC Unified. I want share tips and tricks around the topic. If you have a idea for a Video I can try to create one.
I have learned a lot of the "basic" stuff. Now I want to start with CustomWebcontrols and some Edge apps. Please give me a little time. First I need to understand how it works
You finde my code and projects on GitHub
github.com/WinCCUnifiedbyHecht
WinCC Unified V18: List files and folders structures with JavaScript
In this Video I want to show you how you can browsing files in the directory with the new JavaScript function HMIRuntime.FileSystem.Browse
00:00 Intro
00:20 What is possible with this function
01:29 How does it work
//JS code
Screen.Items("txtFolders").Text = '';//reset Output Textbox folder
Screen.Items("txtFiles").Text = '';//rest Output Textbox Files
let mypath = Screen.Items("IOPath").ProcessValue; //your Path like D:/
let filter= Screen.Items("IOFilter").ProcessValue; //filter with wildcards like *txt or ??lo for flow
let rec = Screen.Items("SWRecursive").IsAlternateState; //list all files in sub folders
HMIRuntime.FileSystem.Browse(mypath, filter, rec)
.then( function(pathnames) {
for ( let i=0; i "smaller-than sign" pathnames.length; i++) {
let path = pathnames[i];
if ( HMIRuntime.FileSystem.IsDirectory(path) )
{
/* found directory */
Screen.Items("txtFolders").Text += path + "
";
HMIRuntime.Trace('found directory : ' + path);
}
else
{
/* found file */
Screen.Items("txtFiles").Text += path + "
";
HMIRuntime.Trace('found file : ' + path);
}
}
}).catch(function(errorcode) {
let errorMsg = HMIRuntime.GetDetailedErrorDescription(errorcode);
Screen.Items("txtFiles").Text += errorMsg + "
";
HMIRuntime.Trace(' Browse error: ' + errorMsg);
});
#DerHecht #WinCC #Unified #TIAPortal #V18
Music from Unicorn Heads- Drifting at 432 Hz ua-cam.com/video/6jKPUp1qFP0/v-deo.html
00:00 Intro
00:20 What is possible with this function
01:29 How does it work
//JS code
Screen.Items("txtFolders").Text = '';//reset Output Textbox folder
Screen.Items("txtFiles").Text = '';//rest Output Textbox Files
let mypath = Screen.Items("IOPath").ProcessValue; //your Path like D:/
let filter= Screen.Items("IOFilter").ProcessValue; //filter with wildcards like *txt or ??lo for flow
let rec = Screen.Items("SWRecursive").IsAlternateState; //list all files in sub folders
HMIRuntime.FileSystem.Browse(mypath, filter, rec)
.then( function(pathnames) {
for ( let i=0; i "smaller-than sign" pathnames.length; i++) {
let path = pathnames[i];
if ( HMIRuntime.FileSystem.IsDirectory(path) )
{
/* found directory */
Screen.Items("txtFolders").Text += path + "
";
HMIRuntime.Trace('found directory : ' + path);
}
else
{
/* found file */
Screen.Items("txtFiles").Text += path + "
";
HMIRuntime.Trace('found file : ' + path);
}
}
}).catch(function(errorcode) {
let errorMsg = HMIRuntime.GetDetailedErrorDescription(errorcode);
Screen.Items("txtFiles").Text += errorMsg + "
";
HMIRuntime.Trace(' Browse error: ' + errorMsg);
});
#DerHecht #WinCC #Unified #TIAPortal #V18
Music from Unicorn Heads- Drifting at 432 Hz ua-cam.com/video/6jKPUp1qFP0/v-deo.html
Переглядів: 10 580
Відео
WinCC Unified V18: adaption of the Screenbuffer and usage of session local tags
Переглядів 6 тис.Рік тому
In this Video I want to show you how what needs adapted in the screen buffer from the V16 that it works again with V18 project: github.com/WinCCUnifiedbyHecht/TIA_Project_ScreenBuffer Explanation of the project: WinCC Unified V16: create your own Screen buffer with JavaScript ua-cam.com/video/OncXR0kDapE/v-deo.html 00:00 Intro 00:18 Adaption in V18 01:12 session local tags 02:11 Project in Gith...
WinCC Unified V18: Animation with Multiple bits, Expressions and Mathematical operators
Переглядів 12 тис.2 роки тому
In this Video I want to show you how you can configure animation with Multiple bits, logical Expressions and Mathematical operators 00:00 Intro 00:11 Multiple bits 01:20 logical expressions 03:20 Mathematical operators #DerHecht #WinCC #Unified #TIAPortal #V18 Music from Unicorn Heads- Drifting at 432 Hz ua-cam.com/video/6jKPUp1qFP0/v-deo.html
WinCC Unified V18: Grouping Screen objects
Переглядів 9 тис.2 роки тому
In this Video I want to show you how you can group objects in the screeneditor, modify a group via script and how groups in Faceplates working 00:00 Intro 00:11 Grouping objects 01:29 Rotation of the group 02:45 Modify the group via script 04:44 Groups in Faceplate #DerHecht #WinCC #Unified #TIAPortal #V18 Music from Unicorn Heads- Drifting at 432 Hz ua-cam.com/video/6jKPUp1qFP0/v-deo.html
TIA Portal V18 & WinCC Unified: Download, Install, convert project, solve HTTP 503 error
Переглядів 40 тис.2 роки тому
In this Video I want to show you how do download TIA Portal V18 with WinCC Unified and install it. How to convert your V17 project to V18 and start it. If you run into the Runtime Error HTTP Error 503 how you can solve it SIMATIC STEP 7 incl. Safety, S7-PLCSIM and WinCC V18 TRIAL Download support.industry.siemens.com/cs/document/109807109/simatic-step-7-incl-safety-s7-plcsim-and-wincc-v18-trial...
WinCC Unified: Open Faceplate PopUp only once
Переглядів 21 тис.2 роки тому
In this video I will show how you can limit the PopUp numbers to once by saving the PopUp names in a Map () object. By default, you can open unlimited PopUps 00:00 Intro 00:12 Problem 00:36 Limit to one PopUp per Screen 01:29 Limit to one PopUp per Faceplate instance 05:04 Limit to one multiple PopUp per Faceplate instance 07:15 Limit multiple PopUp per Faceplate instance solution from Ignat (I...
WinCC Unified: Basics of responsive design: client size, browser size, zoom factor & decluttering
Переглядів 11 тис.2 роки тому
In this video I will show the basics of a responsive design: You need the client size and the mode of the client (landscape or portrait) The browser size with the zoom factor you client use. Based on this information’s a decluttering is possible by hide the layers 00:00 Intro 00:12 Get client size 02:08 Landscape or portrait 03:42 Browser size 04:24 Zoom Factor 05:21 Decluttering 07:04 active s...
WinCC Unified: switch archive variables and trend dynamically on a trend control
Переглядів 12 тис.2 роки тому
Stefan Osterkorn has asked my how he could switch archive variables dynamically to a trend control via script. Use Case Button1 = Trend1, Button2=Trend 2 In this video I will show how you can change dynamically archive tags to the control. Furthermore, I will show you how to toggle trend with a dynamic data connection 00:00 Intro 00:36 switch archive variables 04:13 multiple trends 06:35 toggle...
WinCC Unified: RT Persistency for control configurations
Переглядів 5 тис.2 роки тому
Controls in the Unified Runtime do not have persistency yet. In this video I will show you how you can save your changes in a file and reload it automatic after a screen change. 00:00 Intro 00:11 What is persistency 02:55 How does it work 04:26 Add your control Project V17 Update 2 github.com/WinCCUnifiedbyHecht/TIA_Project_RT_Persistency Music from Unicorn Heads- Drifting at 432 Hz ua-cam.com/...
WinCC Unified: how to use a custom font
Переглядів 6 тис.2 роки тому
In this Video I show you, how you can use custom fonts (TrueType fonts) in your Unified device. Like a 3D font Example for free fonts: 1001freefonts.com fontspace.com/category/ttf 00:00 Intro 00:12 Custom fonts 01:10 Install a Custom font Music from Unicorn Heads- Drifting at 432 Hz ua-cam.com/video/6jKPUp1qFP0/v-deo.html #DerHecht #WinCC #Unified #TIAPortal
WinCC Unified V17: Activate the OPC UA Server with security policy none and acknowledge alarms
Переглядів 6 тис.2 роки тому
In this Video I show you, how to activate the OPC UA server with the security policy none to used tt without a certificate. In the second step I will show you how you can acknowledge alarms over a OPC Client. 00:00 Intro 00:21 activate none on the Unified Panel 02:52 activate none on the Unified PC 05:54 use OPC A&C to ack Alarms Music from Unicorn Heads- Drifting at 432 Hz ua-cam.com/video/6jK...
WinCC Unified Comfort Panel: create reports on the panel
Переглядів 19 тис.3 роки тому
In this Video I show you what you need to consider when using reporting on the Unified Comfort Panel. There are 3 points you should consider: 1. It exist a user on the Panel 2. An trusted certificate from the panel to connect Excel 3. A SD Card (with FAT32) is insert in the Panel What does the error message "service or database initialization failed" or "template files is invalid" mean and how ...
WinCC Unified: change the report name, send it via E-Mail and create a pdf with libre office
Переглядів 8 тис.3 роки тому
In this Video I show you the new V17 functionalitiy from the reporting. How you can change the report name. Configure a E-Mail on the example from the G-Mail SMTP and sent the report via Mail. In the last Step I show you how you can use LibreOffice to genereate the PDFs 00:00 Intro 00:12 change report name 02:37 configure E-Mail configuration for GMail 04:59 semd E-Mails 07:31 create PDFs with ...
WinCC Unified: Create reports with the Online Excel and create a offline report
Переглядів 12 тис.3 роки тому
WinCC Unified: Create reports with the Online Excel In this Video I show you how you can use the free online Excel to created a report. Furthermore how it is possible to use the offline configuration to set up a report without a connection to the Unified project 00:00 Intro 00:37 add the Unified Plug-Inn 01:10 create a report 02:20 trigger a report 03:18 download a offline configuration 03:41 c...
WinCC Unified V17: Change the predefined styles dynamically it in Runtime
Переглядів 9 тис.3 роки тому
In this Video I show you how you can change the style dynamically in Runtime via JavaScript. Since Unified V17 there is a second predefined styles with two color schemas for dark and bright mode. It is currently not possible to add your own Style! 00:00 Intro 00:37 How does is work 01:15 JavaScript for Style change 01:50 add your own colors //JavaScript code HMIRuntime.UI.Style = 'ExtendedStyle...
WinCC Unified: export multiple logged tags as a daily .CSV report
Переглядів 14 тис.3 роки тому
WinCC Unified: export multiple logged tags as a daily .CSV report
WinCC Unified: how to create a dynamic output format
Переглядів 10 тис.3 роки тому
WinCC Unified: how to create a dynamic output format
WinCC Unified: how to use the systemfunction WriteManualValue
Переглядів 8 тис.3 роки тому
WinCC Unified: how to use the systemfunction WriteManualValue
WinCC Unified V17: what's new with Faceplates
Переглядів 37 тис.3 роки тому
WinCC Unified V17: what's new with Faceplates
WinCC Unified Comfort Panel V17: usage of the Webclient
Переглядів 27 тис.3 роки тому
WinCC Unified Comfort Panel V17: usage of the Webclient
TIA Portal V17: library concept, what's new
Переглядів 7 тис.3 роки тому
TIA Portal V17: library concept, what's new
TIA Portal V17: S7-1500 ViewOfThings (VoT) first steps
Переглядів 15 тис.3 роки тому
TIA Portal V17: S7-1500 ViewOfThings (VoT) first steps
TIA Portal V17 & WinCC Unified: Download, parallel Installation, convert V16 project & first steps
Переглядів 38 тис.3 роки тому
TIA Portal V17 & WinCC Unified: Download, parallel Installation, convert V16 project & first steps
WinCC Unified V16: create your client independent Screen buffer with a DataSet
Переглядів 6 тис.3 роки тому
WinCC Unified V16: create your client independent Screen buffer with a DataSet
WinCC Unified Comfort Panel: Play a sound on the Panel
Переглядів 8 тис.3 роки тому
WinCC Unified Comfort Panel: Play a sound on the Panel
WinCC Unified V16: first steps with plant objects and use the plant view control
Переглядів 11 тис.3 роки тому
WinCC Unified V16: first steps with plant objects and use the plant view control
WinCC Unified Comfort Panel V16: Display .pdf files on Panel with StartProgram
Переглядів 9 тис.4 роки тому
WinCC Unified Comfort Panel V16: Display .pdf files on Panel with StartProgram
WinCC Unified V16: Usage of ODBC for the default SQLight database
Переглядів 10 тис.4 роки тому
WinCC Unified V16: Usage of ODBC for the default SQLight database
WinCC Unified V16: first steps with Custom Web Controls part 2
Переглядів 13 тис.4 роки тому
WinCC Unified V16: first steps with Custom Web Controls part 2
WinCC Unified Comfort Panel V16: disable taskbar on Panel
Переглядів 6 тис.4 роки тому
WinCC Unified Comfort Panel V16: disable taskbar on Panel