Changes for page PLC Editor
Last modified by Leo Wei on 2024/09/14 17:38
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,2 +1,137 @@ 1 +(% class="box infomessage" %) 2 +((( 3 +All articles and materials contained in this section are only applicable to LX3V / LX3VP / LX3VE / LX3VM series PLC products 4 +))) 1 1 6 +{{velocity}} 7 +$xwiki.ssx.use('Download.WebHome') 8 +(%class="download-options"%)((( 9 +(%class="col-xs-12 download-container download-option version-option border-blue fa-icon fa-desktop"%)((( 10 += [[Manual>>PLC Editor.2\.PLC Installation Manual.WebHome]] = 11 +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. 12 +(%class="version-footer"%)((( 13 +[[Programming Manual>>PLC Editor.2\.PLC Installation Manual.WebHome||class="btn btn-primary]] 14 +))) 15 +))) 16 +(%class="col-xs-12 download-container download-option version-option border-cyan fa-icon fa-download"%)((( 17 +=[[Download>>PLC Editor.10 Hardware .WebHome]]= 18 +Provides users with manual, hardware, and software downloads. 19 +(%class="version-footer"%)((( 20 +[[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]] 21 +))) 22 +))) 23 +(%class="col-xs-12 download-container download-option version-option border-green fa-icon fa-table"%)((( 24 += [[Demo>>PLC Editor.4\.Demos.WebHome]] = 25 +Provides users with demonstrations about instructions, communications, protocols, etc. 26 +(%class="version-footer"%)((( 27 +[[More>>PLC Editor.4\.Demos.WebHome||class="btn btn-success]] 28 +))) 29 +))) 30 +))) 31 +{{/velocity}} 2 2 33 += FAQ = 34 + 35 +A frequently asked questions (FAQ) list is often used in operating or programming where common questions tend to recur. [[More FAQs.>>doc:.FAQ.WebHome]] 36 + 37 +* [[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]] 38 +* [[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]] 39 + 40 +(% id="HVideo" %) 41 += Video = 42 + 43 +{{velocity output="false"}} 44 +#set ($docextras = []) 45 + 46 +#set ($videoCards = [ 47 +{ 48 + 'title': $services.localization.render('WECON LX3V series PLC Introduction'), 49 + 'topics': [ 50 + $services.localization.render('PLC Unit/Module/Software feature/Application') 51 + ], 52 + 'url': 'https://www.youtube.com/embed/MILpsFH2oMw?list=PL_Bpnb2RgaktC29Y36bYN2ECXWP_hBOsj', 53 + 'duration': '14 min' 54 +}, 55 +{ 56 + 'title': $services.localization.render('WECON LX3V PLC port instuction '), 57 + 'topics': [ 58 + $services.localization.render('PLC IO/Module/BD/COM port intruction') 59 + ], 60 + 'url': 'https://www.youtube.com/embed/nfKthG_LjCI', 61 + 'duration': '7 mins' 62 +}, 63 +{'title': $services.localization.render('Software download&install'), 64 + 'topics': [ 65 + $services.localization.render('Software download&install') 66 + ], 67 + 'url': 'https://www.youtube.com/embed/vJEMWxb9U50?list=PL_Bpnb2RgaktC29Y36bYN2ECXWP_hBOsj', 68 + 'duration': '3 min' 69 +}, 70 +{'title': $services.localization.render('Create a new project&compile&simulate&download'), 71 + 'topics': [ 72 + $services.localization.render('Create a new project&compile&simulate&download') 73 + ], 74 + 'url': 'https://www.youtube.com/embed/KPbik_hEPlE', 75 + 'duration': '6 min' 76 +}, 77 + 78 +{'title': $services.localization.render('Device discription Timer'), 79 + 'topics': [ 80 + $services.localization.render('Device discription Timer') 81 + ], 82 + 'url': 'https://www.youtube.com/embed/3f3ze-9WT1Q?list=PL_Bpnb2RgaktC29Y36bYN2ECXWP_hBOsj', 83 + 'duration': '5 min' 84 +}, 85 +{'title': $services.localization.render('Device description counter'), 86 + 'topics': [ 87 + $services.localization.render('Device description counter') 88 + ], 89 + 'url': 'https://www.youtube.com/embed/vgjaF44eGjA?list=PL_Bpnb2RgaktC29Y36bYN2ECXWP_hBOsj', 90 + 'duration': '4 min' 91 +} 92 +]) 93 +#macro (helpVideoCard $data) 94 + <div class="videoCard"> 95 + <iframe src="$data.url" allowfullscreen title="$escapetool.xml($data.title)" role="presentation" ></iframe> 96 + <div class="videoCard-body"> 97 + <div class="videoCard-title"> 98 + $escapetool.xml($data.title) 99 + </div> 100 + <ul> 101 + #foreach ($topic in $data.topics) 102 + <li>$topic</li> 103 + #end 104 + </ul> 105 + </div> 106 + <div class="videoCard-footer"> 107 + $services.icon.renderHTML('play') 108 + <a href="$data.url">$services.localization.render('help.videos.watch')</a> 109 + <span class="videoCard-duration"> 110 + $escapetool.xml($data.duration) 111 + </span> 112 + </div> 113 + </div> 114 +#end 115 +{{/velocity}} 116 + 117 +{{velocity}} 118 +{{html clean="false"}} 119 +#set ($discard = $xwiki.ssx.use('Help.Videos.WebHome')) 120 +<div class="row"> 121 + #foreach ($card in $videoCards) 122 + ## See http://getbootstrap.com/css/#grid-responsive-resets . 123 + #if ($foreach.index > 0 && $foreach.index % 2 == 0) 124 + <div class="clearfix visible-sm-block "></div> 125 + #end 126 + #if ($foreach.index > 0 && $foreach.index % 3 == 0) 127 + <div class="clearfix visible-md-block visible-lg-block"></div> 128 + #end 129 + <div class="col-xs-12 col-sm-6 col-md-4"> 130 + #helpVideoCard($card) 131 + </div> 132 + #end 133 +</div> 134 +{{/html}} 135 + 136 +[[$services.localization.render('help.videos.more')>>https://www.youtube.com/user/Wecon2004/playlists]] 137 +{{/velocity}}