Wiki source code of PLC Editor

Version 4.5 by Leo Wei on 2022/07/28 21:29

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>>PLC Editor.2\.PLC Installation Manual.WebHome]] =
6 Provides users with online viewing of LX3V Programing Manual, combining with cases and graphic analysis and explain the use of Wecocn PLC Editor and PLC program.
7 (%class="version-footer"%)(((
8 [[Programming Manual>>PLC Editor.2\.PLC Installation 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>>PLC Editor.10 Hardware .WebHome]]=
13 Provides users with manual, hardware, and software downloads.
14 (%class="version-footer"%)(((
15 [[Manual>>PLC Editor2.Download.01 Manual.WebHome||class="btn btn-info]] [[Hardware>>PLC Editor.10 Hardware .3 2D.WebHome||class="btn btn-info]] [[Software>>PLC Editor.10 Hardware .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>>PLC Editor.4\.Demos.WebHome]] =
20 Provides users with demonstrations about instructions, communications, protocols, etc.
21 (%class="version-footer"%)(((
22 [[More>>PLC Editor.4\.Demos.WebHome||class="btn btn-success]]
23 )))
24 )))
25 )))
26 {{/velocity}}
27
28 = FAQ =
29
30 A frequently asked questions (FAQ) list is often used in operating or programming where common questions tend to recur. [[More FAQs.>>doc:.FAQ.WebHome]]
31
32 * [[What is the frequency about PLC high speed pulse output?>>url:https://docs.we-con.com.cn/bin/view/PLC%20Editor/FAQ/What%20is%20the%20frequency%20about%20PLC%20high%20speed%20pulse%20output]]
33 * [[Why does the pulse command not send out when using the pulse command in the STL step instruction?>>url:https://docs.we-con.com.cn/bin/view/PLC%20Editor/FAQ/Why%20does%20the%20pulse%20command%20not%20send%20out%20when%20using%20the%20pulse%20command%20in%20the%20STL%20step%20instruction]]
34
35 (% id="HVideo" %)
36 = Video =
37
38 {{velocity output="false"}}
39 #set ($docextras = [])
40
41 #set ($videoCards = [
42 {
43 'title': $services.localization.render('WECON LX3V series PLC Introduction'),
44 'topics': [
45 $services.localization.render('PLC Unit/Module/Software feature/Application')
46 ],
47 'url': 'https://www.youtube.com/embed/MILpsFH2oMw?list=PL_Bpnb2RgaktC29Y36bYN2ECXWP_hBOsj',
48 'duration': '14 min'
49 },
50 {
51 'title': $services.localization.render('WECON LX3V PLC port instuction '),
52 'topics': [
53 $services.localization.render('PLC IO/Module/BD/COM port intruction')
54 ],
55 'url': 'https://www.youtube.com/embed/nfKthG_LjCI',
56 'duration': '7 mins'
57 },
58 {'title': $services.localization.render('Software download&install'),
59 'topics': [
60 $services.localization.render('Software download&install')
61 ],
62 'url': 'https://www.youtube.com/embed/vJEMWxb9U50?list=PL_Bpnb2RgaktC29Y36bYN2ECXWP_hBOsj',
63 'duration': '3 min'
64 },
65 {'title': $services.localization.render('Create a new project&compile&simulate&download'),
66 'topics': [
67 $services.localization.render('Create a new project&compile&simulate&download')
68 ],
69 'url': 'https://www.youtube.com/embed/KPbik_hEPlE',
70 'duration': '6 min'
71 },
72
73 {'title': $services.localization.render('Device discription Timer'),
74 'topics': [
75 $services.localization.render('Device discription Timer')
76 ],
77 'url': 'https://www.youtube.com/embed/3f3ze-9WT1Q?list=PL_Bpnb2RgaktC29Y36bYN2ECXWP_hBOsj',
78 'duration': '5 min'
79 },
80 {'title': $services.localization.render('Device description counter'),
81 'topics': [
82 $services.localization.render('Device description counter')
83 ],
84 'url': 'https://www.youtube.com/embed/vgjaF44eGjA?list=PL_Bpnb2RgaktC29Y36bYN2ECXWP_hBOsj',
85 'duration': '4 min'
86 }
87 ])
88 #macro (helpVideoCard $data)
89 <div class="videoCard">
90 <iframe src="$data.url" allowfullscreen title="$escapetool.xml($data.title)" role="presentation" ></iframe>
91 <div class="videoCard-body">
92 <div class="videoCard-title">
93 $escapetool.xml($data.title)
94 </div>
95 <ul>
96 #foreach ($topic in $data.topics)
97 <li>$topic</li>
98 #end
99 </ul>
100 </div>
101 <div class="videoCard-footer">
102 $services.icon.renderHTML('play')
103 <a href="$data.url">$services.localization.render('help.videos.watch')</a>
104 <span class="videoCard-duration">
105 $escapetool.xml($data.duration)
106 </span>
107 </div>
108 </div>
109 #end
110 {{/velocity}}
111
112 {{velocity}}
113 {{html clean="false"}}
114 #set ($discard = $xwiki.ssx.use('Help.Videos.WebHome'))
115 <div class="row">
116 #foreach ($card in $videoCards)
117 ## See http://getbootstrap.com/css/#grid-responsive-resets .
118 #if ($foreach.index > 0 && $foreach.index % 2 == 0)
119 <div class="clearfix visible-sm-block "></div>
120 #end
121 #if ($foreach.index > 0 && $foreach.index % 3 == 0)
122 <div class="clearfix visible-md-block visible-lg-block"></div>
123 #end
124 <div class="col-xs-12 col-sm-6 col-md-4">
125 #helpVideoCard($card)
126 </div>
127 #end
128 </div>
129 {{/html}}
130
131 [[$services.localization.render('help.videos.more')>>https://www.youtube.com/user/Wecon2004/playlists]]
132 {{/velocity}}