Wiki source code of PIStudio

Version 2.1 by Stone Wu on 2022/07/29 14:12

Show last authors
1 {{velocity}}
2 $xwiki.ssx.use('Download.WebHome')
3 (%class="download-options"%)(((
4 (%class="col-xs-12 download-container download-option version-option border-blue fa-icon fa-desktop"%)(((
5 = [[Manual>>Servo.Manual.WebHome]] =
6 Provides users with online viewing of Servo product Manuals of varies series and Servo software help.
7 (%class="version-footer"%)(((
8 [[VD2 SA>>Servo.Manual.02 VD2 SA Series.WebHome||class="btn btn-primary]] [[Software Help>>Servo.Manual.04 Configurator.WebHome||class="btn btn-primary]] [[More>>Servo.Manual.WebHome||class="btn btn-primary]]
9 )))
10 )))
11 (%class="col-xs-12 download-container download-option version-option border-cyan fa-icon fa-download"%)(((
12 =[[Download>>Servo.Download.WebHome]]=
13 Provides users with manuals, hardwares, and softwares downloads.
14 (%class="version-footer"%)(((
15 [[Manual>>Servo.Download.Manual.WebHome||class="btn btn-info]] [[Hardware>>Servo.Download.5\. Hardware.WebHome||class="btn btn-info]] [[Software>>Servo.Download.3 Software.WebHome||class="btn btn-info]]
16 )))
17 )))
18 (%class="col-xs-12 download-container download-option version-option border-green fa-icon fa-table"%)(((
19 = [[Demo>>Servo.3\. Demos.WebHome]] =
20 Provides users with demonstrations about Wecon servo drives.
21 (%class="version-footer"%)(((
22 [[More>>Servo.3\. Demos.WebHome||class="btn btn-success]]
23 )))
24 )))
25 )))
26 {{/velocity}}
27
28 = [[FAQ>>PLC Editor.FAQ.WebHome]] =
29
30 A frequently asked questions (FAQ) list is often used in articles, websites, email lists, and online forums where common questions tend to recur,
31
32 * [[How to set write-only for Macro script?>>https://docs.we-con.com.cn/bin/view/PIStudio/FAQ/How%20to%20set%20write-only%20for%20Macro%20script]]
33 * [[How to set the font style? Is it possible to change font style and font size in Alarm record display or other charts?>>https://docs.we-con.com.cn/bin/view/PIStudio/FAQ/How%20to%20set%20the%20font%20style%3F%20Is%20it%20possible%20to%20change%20font%20style%20and%20font%20size%20in%20Alarm%20record%20display%20or%20other%20charts]]
34 * [[How to display the special character into HMI(Like Arabic or Hindi)?>>https://docs.we-con.com.cn/bin/view/PIStudio/FAQ/How%20to%20display%20the%20special%20character%20into%20HMI%28Like%20Arabic%20or%20Hindi%29]]
35
36 = Video =
37
38 {{velocity output="false"}}
39 #set ($docextras = [])
40
41 #set ($videoCards = [ {
42 'title': $services.localization.render('1.Software Download&Install'),
43 'topics': [
44 $services.localization.render('This video is showing you how to download and install the PIStudio.')
45 ],
46 'url': 'https://www.youtube.com/embed/7FNI4uuVL4c',
47 'duration': '3 min'
48 }, {
49 'title': $services.localization.render('2.Create New Project'),
50 'topics': [
51 $services.localization.render('This video is showing you how to create new project in the PIStudio.')
52 ],
53 'url': 'https://www.youtube.com/embed/0FpmDZe_8U8',
54 'duration': '2 min'
55 }, {
56 'title': $services.localization.render('3.Tool: Simulator'),
57 'topics': [
58 $services.localization.render('This video is showing you how to use the simulator in PIStudio.'),
59 $services.localization.render('There are mainly two types for simulator: online and offline.')
60 ],
61 'url': 'https://www.youtube.com/embed/CFABfWN_470',
62 'duration': '4 min'
63 }, {
64 'title': $services.localization.render('4.Download Project'),
65 'topics': [
66 $services.localization.render('This video is showing you how to download project into PI HMI')
67 ],
68 'url': 'https://www.youtube.com/embed/UXKeMGPsTag',
69 'duration': '7 min'
70 }, {
71 'title': $services.localization.render('5.Tool: Decompile'),
72 'topics': [
73 $services.localization.render('Decompile tool is for users can upload the project file from PI HMI.')
74 ],
75 'url': 'https://www.youtube.com/embed/slaVqLKpQno',
76 'duration': '2 min'
77 }, {
78 'title': $services.localization.render('6.The ig V-NET Access'),
79 'topics': [
80 $services.localization.render('How to access the VNET platform for ig series HMI')
81 ],
82 'url': 'https://www.youtube.com/embed/j6i6KsCmnTE?list=PL_Bpnb2RgaktphrxRaCpFA809H_0xs-cU',
83 'duration': '4 min'
84 }])
85
86 #macro (helpVideoCard $data)
87 <div class="videoCard">
88 <iframe src="$data.url" allowfullscreen title="$escapetool.xml($data.title)" role="presentation" ></iframe>
89 <div class="videoCard-body">
90 <div class="videoCard-title">
91 $escapetool.xml($data.title)
92 </div>
93 <ul>
94 #foreach ($topic in $data.topics)
95 <li>$topic</li>
96 #end
97 </ul>
98 </div>
99 <div class="videoCard-footer">
100 $services.icon.renderHTML('play')
101 <a href="$data.url">$services.localization.render('help.videos.watch')</a>
102 <span class="videoCard-duration">
103 $escapetool.xml($data.duration)
104 </span>
105 </div>
106 </div>
107 #end
108 {{/velocity}}
109
110 {{velocity}}
111 {{html clean="false"}}
112 #set ($discard = $xwiki.ssx.use('Help.Videos.WebHome'))
113 <div class="row">
114 #foreach ($card in $videoCards)
115 ## See http://getbootstrap.com/css/#grid-responsive-resets .
116 #if ($foreach.index > 0 && $foreach.index % 2 == 0)
117 <div class="clearfix visible-sm-block "></div>
118 #end
119 #if ($foreach.index > 0 && $foreach.index % 3 == 0)
120 <div class="clearfix visible-md-block visible-lg-block"></div>
121 #end
122 <div class="col-xs-12 col-sm-6 col-md-4">
123 #helpVideoCard($card)
124 </div>
125 #end
126 </div>
127 {{/html}}
128
129 [[$services.localization.render('help.videos.more')>>https://www.youtube.com/playlist?list=PLhe7KI1rstRQeLSHxcTozZ0HJSk-mIYzt]]
130 {{/velocity}}