From version 1.2
edited by Leo Wei
on 2022/06/09 11:08
on 2022/06/09 11:08
Change comment:
There is no comment for this version
To version 12.1
edited by Theodore Xu
on 2023/05/27 11:05
on 2023/05/27 11:05
Change comment:
There is no comment for this version
Summary
-
Page properties (3 modified, 0 added, 0 removed)
Details
- Page properties
-
- Title
-
... ... @@ -1,1 +1,1 @@ 1 - VFD1 +Inverter - Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. admin1 +XWiki.AiXia - Content
-
... ... @@ -1,1 +1,108 @@ 1 -[[image:image-20220609110757-1.png]] 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>>VFD.VM AC Drive User Manual.WebHome]] = 6 +Provides users with online viewing of Wecon VFD product Manuals of VM AC Drive and VB AC Drive. 7 +(%class="version-footer"%)((( 8 +[[VM V1.2>>VFD.VM AC Drive User Manual.WebHome||class="btn btn-primary]] [[VM V2.0>>VFD.3 VM AC Drive Manual V2\.0.WebHome||class="btn btn-primary]] [[VB series>>VFD.VB AC Drive User 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>>VFD.Download.WebHome]]= 13 +Provides users with manuals, hardwares, and softwares downloads. 14 +(%class="version-footer"%)((( 15 +[[Manual>>VFD.Download.1 Manual.WebHome||class="btn btn-info]] [[Hardware>>VFD.Download.2 Hardware.WebHome||class="btn btn-info]] [[Software>>VFD.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>>VFD.3\. Demo.WebHome]] = 20 +Provides users with demonstrations about Wecon VFD including VM AC Drive and VB AC Drive. 21 +(%class="version-footer"%)((( 22 +[[More>>VFD.3\. Demo.WebHome||class="btn btn-success]] 23 +))) 24 +))) 25 +))) 26 +{{/velocity}} 27 + 28 += [[FAQ>>doc:.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. [[More FAQs>>doc:.FAQ.WebHome]] 31 + 32 +* [[How to solve Err40 in the inverter?>>https://docs.we-con.com.cn/bin/view/VFD/FAQ/How%20to%20solve%20Err40%20in%20the%20inverter]] 33 +* [[How to solve the problem of ERR10 or ERR40 under low frequency?>>https://docs.we-con.com.cn/bin/view/VFD/FAQ/How%20to%20solve%20the%20problem%20of%20ERR10%20or%20ERR40%20under%20low%20frequency]] 34 +* ((( 35 +[[How does VB drive a high-speed motor?>>https://docs.we-con.com.cn/bin/view/VFD/FAQ/How%20does%20VB%20drive%20a%20high-speed%20motor]] 36 +))) 37 + 38 += Video 39 +{{velocity output="false"}}#set ($docextras = []) 40 + 41 +#set ($videoCards = [ 42 +{ 43 + 'title': $services.localization.render('WECON VB Inspection of Rectifier Bridge and Inverter'), 44 + 'topics': [ 45 + $services.localization.render('Hardware port introducion: Rectifier Bridge and Inverter') 46 + ], 47 + 'url': 'https://www.youtube.com/embed/bkH8oKP_B1A', 48 + 'duration': '3 mins' 49 +}, 50 +{ 51 + 'title': $services.localization.render('How to Install and Operate WECON Inverter PC Software'), 52 + 'topics': [ 53 + $services.localization.render('Software and interface introduction,Installation process') 54 + ], 55 + 'url': 'https://www.youtube.com/embed/74erPFsI6Ns', 56 + 'duration': '5 mins' 57 +}, 58 + 'topics': [ 59 + $services.localization.render('Use the USB driver to update the firmware version of the inverter') 60 + ], 61 + 'url': 'https://www.youtube.com/embed/vubKSh741s4', 62 + 'duration': '3 mins' 63 +} 64 +]) 65 +#macro (helpVideoCard $data) 66 + <div class="videoCard"> 67 + <iframe src="$data.url" allowfullscreen title="$escapetool.xml($data.title)" role="presentation" ></iframe> 68 + <div class="videoCard-body"> 69 + <div class="videoCard-title"> 70 + $escapetool.xml($data.title) 71 + </div> 72 + <ul> 73 + #foreach ($topic in $data.topics) 74 + <li>$topic</li> 75 + #end 76 + </ul> 77 + </div> 78 + <div class="videoCard-footer"> 79 + $services.icon.renderHTML('play') 80 + <a href="$data.url">$services.localization.render('help.videos.watch')</a> 81 + <span class="videoCard-duration"> 82 + $escapetool.xml($data.duration) 83 + </span> 84 + </div> 85 + </div> 86 +#end{{/velocity}} = 87 + 88 +{{velocity}} 89 +{{html clean="false"}} 90 +#set ($discard = $xwiki.ssx.use('Help.Videos.WebHome')) 91 +<div class="row"> 92 + #foreach ($card in $videoCards) 93 + ## See http://getbootstrap.com/css/#grid-responsive-resets . 94 + #if ($foreach.index > 0 && $foreach.index % 2 == 0) 95 + <div class="clearfix visible-sm-block "></div> 96 + #end 97 + #if ($foreach.index > 0 && $foreach.index % 3 == 0) 98 + <div class="clearfix visible-md-block visible-lg-block"></div> 99 + #end 100 + <div class="col-xs-12 col-sm-6 col-md-4"> 101 + #helpVideoCard($card) 102 + </div> 103 + #end 104 +</div> 105 +{{/html}} 106 + 107 +[[$services.localization.render('help.videos.more')>>https://www.youtube.com/playlist?list=PL_Bpnb2RgaktOITeNo-g3fq0jBFoubYGz]] 108 +{{/velocity}}