-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogwp.html
1019 lines (723 loc) · 82.6 KB
/
blogwp.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html >
<html lang="pt-BR">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta property="og:title" content="Helimodelos.com - "/>
<meta property="og:image" content="./wp-content/uploads/2012/08/facebook-icon.png"/>
<title>Helimodelos.com</title><link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="./xmlrpc.php" />
<!--[if lt IE 9]>
<script>
document.createElement('header');
document.createElement('nav');
document.createElement('section');
document.createElement('article');
document.createElement('aside');
document.createElement('footer');
document.createElement('hgroup');
</script>
<![endif]-->
<link rel="shortcut icon" href="./wp-content/uploads/2013/04/icon-site.png" />
<!-- All in One SEO Pack 2.3.8 by Michael Torbert of Semper Fi Web Design[344,490] -->
<meta name="description" content="Blog destinado a centralizar informações de Helimodelismo. Dicas, passo-a-passo, sugestões e muito mais em um só lugar..." />
<meta name="keywords" content="trex, align, copterx, helimodelos, biricoptero, rafael biriba, helimodelismo, 3d, hk, hobbyking" />
<link rel='next' href='./page/2/index.html' />
<link rel="canonical" href="./index.html" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-28101889-1']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- /all in one seo pack -->
<link rel="alternate" type="application/rss+xml" title="Feed de Helimodelos.com »" href="./feed/index.html" />
<link rel="alternate" type="application/rss+xml" title="Helimodelos.com » Feed de comentários" href="./comments/feed/index.html" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"http:\/\/s.w.org\/images\/core\/emoji\/72x72\/","ext":".png","source":{"concatemoji":".\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.2.28"}};
!function(a,b,c){function d(a){var c=b.createElement("canvas"),d=c.getContext&&c.getContext("2d");return d&&d.fillText?(d.textBaseline="top",d.font="600 32px Arial","flag"===a?(d.fillText(String.fromCharCode(55356,56812,55356,56807),0,0),c.toDataURL().length>3e3):(d.fillText(String.fromCharCode(55357,56835),0,0),0!==d.getImageData(16,16,1,1).data[0])):!1}function e(a){var c=b.createElement("script");c.src=a,c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var f,g;c.supports={simple:d("simple"),flag:d("flag")},c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.simple&&c.supports.flag||(g=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",g,!1),a.addEventListener("load",g,!1)):(a.attachEvent("onload",g),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),f=c.source||{},f.concatemoji?e(f.concatemoji):f.wpemoji&&f.twemoji&&(e(f.twemoji),e(f.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wp-recentcomments-css' href='./wp-content/plugins/wp-recentcomments/css/wp-recentcomments.css?ver=2.2.7' type='text/css' media='screen' />
<link rel='stylesheet' id='recent-facebook-posts-css-css' href='./wp-content/plugins/recent-facebook-posts/assets/css/default.min.css?ver=2.0.9' type='text/css' media='all' />
<link rel='stylesheet' id='fancybox-css' href='./wp-content/plugins/easy-fancybox/fancybox/jquery.fancybox-1.3.7.min.css?ver=1.5.7' type='text/css' media='screen' />
<link rel='stylesheet' id='mantras-css' href='./wp-content/themes/mantra/style.css?ver=4.2.28' type='text/css' media='all' />
<style type="text/css">
#wrapper, #access, #colophon, #branding, #main { width:1100px ;}
#access .menu-header, div.menu {width:1088px ;}
#content { width:790px;}
#primary,#secondary {width:250px;}#content p, #content ul, #content ol {
font-size:14px;
}
* , .widget-title {font-family:Segoe UI, Arial, sans-serif ; } .nocomments, .nocomments2 {display:none;} #content h1, #content h2, #content h3, #content h4, #content h5, #content h6 { margin-left:20px;} .sticky hgroup { background: url(./wp-content/themes/mantra/images/icon-featured.png) no-repeat 12px 10px transparent; padding-left: 15px;} body { background-color:#444444 !important ;} #header { background-color:#333333 ;} #footer { background-color:#222222 ;} #footer2 { background-color:#171717 ;} #site-title span a { color:#0D85CC ;} #site-description { color:#999999 ;} #content p, #content ul, #content ol { color:#333333 ;} .widget-area a:link, .widget-area a:visited, a:link, a:visited ,#searchform #s:hover , #container #s:hover, #access a:hover, #wp-calendar tbody td a , #site-info a ,#site-copyright a, #access li:hover > a, #access ul ul :hover > a { color:#0D85CC;} a:hover, .entry-meta a:hover, .entry-utility a:hover , .widget-area a:hover { color:#12a7ff ;} #content .entry-title a, #content .entry-title, #content h1, #content h2, #content h3, #content h4, #content h5, #content h6{ color:#333333 ;} #content .entry-title a:hover { color:#000000 ;} .widget-title,#footer-widget-area .widget-title { background-color:#444444 ;} .widget-title { color:#2EA5FD ;} #footer-widget-area .widget-title { color:#0C85CD ; ;} #footer-widget-area a { color:#666666 ;} #footer-widget-area a:hover { color:#888888 ;} .entry-utility span.bl_posted, .entry-meta2 span.bl_tagg {display:none;} .entry-meta .entry-time {display:none;} #branding {background:url("./wp-content/uploads/2015/07/cropped-1100-200-banner-novo-sem-loja.jpg") no-repeat;
width:1100px; height:200px;}
</style>
<script type='text/javascript' src='./wp-includes/js/jquery/jquery.js?ver=1.11.2'></script>
<script type='text/javascript' src='./wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1'></script>
<script type='text/javascript' src='./wp-content/themes/mantra/js/frontend.js?ver=4.2.28'></script>
<script type='text/javascript' src='./wp-content/plugins/content-slide/js/coin-slider.js?ver=4.2.28'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="./xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="./wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 4.2.28" />
<script type="text/javascript">
var $jquery = jQuery.noConflict();
$jquery(document).ready(function()
{
$jquery('#wpcontent_slider').coinslider(
{
width: 980,
height: 370,
spw: 7,
sph: 5,
delay: 3000,
sDelay: 30,
opacity: 0.7,
titleSpeed: 500,
effect: 'random',
navigation: true,
links : true,
hoverPause: true });
});
</script>
<style type="text/css" media="screen">
#wpcontent_slider_container
{
overflow: hidden; position: relative; padding:0px;margin:0px; text-align:center; width:990px !important;
height:380px !important;
}
#wpcontent_slider
{ overflow: hidden; position: relative; font-family:\'Trebuchet MS\', Helvetica, sans-serif;border:5px solid #fff; text-align:left;}
#wpcontent_slider a,#wpcontent_slider a img { border: none; text-decoration: none; outline: none; }
#wpcontent_slider h4,#wpcontent_slider h4 a
{margin: 0px;padding: 0px; font-family: 'Trebuchet MS', Helvetica, sans-serif;
text-decoration:none;font-size: 18px; color:#ffffff;}
#wpcontent_slider .cs-title {width: 100%;padding: 10px; background: #ffffff; color: #000000; font-family: 'Trebuchet MS', Helvetica, sans-serif; font-size: 12px; letter-spacing: normal;line-height: normal;}
#wpcontent_slider_container .cs-prev,#wpcontent_slider_container .cs-next {font-weight: bold;background: #000000;
font-size: 28px; font-family: "Courier New", Courier, monospace; color: #ffffff !important;
padding: 0px 10px;-moz-border-radius: 5px;-khtml-border-radius: 5px;-webkit-border-radius: 5px;}
#wpcontent_slider_container .cs-buttons { font-size: 0px; padding: 10px 0px 10px 0px;
margin:0px auto; float:left;clear:left;
}
#wpcontent_slider_container .cs-buttons a { outline:none; margin-left: 5px; height: 10px; width: 10px; float: left; border: 1px solid #000000; color: #000000; text-indent: -1000px;
}
#wpcontent_slider_container .cs-active { background-color: #000000; color: #FFFFFF; }
#wpcs_link_love,#wpcs_link_love a{display:none;}
</style>
<!-- End Content Slider Settings -->
<style type="text/css">
.cbd {
position: fixed;
left: 5px;
bottom: 5px;
}
.cbd a img {
border: 0;
}
</style>
<meta property="fb:app_id" content="331899150233611"/><meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<!-- Easy FancyBox 1.5.7 using FancyBox 1.3.7 - RavanH (http://status301.net/wordpress-plugins/easy-fancybox/) -->
<script type="text/javascript">
/* <![CDATA[ */
var fb_timeout = null;
var fb_opts = { 'overlayShow' : true, 'hideOnOverlayClick' : true, 'showCloseButton' : true, 'centerOnScroll' : true, 'enableEscapeButton' : true, 'autoScale' : true };
var easy_fancybox_handler = function(){
/* IMG */
var fb_IMG_select = 'a[href*=".jpg"]:not(.nofancybox,.pin-it-button), area[href*=".jpg"]:not(.nofancybox), a[href*=".jpeg"]:not(.nofancybox,.pin-it-button), area[href*=".jpeg"]:not(.nofancybox), a[href*=".png"]:not(.nofancybox,.pin-it-button), area[href*=".png"]:not(.nofancybox), a[href*=".gif"]:not(.nofancybox,.pin-it-button), area[href*=".gif"]:not(.nofancybox)';
jQuery(fb_IMG_select).addClass('fancybox image');
var fb_IMG_sections = jQuery('div.gallery');
fb_IMG_sections.each(function() { jQuery(this).find(fb_IMG_select).attr('rel', 'gallery-' + fb_IMG_sections.index(this)); });
jQuery('a.fancybox, area.fancybox, li.fancybox a:not(li.nofancybox a)').fancybox( jQuery.extend({}, fb_opts, { 'transitionIn' : 'elastic', 'easingIn' : 'easeOutBack', 'transitionOut' : 'elastic', 'easingOut' : 'easeInBack', 'opacity' : false, 'hideOnContentClick' : false, 'titleShow' : true, 'titlePosition' : 'over', 'titleFromAlt' : true, 'showNavArrows' : true, 'enableKeyboardNav' : true, 'cyclic' : false }) );
/* Auto-click */
jQuery('#fancybox-auto').trigger('click');
}
/* ]]> */
</script>
<style type="text/css">
#fancybox-content{background-color:#fff}
#fancybox-content{border-color:#fff}#fancybox-outer{background-color:#fff}
#fancybox-content{color:inherit}
</style>
</head>
<body class="home blog">
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery("#content img").addClass("imageSeven");
jQuery(function () {
jQuery("#prime_nav").tinyNav({
header: true // Show header instead of the active item
});
});
});
</script>
<div id="toTop"> </div>
<div id="wrapper" class="hfeed">
<header id="header">
<div id="masthead">
<a href="./index.html" title="Helimodelos.com" rel="home">
<div id="branding" role="banner" >
<!--
<h1 id="site-title">
<span> <a href="./" title="Helimodelos.com" rel="home">Helimodelos.com</a> </span>
</h1>
<div id="site-description" >Blog destinado a centralizar informações de Helimodelismo. Dicas, passo-a-passo, sugestões e muito mais em um só lugar…</div> -->
<div class="socials" id="sheader"> </div>
<div style="clear:both;"></div>
</div><!-- #branding --></a>
<nav id="access" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
<div class="menu"><ul><li class="current_page_item"><a href="./index.html">Início</a></li><li class="page_item page-item-284"><a href="./doacoes/index.html">Doações</a></li><li class="page_item page-item-924"><a href="./manuais/index.html">Manuais</a></li><li class="page_item page-item-219"><a href="./venda-e-manutencao/index.html">Manutenção</a></li><li class="page_item page-item-104"><a href="./montagem/index.html">Montagem 450</a></li><li class="page_item page-item-569"><a href="./no-facebook/index.html">No Facebook</a></li><li class="page_item page-item-451"><a href="./concursos-helimodelos-com/index.html">Sorteios e Concursos</a></li><li class="page_item page-item-26"><a href="./entre-em-contato/index.html">Entre em contato</a></li></ul></div>
</nav><!-- #access -->
</div><!-- #masthead -->
<div style="clear:both;"> </div>
</header><!-- #header -->
<!-- Editado para adicionar o banner da loja -->
<!-- <div style="text-align: center; background-color: #666666; width: 1045px; padding: 10px 0 10px 55px;">
<div id="wpcontent_slider_container"><div id="wpcontent_slider"> <a href="http://lojahelimodelos.com/kit-copterx-e-eletronica-completa" title="" target="_blank">
<img src="http://lojahelimodelos.com/image/cache/data/BannerAbr08/kit450eeletronica-980x370.jpg" alt="" width="980" height="370" />
</a>
<a href="http://lojahelimodelos.com/tarot-450-sport-with-eletronic" title="" target="_blank">
<img src="http://lojahelimodelos.com/image/cache/data/BannerAbr08/kit450taroteeletronica-980x370.jpg" alt="" width="980" height="370" />
</a>
<a href="http://lojahelimodelos.com/tarot-450-rtf" title="" target="_blank">
<img src="http://lojahelimodelos.com/image/cache/data/BannerAbr08/450rtf-tarot-980x370.jpg" alt="" width="980" height="370" />
</a>
<a href="http://lojahelimodelos.com/turnigy-9x-mode2" title="" target="_blank">
<img src="http://lojahelimodelos.com/image/cache/data/BannerAbr08/turnigy9x-980x370.jpg" alt="" width="980" height="370" />
</a>
<a href="http://lojahelimodelos.com/novo-v911-rtf" title="" target="_blank">
<img src="http://lojahelimodelos.com/image/cache/data/BannerAbr08/v911-commander-980x370.jpg" alt="" width="980" height="370" />
</a>
<a href="http://lojahelimodelos.com/hk-radio-6ch-simulador-usb" title="" target="_blank">
<img src="http://lojahelimodelos.com/image/cache/data/BannerAbr08/radio-simulador-980x370.jpg" alt="" width="980" height="370" />
</a>
<a href="http://lojahelimodelos.com/dvd-montagem-450" title="" target="_blank">
<img src="http://lojahelimodelos.com/image/cache/data/BannerAbr08/curso-montagem-450-980x370.jpg" alt="" width="980" height="370" />
</a>
</div></div> </div> -->
<!-- Editado para adicionar o banner da loja -->
<div id="main">
<div id="forbottom" >
<div class="socials" id="smenul">
</div>
<div class="socials" id="smenur">
</div>
<div style="clear:both;"> </div>
<div class="breadcrumbs"><a href="./index.html">Helimodelos.com</a> » Home Page</div>
<section id="container">
<div id="content" role="main">
<nav id="nav-above" class="navigation">
<div class="nav-previous"><a href="./page/2/index.html" ><span class="meta-nav">«</span> Older posts</a></div>
<div class="nav-next"></div>
</nav><!-- #nav-above -->
<article id="post-1265" class="post-1265 post type-post status-publish format-standard hentry category-castle-creation category-fabricantes-marcas tag-bec tag-castle tag-castle-creation-2 tag-creation tag-esc tag-lancamento tag-talon">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/09/castle-creation-apresenta-seu-novo-esc-talon-hv-120a/index.html" title="Permalink to Castle Creation apresenta seu novo ESC: Talon HV 120A" rel="bookmark">Castle Creation apresenta seu novo ESC: Talon HV 120A</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/09/castle-creation-apresenta-seu-novo-esc-talon-hv-120a/index.html" title="22:38" rel="bookmark"><span class="entry-date">09/26/2014</span> <span class="entry-time"> - 22:38</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/fabricantes-marcas/castle-creation/index.html" rel="tag">Castle Creation</a>, <a href="./category/fabricantes-marcas/index.html" rel="tag">Fabricantes / Marcas</a> </span> <div class="comments-link">
<a href="./2014/09/castle-creation-apresenta-seu-novo-esc-talon-hv-120a/index.html#respond">Leave a comment</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Castle Creation apresenta seu novo ESC: Talon HV 120A" href="./2014/09/castle-creation-apresenta-seu-novo-esc-talon-hv-120a/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/09/10687978_747221048647989_6482035939063537423_o.jpg"></a> <p>Divulgado hoje no facebook da Castle Creation, o modelo HV 120A é o mais novo membro da familia Talon. De acordo com o fabricante, o ESC tem um BEC de 20A de pico e suporta até 50V (12s). O esc também suporta um minicooler (precisa ser comprado separadamente) para um “resfriamento” … <a href="./2014/09/castle-creation-apresenta-seu-novo-esc-talon-hv-120a/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/bec/index.html" rel="tag">bec</a>, <a href="./tag/castle/index.html" rel="tag">castle</a>, <a href="./tag/castle-creation-2/index.html" rel="tag">castle creation</a>, <a href="./tag/creation/index.html" rel="tag">creation</a>, <a href="./tag/esc/index.html" rel="tag">esc</a>, <a href="./tag/lancamento/index.html" rel="tag">lançamento</a>, <a href="./tag/talon/index.html" rel="tag">talon</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1265 -->
<article id="post-1252" class="post-1252 post type-post status-publish format-standard hentry category-align-fabricantes-marcas category-fabricantes-marcas tag-550l tag-align tag-lancanento tag-trex tag-trex-550">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/09/novo-lancamento-da-align-agora-e-a-vez-do-t-rex-500-a-entrar-na-familia-dominator/index.html" title="Permalink to Novo lançamento da Align. Agora é a vez do T-REX 500 a entrar na familia Dominator!" rel="bookmark">Novo lançamento da Align. Agora é a vez do T-REX 500 a entrar na familia Dominator!</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/09/novo-lancamento-da-align-agora-e-a-vez-do-t-rex-500-a-entrar-na-familia-dominator/index.html" title="17:58" rel="bookmark"><span class="entry-date">09/22/2014</span> <span class="entry-time"> - 17:58</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/fabricantes-marcas/align-fabricantes-marcas/index.html" rel="tag">Align</a>, <a href="./category/fabricantes-marcas/index.html" rel="tag">Fabricantes / Marcas</a> </span> <div class="comments-link">
<a href="./2014/09/novo-lancamento-da-align-agora-e-a-vez-do-t-rex-500-a-entrar-na-familia-dominator/index.html#respond">Leave a comment</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Novo lançamento da Align. Agora é a vez do T-REX 500 a entrar na familia Dominator!" href="./2014/09/novo-lancamento-da-align-agora-e-a-vez-do-t-rex-500-a-entrar-na-familia-dominator/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/09/7082_706078696142807_6288124225984208321_n.jpg"></a> <p>Foi divulgado pelo facebook hoje, o mais novo lançamento da Align. Como já era esperado, o combo vem com o novo modulo flybarless GPro, servos DS515 e DS525 e motor 500mx (1600kv) O que você achou do lançamento ?</p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/550l/index.html" rel="tag">550l</a>, <a href="./tag/align/index.html" rel="tag">align</a>, <a href="./tag/lancanento/index.html" rel="tag">lançanento</a>, <a href="./tag/trex/index.html" rel="tag">trex</a>, <a href="./tag/trex-550/index.html" rel="tag">trex 550</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1252 -->
<article id="post-1234" class="post-1234 post type-post status-publish format-standard hentry category-promocoes-e-descontos tag-concurso tag-evento tag-premio tag-promocao tag-sorteio">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/09/veja-como-foi-o-concurso-promovido-pela-helimodelos-com-no-mes-de-julhoagosto-2014/index.html" title="Permalink to Veja como foi o concurso promovido pela Helimodelos.com no mês de julho/agosto 2014." rel="bookmark">Veja como foi o concurso promovido pela Helimodelos.com no mês de julho/agosto 2014.</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/09/veja-como-foi-o-concurso-promovido-pela-helimodelos-com-no-mes-de-julhoagosto-2014/index.html" title="0:18" rel="bookmark"><span class="entry-date">09/15/2014</span> <span class="entry-time"> - 0:18</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/promocoes-e-descontos/index.html" rel="tag">Promoções e Descontos</a> </span> <div class="comments-link">
<a href="./2014/09/veja-como-foi-o-concurso-promovido-pela-helimodelos-com-no-mes-de-julhoagosto-2014/index.html#comments"><b>1</b> Comment</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Veja como foi o concurso promovido pela Helimodelos.com no mês de julho/agosto 2014." href="./2014/09/veja-como-foi-o-concurso-promovido-pela-helimodelos-com-no-mes-de-julhoagosto-2014/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/09/unnamed-1.jpg"></a> <p>De 05/julho a 05/agosto, tivemos uma mega disputa por votos, no concurso em nossa página no facebook (https://www.facebook.com/helimodelos) O concurso era bem simples. Você precisava imprimir o banner do concurso e tirar uma foto com ele. Em seguida era só cadastrar no concurso e começar a pedir votos. A foto mais … <a href="./2014/09/veja-como-foi-o-concurso-promovido-pela-helimodelos-com-no-mes-de-julhoagosto-2014/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/concurso/index.html" rel="tag">concurso</a>, <a href="./tag/evento/index.html" rel="tag">evento</a>, <a href="./tag/premio/index.html" rel="tag">prêmio</a>, <a href="./tag/promocao/index.html" rel="tag">promoção</a>, <a href="./tag/sorteio/index.html" rel="tag">sorteio</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1234 -->
<article id="post-1216" class="post-1216 post type-post status-publish format-standard hentry category-align-fabricantes-marcas category-fabricantes-marcas tag-align tag-lancamento tag-m480l tag-multirotor tag-quad tag-quadricoptero">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/09/voce-ja-conhece-o-novo-drone-m480l-da-align/index.html" title="Permalink to Você já conhece o novo drone M480L da Align ?" rel="bookmark">Você já conhece o novo drone M480L da Align ?</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/09/voce-ja-conhece-o-novo-drone-m480l-da-align/index.html" title="21:05" rel="bookmark"><span class="entry-date">09/04/2014</span> <span class="entry-time"> - 21:05</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/fabricantes-marcas/align-fabricantes-marcas/index.html" rel="tag">Align</a>, <a href="./category/fabricantes-marcas/index.html" rel="tag">Fabricantes / Marcas</a> </span> <div class="comments-link">
<a href="./2014/09/voce-ja-conhece-o-novo-drone-m480l-da-align/index.html#respond">Leave a comment</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Você já conhece o novo drone M480L da Align ?" href="./2014/09/voce-ja-conhece-o-novo-drone-m480l-da-align/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/09/06_調整大小.jpg"></a> <p>Divulgado há algumas semanas, com o novo M480L a Align agora participa do mercado de multirotores. A proposta da Align parece bastante interessante. O mesmo modelo é leve e rápido sendo um quadricoptero, mas pode ser facilmente convertido em um heavy lift hexacoptero para suspender cameras pesadas como uma panasonic gh4. … <a href="./2014/09/voce-ja-conhece-o-novo-drone-m480l-da-align/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/align/index.html" rel="tag">align</a>, <a href="./tag/lancamento/index.html" rel="tag">lançamento</a>, <a href="./tag/m480l/index.html" rel="tag">m480l</a>, <a href="./tag/multirotor/index.html" rel="tag">multirotor</a>, <a href="./tag/quad/index.html" rel="tag">quad</a>, <a href="./tag/quadricoptero/index.html" rel="tag">quadricoptero</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1216 -->
<article id="post-1196" class="post-1196 post type-post status-publish format-standard hentry category-fabricantes-marcas category-kds tag-kds-2 tag-kds-360 tag-lancamento">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/07/ja-conhece-o-novo-kds-chase-360/index.html" title="Permalink to Já conhece o novo KDS Chase 360 ?" rel="bookmark">Já conhece o novo KDS Chase 360 ?</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/07/ja-conhece-o-novo-kds-chase-360/index.html" title="15:27" rel="bookmark"><span class="entry-date">07/29/2014</span> <span class="entry-time"> - 15:27</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/fabricantes-marcas/index.html" rel="tag">Fabricantes / Marcas</a>, <a href="./category/fabricantes-marcas/kds/index.html" rel="tag">KDS</a> </span> <div class="comments-link">
<a href="./2014/07/ja-conhece-o-novo-kds-chase-360/index.html#comments"><b>2</b> Comments</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Já conhece o novo KDS Chase 360 ?" href="./2014/07/ja-conhece-o-novo-kds-chase-360/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/07/1654297_741777832551792_279078862343565167_n.jpg"></a> <p>Divulgado à algumas semanas, o novo kit da KDS o Chase 360 já está em pré-venda nas lojas no exterior… O modelo vai ter tamanho de um heli classe 450, com bateria 6s 1300-1500mah (protótipo em teste com 12s), pás de 360mm. Segue um vídeo do modelo voando: O que … <a href="./2014/07/ja-conhece-o-novo-kds-chase-360/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/kds-2/index.html" rel="tag">kds</a>, <a href="./tag/kds-360/index.html" rel="tag">kds 360</a>, <a href="./tag/lancamento/index.html" rel="tag">lançamento</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1196 -->
<article id="post-1185" class="post-1185 post type-post status-publish format-standard hentry category-dica category-fpv category-helimodelos tag-ama tag-banimento tag-drone tag-faa tag-fpv-2 tag-regulamentacao">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/07/possivel-banimento-ao-fpv-nos-eua-nos-podemos-fazer-algo/index.html" title="Permalink to Possível banimento ao FPV nos EUA? Nós podemos fazer algo!!" rel="bookmark">Possível banimento ao FPV nos EUA? Nós podemos fazer algo!!</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/07/possivel-banimento-ao-fpv-nos-eua-nos-podemos-fazer-algo/index.html" title="10:18" rel="bookmark"><span class="entry-date">07/17/2014</span> <span class="entry-time"> - 10:18</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/dica/index.html" rel="tag">Dica</a>, <a href="./category/fpv/index.html" rel="tag">FPV</a>, <a href="./category/helimodelos/index.html" rel="tag">Helimodelos</a> </span> <div class="comments-link">
<a href="./2014/07/possivel-banimento-ao-fpv-nos-eua-nos-podemos-fazer-algo/index.html#respond">Leave a comment</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Possível banimento ao FPV nos EUA? Nós podemos fazer algo!!" href="./2014/07/possivel-banimento-ao-fpv-nos-eua-nos-podemos-fazer-algo/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/07/hobbyking.png"></a> <p>Nos Estados Unidos, algumas alterações recentes na legislação poderão em um futuro próximo limitar consideravelmente suas atividades com aeromodelos. Especialmente se você é adepto do FPV. Essa é a informação que está circulando nos emails da Hobbyking, desde o dia 14/07/14. Como a matéria da hobbyking não tinha um link … <a href="./2014/07/possivel-banimento-ao-fpv-nos-eua-nos-podemos-fazer-algo/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/ama/index.html" rel="tag">ama</a>, <a href="./tag/banimento/index.html" rel="tag">banimento</a>, <a href="./tag/drone/index.html" rel="tag">drone</a>, <a href="./tag/faa/index.html" rel="tag">faa</a>, <a href="./tag/fpv-2/index.html" rel="tag">fpv</a>, <a href="./tag/regulamentacao/index.html" rel="tag">regulamentação</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1185 -->
<article id="post-1168" class="post-1168 post type-post status-publish format-standard hentry category-align-fabricantes-marcas category-dica category-fabricantes-marcas tag-63 tag-dominator tag-lancamento tag-trex550 tag-trex550l">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/07/t-rex-550l-foi-oficialmente-divulgado/index.html" title="Permalink to T-Rex 550L foi oficialmente divulgado" rel="bookmark">T-Rex 550L foi oficialmente divulgado</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/07/t-rex-550l-foi-oficialmente-divulgado/index.html" title="14:03" rel="bookmark"><span class="entry-date">07/11/2014</span> <span class="entry-time"> - 14:03</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/fabricantes-marcas/align-fabricantes-marcas/index.html" rel="tag">Align</a>, <a href="./category/dica/index.html" rel="tag">Dica</a>, <a href="./category/fabricantes-marcas/index.html" rel="tag">Fabricantes / Marcas</a> </span> <div class="comments-link">
<a href="./2014/07/t-rex-550l-foi-oficialmente-divulgado/index.html#respond">Leave a comment</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="T-Rex 550L foi oficialmente divulgado" href="./2014/07/t-rex-550l-foi-oficialmente-divulgado/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/07/10514644_669394073144603_1443127710980060726_n.jpg"></a> <p>Foi divulgado hoje pelo facebook do diretor de marketing da align, Jeff Fassbinder, o lançamento (que já sabiamos aqui pela helimodelos.com) do novo T-REX 550L. Segue o texto escrito na integra: Dear All,Hope everything goes well and perfect with you all!We are excited to announce new T-REX 550L Dominator Super Combo … <a href="./2014/07/t-rex-550l-foi-oficialmente-divulgado/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/550/index.html" rel="tag">550</a>, <a href="./tag/dominator/index.html" rel="tag">Dominator</a>, <a href="./tag/lancamento/index.html" rel="tag">lançamento</a>, <a href="./tag/trex550/index.html" rel="tag">trex550</a>, <a href="./tag/trex550l/index.html" rel="tag">trex550l</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1168 -->
<article id="post-1157" class="post-1157 post type-post status-publish format-standard hentry category-dica category-helimodelos category-promocoes-e-descontos tag-concurso tag-facebook tag-helimodelos-2 tag-sorteio">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/07/concurso-eu-curto-helimodelismo/index.html" title="Permalink to Concurso: Eu curto Helimodelismo" rel="bookmark">Concurso: Eu curto Helimodelismo</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/07/concurso-eu-curto-helimodelismo/index.html" title="0:03" rel="bookmark"><span class="entry-date">07/04/2014</span> <span class="entry-time"> - 0:03</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/dica/index.html" rel="tag">Dica</a>, <a href="./category/helimodelos/index.html" rel="tag">Helimodelos</a>, <a href="./category/promocoes-e-descontos/index.html" rel="tag">Promoções e Descontos</a> </span> <div class="comments-link">
<a href="./2014/07/concurso-eu-curto-helimodelismo/index.html#comments"><b>2</b> Comments</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Concurso: Eu curto Helimodelismo" href="./2014/07/concurso-eu-curto-helimodelismo/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/07/header.jpg"></a> <p>A Helimodelos.com está lançando mais um desafio. O Concurso “Eu Curto Helimodelismo”. O concurso irá começar no dia 05/julho e irá até o dia 05/agosto !! Para participar é muito muito fácil… Você deverá tirar uma foto sua, segurando o banner do concurso. A foto mais votada ganhará o concurso. … <a href="./2014/07/concurso-eu-curto-helimodelismo/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/concurso/index.html" rel="tag">concurso</a>, <a href="./tag/facebook/index.html" rel="tag">facebook</a>, <a href="./tag/helimodelos-2/index.html" rel="tag">helimodelos</a>, <a href="./tag/sorteio/index.html" rel="tag">sorteio</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1157 -->
<article id="post-1151" class="post-1151 post type-post status-publish format-standard hentry category-63 category-align-fabricantes-marcas category-fabricantes-marcas category-helimodelos tag-63 tag-align tag-dominator tag-lancamento tag-novidade tag-trex">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/06/vazam-algumas-fotos-do-novo-t-rex-550l-dominator/index.html" title="Permalink to Vazam algumas fotos do novo T-Rex 550L Dominator" rel="bookmark">Vazam algumas fotos do novo T-Rex 550L Dominator</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/06/vazam-algumas-fotos-do-novo-t-rex-550l-dominator/index.html" title="15:30" rel="bookmark"><span class="entry-date">06/29/2014</span> <span class="entry-time"> - 15:30</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/helimodelos/550/index.html" rel="tag">550</a>, <a href="./category/fabricantes-marcas/align-fabricantes-marcas/index.html" rel="tag">Align</a>, <a href="./category/fabricantes-marcas/index.html" rel="tag">Fabricantes / Marcas</a>, <a href="./category/helimodelos/index.html" rel="tag">Helimodelos</a> </span> <div class="comments-link">
<a href="./2014/06/vazam-algumas-fotos-do-novo-t-rex-550l-dominator/index.html#comments"><b>1</b> Comment</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Vazam algumas fotos do novo T-Rex 550L Dominator" href="./2014/06/vazam-algumas-fotos-do-novo-t-rex-550l-dominator/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/06/10320272_1501400446741525_2010865451242178750_n.jpg"></a> <p>É isso mesmo, já começaram a circular as fotos do mais novo lançamento da Align, o T-Rex 550L Dominator. A galera já está conversando sobre ele no forum internacional Helifreak: http://www.helifreak.com/showthread.php?p=5921508 O que achou do lançamento ??</p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/550/index.html" rel="tag">550</a>, <a href="./tag/align/index.html" rel="tag">align</a>, <a href="./tag/dominator/index.html" rel="tag">Dominator</a>, <a href="./tag/lancamento/index.html" rel="tag">lançamento</a>, <a href="./tag/novidade/index.html" rel="tag">novidade</a>, <a href="./tag/trex/index.html" rel="tag">trex</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1151 -->
<article id="post-1136" class="post-1136 post type-post status-publish format-standard hentry category-align-fabricantes-marcas category-fabricantes-marcas category-helimodelos tag-align tag-lancamento tag-trex tag-trex700">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/05/foi-divulgado-fotos-do-novo-t-rex-700e-dominator-da-align/index.html" title="Permalink to Foi divulgado fotos do novo T-Rex 700E Dominator da Align" rel="bookmark">Foi divulgado fotos do novo T-Rex 700E Dominator da Align</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/05/foi-divulgado-fotos-do-novo-t-rex-700e-dominator-da-align/index.html" title="18:14" rel="bookmark"><span class="entry-date">05/20/2014</span> <span class="entry-time"> - 18:14</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/fabricantes-marcas/align-fabricantes-marcas/index.html" rel="tag">Align</a>, <a href="./category/fabricantes-marcas/index.html" rel="tag">Fabricantes / Marcas</a>, <a href="./category/helimodelos/index.html" rel="tag">Helimodelos</a> </span> <div class="comments-link">
<a href="./2014/05/foi-divulgado-fotos-do-novo-t-rex-700e-dominator-da-align/index.html#respond">Leave a comment</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Foi divulgado fotos do novo T-Rex 700E Dominator da Align" href="./2014/05/foi-divulgado-fotos-do-novo-t-rex-700e-dominator-da-align/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/05/988475_641648972585780_2485020099812086607_n.jpg"></a> <p>Foi divulgado hoje(20/maio/14) pelo facebook as novas fotos do TRex 700E Dominator. O kit super combo contém: Flybarless system – Gpro Electric Motor – Dominator 520 KV ESC Electronic Speed Control – 120 HV Castle Creations Inc. HV Digital Servos- BL815/855 metal servos Por enquanto somente essas informações foram divulgadas… … <a href="./2014/05/foi-divulgado-fotos-do-novo-t-rex-700e-dominator-da-align/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/align/index.html" rel="tag">align</a>, <a href="./tag/lancamento/index.html" rel="tag">lançamento</a>, <a href="./tag/trex/index.html" rel="tag">trex</a>, <a href="./tag/trex700/index.html" rel="tag">trex700</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1136 -->
<article id="post-1124" class="post-1124 post type-post status-publish format-standard hentry category-helimodelos tag-drone tag-quadcopter">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/05/51-motivos-que-provam-que-os-drones-merecem-nossa-atencao/index.html" title="Permalink to 51 motivos que provam que os drones merecem nossa atenção!" rel="bookmark">51 motivos que provam que os drones merecem nossa atenção!</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/05/51-motivos-que-provam-que-os-drones-merecem-nossa-atencao/index.html" title="2:04" rel="bookmark"><span class="entry-date">05/18/2014</span> <span class="entry-time"> - 2:04</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/helimodelos/index.html" rel="tag">Helimodelos</a> </span> <div class="comments-link">
<a href="./2014/05/51-motivos-que-provam-que-os-drones-merecem-nossa-atencao/index.html#comments"><b>1</b> Comment</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<p>Saiu recentemente no site da revista exame, uma matéria sobre 50 motivos para você prestar atenção nos drones. Quem acessou a matéria, viu que as imagens e textos não foram bem posicionados, e ficou um pouco ruim de ler. Então resolvi colocar todas as imagens e textos aqui um em … <a href="./2014/05/51-motivos-que-provam-que-os-drones-merecem-nossa-atencao/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/drone/index.html" rel="tag">drone</a>, <a href="./tag/quadcopter/index.html" rel="tag">quadcopter</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1124 -->
<article id="post-1066" class="post-1066 post type-post status-publish format-standard hentry category-dica category-tutorial-passo-a-passo tag-acidente tag-dica-2 tag-montagem tag-parafuso tag-screw tag-threadlock tag-travarosca">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/05/como-um-parafuso-sem-trava-rosca-pode-prejudicar-o-seu-voo/index.html" title="Permalink to Como um parafuso sem trava rosca pode prejudicar o seu voo ?" rel="bookmark">Como um parafuso sem trava rosca pode prejudicar o seu voo ?</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/05/como-um-parafuso-sem-trava-rosca-pode-prejudicar-o-seu-voo/index.html" title="12:21" rel="bookmark"><span class="entry-date">05/16/2014</span> <span class="entry-time"> - 12:21</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/dica/index.html" rel="tag">Dica</a>, <a href="./category/tutorial-passo-a-passo/index.html" rel="tag">Tutorial / Passo a passo</a> </span> <div class="comments-link">
<a href="./2014/05/como-um-parafuso-sem-trava-rosca-pode-prejudicar-o-seu-voo/index.html#respond">Leave a comment</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Como um parafuso sem trava rosca pode prejudicar o seu voo ?" href="./2014/05/como-um-parafuso-sem-trava-rosca-pode-prejudicar-o-seu-voo/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/05/10264961_677284625641512_7454212308643378337_n.jpg"></a> <p>Todos falam… Trava rosca é obrigatório nos parafusos… Poucas pessoas realmente fazem… Alguns por preguiça, outros por desconhecimento… Esse parafusinho na foto ao lado, serve para prender esse suporte do slider da cauda… Sem ele, o suporte vai continuar preso pelo outro parafuso, e não vai girar, pois a peça … <a href="./2014/05/como-um-parafuso-sem-trava-rosca-pode-prejudicar-o-seu-voo/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/acidente/index.html" rel="tag">acidente</a>, <a href="./tag/dica-2/index.html" rel="tag">dica</a>, <a href="./tag/montagem/index.html" rel="tag">montagem</a>, <a href="./tag/parafuso/index.html" rel="tag">parafuso</a>, <a href="./tag/screw/index.html" rel="tag">screw</a>, <a href="./tag/threadlock/index.html" rel="tag">threadlock</a>, <a href="./tag/travarosca/index.html" rel="tag">travarosca</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1066 -->
<article id="post-1046" class="post-1046 post type-post status-publish format-standard hentry category-align-fabricantes-marcas category-fabricantes-marcas tag-align tag-boato tag-canopy tag-carenagem tag-forum tag-release">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/03/estaria-a-align-preparando-o-lancamento-de-uma-nova-linha-de-helis/index.html" title="Permalink to Estaria a Align preparando o lançamento de uma nova linha de Helis ? – Atualizado!!" rel="bookmark">Estaria a Align preparando o lançamento de uma nova linha de Helis ? – Atualizado!!</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/03/estaria-a-align-preparando-o-lancamento-de-uma-nova-linha-de-helis/index.html" title="15:50" rel="bookmark"><span class="entry-date">03/13/2014</span> <span class="entry-time"> - 15:50</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/fabricantes-marcas/align-fabricantes-marcas/index.html" rel="tag">Align</a>, <a href="./category/fabricantes-marcas/index.html" rel="tag">Fabricantes / Marcas</a> </span> <div class="comments-link">
<a href="./2014/03/estaria-a-align-preparando-o-lancamento-de-uma-nova-linha-de-helis/index.html#comments"><b>3</b> Comments</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Estaria a Align preparando o lançamento de uma nova linha de Helis ? – Atualizado!!" href="./2014/03/estaria-a-align-preparando-o-lancamento-de-uma-nova-linha-de-helis/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/03/Screen-Shot-2014-03-13-at-3.39.24-PM.png"></a> <p>Foi divulgado hoje pelo administrador do forum oficial da Align, um pré lançamento de fuselagem (ele chama de “clothes”, ou vestuário/roupa). O post original está escrito em chines e pode ser visualizado aqui: http://forum.align.com.tw/forum.php?mod=viewthread&tid=47452 Titulo do post: Prerelease exposure!!! Tyrannosaurus family clothes 450 ~ 700E series of all-inclusive cabinet!!! Please vote … <a href="./2014/03/estaria-a-align-preparando-o-lancamento-de-uma-nova-linha-de-helis/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/align/index.html" rel="tag">align</a>, <a href="./tag/boato/index.html" rel="tag">boato</a>, <a href="./tag/canopy/index.html" rel="tag">canopy</a>, <a href="./tag/carenagem/index.html" rel="tag">carenagem</a>, <a href="./tag/forum/index.html" rel="tag">forum</a>, <a href="./tag/release/index.html" rel="tag">release</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1046 -->
<article id="post-1034" class="post-1034 post type-post status-publish format-standard hentry category-dica tag-201 tag-6 tag-colaboracao tag-colaborador tag-xtreino">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/02/aprenda-a-fazer-em-casa-o-seu-proprio-x-de-treino/index.html" title="Permalink to Aprenda a fazer em casa o seu próprio X de treino" rel="bookmark">Aprenda a fazer em casa o seu próprio X de treino</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/02/aprenda-a-fazer-em-casa-o-seu-proprio-x-de-treino/index.html" title="17:52" rel="bookmark"><span class="entry-date">02/23/2014</span> <span class="entry-time"> - 17:52</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/dica/index.html" rel="tag">Dica</a> </span> <div class="comments-link">
<a href="./2014/02/aprenda-a-fazer-em-casa-o-seu-proprio-x-de-treino/index.html#comments"><b>2</b> Comments</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Aprenda a fazer em casa o seu próprio X de treino" href="./2014/02/aprenda-a-fazer-em-casa-o-seu-proprio-x-de-treino/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/02/2014-01-25-14.58.28.jpg"></a> <p>Essa matéria tem como único intuito mostrar que qualquer pessoa pode exercer suas habilidades para, de forma rápida e barata, continuar treinando. Todos sabemos que o maior empecilho de qualquer iniciante é entender o funcionamento básico do equipamento, para, em momento futuro, saber resolvê-los. Como se ainda assim não bastasse, … <a href="./2014/02/aprenda-a-fazer-em-casa-o-seu-proprio-x-de-treino/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/250/index.html" rel="tag">250</a>, <a href="./tag/450/index.html" rel="tag">450</a>, <a href="./tag/colaboracao/index.html" rel="tag">colaboração</a>, <a href="./tag/colaborador/index.html" rel="tag">colaborador</a>, <a href="./tag/xtreino/index.html" rel="tag">xtreino</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1034 -->
<article id="post-1025" class="post-1025 post type-post status-publish format-standard hentry category-dica tag-evento tag-guapiheli tag-guapihelifest tag-helimodelos-2">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/02/veja-como-foi-o-2o-guapi-heli-fest-no-rio-de-janeiro/index.html" title="Permalink to Veja como foi o 2º Guapi Heli Fest no Rio de Janeiro" rel="bookmark">Veja como foi o 2º Guapi Heli Fest no Rio de Janeiro</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/02/veja-como-foi-o-2o-guapi-heli-fest-no-rio-de-janeiro/index.html" title="19:16" rel="bookmark"><span class="entry-date">02/04/2014</span> <span class="entry-time"> - 19:16</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/dica/index.html" rel="tag">Dica</a> </span> <div class="comments-link">
<a href="./2014/02/veja-como-foi-o-2o-guapi-heli-fest-no-rio-de-janeiro/index.html#comments"><b>2</b> Comments</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Veja como foi o 2º Guapi Heli Fest no Rio de Janeiro" href="./2014/02/veja-como-foi-o-2o-guapi-heli-fest-no-rio-de-janeiro/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/02/Screen-Shot-2014-02-04-at-8.08.09-PM.png"></a> <p>O evento ocorreu nos dias 01 e 02 de fevereiro/2014. Foi a segunda edição do evento, contamos com menos participantes dessa vez, porém a infra estrutura melhorou… Alguns participaram da vaquinha e alugamos algumas mesas e cadeiras o que deixou o evento ainda melhor. O sucesso foi tão grande que … <a href="./2014/02/veja-como-foi-o-2o-guapi-heli-fest-no-rio-de-janeiro/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/evento/index.html" rel="tag">evento</a>, <a href="./tag/guapiheli/index.html" rel="tag">guapiheli</a>, <a href="./tag/guapihelifest/index.html" rel="tag">guapihelifest</a>, <a href="./tag/helimodelos-2/index.html" rel="tag">helimodelos</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1025 -->
<article id="post-989" class="post-989 post type-post status-publish format-standard hentry category-dica category-helimodelos tag-bateria tag-cuidado tag-curto tag-dica-2 tag-lipo tag-perigo">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/01/curto-circuito-e-sobrecarga-nas-baterias-lipo-podem-causar-incendios/index.html" title="Permalink to Curto-circuito e sobrecarga nas baterias LiPo podem causar incêndios" rel="bookmark">Curto-circuito e sobrecarga nas baterias LiPo podem causar incêndios</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/01/curto-circuito-e-sobrecarga-nas-baterias-lipo-podem-causar-incendios/index.html" title="22:33" rel="bookmark"><span class="entry-date">01/24/2014</span> <span class="entry-time"> - 22:33</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/dica/index.html" rel="tag">Dica</a>, <a href="./category/helimodelos/index.html" rel="tag">Helimodelos</a> </span> <div class="comments-link">
<a href="./2014/01/curto-circuito-e-sobrecarga-nas-baterias-lipo-podem-causar-incendios/index.html#comments"><b>5</b> Comments</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Curto-circuito e sobrecarga nas baterias LiPo podem causar incêndios" href="./2014/01/curto-circuito-e-sobrecarga-nas-baterias-lipo-podem-causar-incendios/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/01/1461200_10200549329009413_1405970439_n.jpg"></a> <p>Esse assunto não é nenhuma novidade… Todos sabem que baterias LiPos são perigosas, e podem pegar foto sempre que estão sendo carregadas (na bancada) ou descarregadas (no voo). Todo cuidado é pouco quando se fala de LiPos. Mas e quando isso acontece dentro da sua maleta ou sacola ? Vejam … <a href="./2014/01/curto-circuito-e-sobrecarga-nas-baterias-lipo-podem-causar-incendios/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/bateria/index.html" rel="tag">bateria</a>, <a href="./tag/cuidado/index.html" rel="tag">cuidado</a>, <a href="./tag/curto/index.html" rel="tag">curto</a>, <a href="./tag/dica-2/index.html" rel="tag">dica</a>, <a href="./tag/lipo/index.html" rel="tag">lipo</a>, <a href="./tag/perigo/index.html" rel="tag">perigo</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-989 -->
<article id="post-1017" class="post-1017 post type-post status-publish format-standard hentry category-dica category-helimodelos category-promocoes-e-descontos">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/01/divulgacao-do-resultado-do-sorteio-do-v911-commander/index.html" title="Permalink to Divulgação do Resultado do Sorteio do V911 Commander" rel="bookmark">Divulgação do Resultado do Sorteio do V911 Commander</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/01/divulgacao-do-resultado-do-sorteio-do-v911-commander/index.html" title="23:36" rel="bookmark"><span class="entry-date">01/17/2014</span> <span class="entry-time"> - 23:36</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/dica/index.html" rel="tag">Dica</a>, <a href="./category/helimodelos/index.html" rel="tag">Helimodelos</a>, <a href="./category/promocoes-e-descontos/index.html" rel="tag">Promoções e Descontos</a> </span> <div class="comments-link">
<a href="./2014/01/divulgacao-do-resultado-do-sorteio-do-v911-commander/index.html#comments"><b>1</b> Comment</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Divulgação do Resultado do Sorteio do V911 Commander" href="./2014/01/divulgacao-do-resultado-do-sorteio-do-v911-commander/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/01/Screen-Shot-2014-01-17-at-10.40.37-PM.png"></a> <p>No dia 17/01/14, a Helimodelos.com sorteou no facebook (https://www.facebook.com/helimodelos) um V911 Commander. De acordo com as instruções do sorteio publicadas aqui no blog, foram sorteados 3 colocados. Faremos contato com o primeiro, que terá 48 horas para responder nosso email. Se não houver resposta, o prêmio irá para o segundo … <a href="./2014/01/divulgacao-do-resultado-do-sorteio-do-v911-commander/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
</footer><!-- #entry-meta -->
</article><!-- #post-1017 -->
<article id="post-1007" class="post-1007 post type-post status-publish format-standard hentry category-helimodelos tag-divulgacao tag-evento tag-guapihelifest tag-helimodelos-2 tag-riodejaneiro">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/01/vem-ai-mais-uma-edicao-do-guapi-heli-fest-no-rio-de-janeiro-dias-1-e-2-de-fevereiro-vai-ficar-de-fora/index.html" title="Permalink to Vem aí mais uma edição do Guapi Heli Fest no Rio de Janeiro. Dias 1 e 2 de Fevereiro. Vai ficar de fora ?" rel="bookmark">Vem aí mais uma edição do Guapi Heli Fest no Rio de Janeiro. Dias 1 e 2 de Fevereiro. Vai ficar de fora ?</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/01/vem-ai-mais-uma-edicao-do-guapi-heli-fest-no-rio-de-janeiro-dias-1-e-2-de-fevereiro-vai-ficar-de-fora/index.html" title="19:20" rel="bookmark"><span class="entry-date">01/09/2014</span> <span class="entry-time"> - 19:20</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/helimodelos/index.html" rel="tag">Helimodelos</a> </span> <div class="comments-link">
<a href="./2014/01/vem-ai-mais-uma-edicao-do-guapi-heli-fest-no-rio-de-janeiro-dias-1-e-2-de-fevereiro-vai-ficar-de-fora/index.html#comments"><b>1</b> Comment</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Vem aí mais uma edição do Guapi Heli Fest no Rio de Janeiro. Dias 1 e 2 de Fevereiro. Vai ficar de fora ?" href="./2014/01/vem-ai-mais-uma-edicao-do-guapi-heli-fest-no-rio-de-janeiro-dias-1-e-2-de-fevereiro-vai-ficar-de-fora/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/01/2guapihelifest-divulgacao1.jpg"></a> <p>O Guapi Heli Fest é um evento de modelismo com o objetivo é unir os amigos, e novos amigos num só lugar para compartilhar experiências, vôos, risadas…. Nessa segunda edição do evento, será cobrado uma pequenina taxa de inscrição para custear coisas básicas como som e mesas. Local do evento: … <a href="./2014/01/vem-ai-mais-uma-edicao-do-guapi-heli-fest-no-rio-de-janeiro-dias-1-e-2-de-fevereiro-vai-ficar-de-fora/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/divulgacao/index.html" rel="tag">divulgação</a>, <a href="./tag/evento/index.html" rel="tag">evento</a>, <a href="./tag/guapihelifest/index.html" rel="tag">guapihelifest</a>, <a href="./tag/helimodelos-2/index.html" rel="tag">helimodelos</a>, <a href="./tag/riodejaneiro/index.html" rel="tag">riodejaneiro</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1007 -->
<article id="post-1002" class="post-1002 post type-post status-publish format-standard hentry category-dica category-promocoes-e-descontos tag-desconto tag-mikado-2 tag-promocao tag-readyheli">
<header class="entry-header">
<h1 class="entry-title"><a href="./2014/01/readyheli-oferece-15-de-desconto-nos-itens-mikado-por-tempo-limitado/index.html" title="Permalink to Readyheli oferece 15% de desconto nos itens Mikado, por tempo limitado!" rel="bookmark">Readyheli oferece 15% de desconto nos itens Mikado, por tempo limitado!</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2014/01/readyheli-oferece-15-de-desconto-nos-itens-mikado-por-tempo-limitado/index.html" title="19:12" rel="bookmark"><span class="entry-date">01/09/2014</span> <span class="entry-time"> - 19:12</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/dica/index.html" rel="tag">Dica</a>, <a href="./category/promocoes-e-descontos/index.html" rel="tag">Promoções e Descontos</a> </span> <div class="comments-link">
<a href="./2014/01/readyheli-oferece-15-de-desconto-nos-itens-mikado-por-tempo-limitado/index.html#respond">Leave a comment</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Readyheli oferece 15% de desconto nos itens Mikado, por tempo limitado!" href="./2014/01/readyheli-oferece-15-de-desconto-nos-itens-mikado-por-tempo-limitado/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2014/01/promo-mikado.jpg"></a> <p>Super desconto de 15% em kits e partes Mikado na readyheli.com somente no período de 10/jan/2014 até 17/jan/2014. Será essa a sua chance de pegar aquele tão sonhado Logo 700 xxtreme ??</p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/desconto/index.html" rel="tag">desconto</a>, <a href="./tag/mikado-2/index.html" rel="tag">mikado</a>, <a href="./tag/promocao/index.html" rel="tag">promoção</a>, <a href="./tag/readyheli/index.html" rel="tag">readyheli</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-1002 -->
<article id="post-964" class="post-964 post type-post status-publish format-standard hentry category-align-fabricantes-marcas category-fabricantes-marcas tag-align tag-lancamento tag-m424 tag-microquad tag-quad">
<header class="entry-header">
<h1 class="entry-title"><a href="./2013/12/voce-sabia-que-o-quadcopter-m424-da-align-ja-esta-a-venda/index.html" title="Permalink to Você sabia que o QuadCopter M424 da Align já está a venda?" rel="bookmark">Você sabia que o QuadCopter M424 da Align já está a venda?</a></h1>
<div class="entry-meta">
<span class="author vcard" >By <a class="url fn n" href="./author/admin/index.html" title="View all posts by Rafael Biriba">Rafael Biriba</a> <span class="bl_sep">|</span></span> <span class="onDate"> <a href="./2013/12/voce-sabia-que-o-quadcopter-m424-da-align-ja-esta-a-venda/index.html" title="14:52" rel="bookmark"><span class="entry-date">12/17/2013</span> <span class="entry-time"> - 14:52</span></a> <span class="bl_sep">|</span> </span> <span class="bl_categ"> <a href="./category/fabricantes-marcas/align-fabricantes-marcas/index.html" rel="tag">Align</a>, <a href="./category/fabricantes-marcas/index.html" rel="tag">Fabricantes / Marcas</a> </span> <div class="comments-link">
<a href="./2013/12/voce-sabia-que-o-quadcopter-m424-da-align-ja-esta-a-venda/index.html#respond">Leave a comment</a> </div>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-summary">
<a title="Você sabia que o QuadCopter M424 da Align já está a venda?" href="./2013/12/voce-sabia-que-o-quadcopter-m424-da-align-ja-esta-a-venda/index.html" ><img width=167 height=100 title="" alt="" class="alignleft post_thumbnail" src="./wp-content/uploads/2013/12/Screen-Shot-2013-12-17-at-10.01.10-AM.png"></a> <p>Esse é o Align M424 Micro Quad pronto para voar. Inclui tudo que você precisa, basta carregar a bateria e voar sem precisar montar e regular nada. A controladora AT100 utiliza AFHDS 2.4GHz com a tecnlogia de “frequency hopping” que permite um sinal estável e sem interferências. O controle é … <a href="./2013/12/voce-sabia-que-o-quadcopter-m424-da-align-ja-esta-a-venda/index.html">Continue lendo <span class="meta-nav">→ </span></a></p>
</div><!-- .entry-summary -->
<footer class="entry-meta2">
<span class="bl_tagg">Tagged <a href="./tag/align/index.html" rel="tag">align</a>, <a href="./tag/lancamento/index.html" rel="tag">lançamento</a>, <a href="./tag/m424/index.html" rel="tag">M424</a>, <a href="./tag/microquad/index.html" rel="tag">microquad</a>, <a href="./tag/quad/index.html" rel="tag">quad</a></span>
</footer><!-- #entry-meta -->
</article><!-- #post-964 -->
<nav class='pagination'><span class='current'>1</span><a href='./page/2/index.html' class='inactive' >2</a><a href='./page/3/index.html' class='inactive' >3</a><a href='./page/4/index.html' class='inactive' >4</a></nav>
</div><!-- #content -->
<div id="primary" class="widget-area" role="complementary">
<ul class="xoxo">
<li id="search-2" class="widget-container widget_search">
<form method="get" id="searchform"
action="./index.html">
<input type="text" value="Search"
name="s" id="s"
onblur="if (this.value == ''){this.value = 'Search';}"
onfocus="if (this.value == 'Search'){this.value = '';}" />
<input type="submit" id="searchsubmit" value="OK" />
</form></li><li id="text-7" class="widget-container widget_text"><h3 class="widget-title">Publicidade</h3> <div class="textwidget"><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- banner lateral blog -->
<ins class="adsbygoogle"
style="display:inline-block;width:300px;height:250px"
data-ad-client="ca-pub-1303939561252359"
data-ad-slot="7561974389"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- banner lateral blog -->
<ins class="adsbygoogle"
style="display:inline-block;width:300px;height:250px"
data-ad-client="ca-pub-1303939561252359"
data-ad-slot="7561974389"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div>
</li><li id="rfb_widget-2" class="widget-container widget_rfb_widget"><h3 class="widget-title">Helimodelos no Facebook</h3> <!-- Recent Facebook Posts v2.0.9 - https://wordpress.org/plugins/recent-facebook-posts/ -->
<div class="recent-facebook-posts rfbp rfbp-container rfbp-widget">
<p>No recent Facebook posts to show</p>
<p class="rfbp-page-link-wrap"><a class="rfbp-page-link" href="https://www.facebook.com/415853428451301/" rel="external nofollow" target="">Visite a Helimodelos.com no Facebook</a></p>
</div>
<!-- / Recent Facebook Posts -->
</li><li id="text-5" class="widget-container widget_text"><h3 class="widget-title">Ajude a Helimodelos.com</h3> <div class="textwidget"><!-- INICIO FORMULARIO BOTAO PAGSEGURO -->
<form target="pagseguro" action="https://pagseguro.uol.com.br/checkout/v2/donation.html" method="post">
<input type="hidden" name="receiverEmail" value="[email protected]" />
<input type="hidden" name="currency" value="BRL" />
<input type="image" src="https://p.simg.uol.com.br/out/pagseguro/i/botoes/doacoes/205x30-doar.gif" name="submit" alt="Pague com PagSeguro - é rápido, grátis e seguro!" />
</form>
<!-- FINAL FORMULARIO BOTAO PAGSEGURO --></div>
</li><li id="text-2" class="widget-container widget_text"><h3 class="widget-title">Leia o blog em seu email:</h3> <div class="textwidget"><form style="border:1px solid #ccc;padding:3px;text-align:center;" action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=helimodelos', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><p>Digite seu email:</p><p><input type="text" style="width:140px" name="email"/></p><input type="hidden" value="helimodelos" name="uri"/><input type="hidden" name="loc" value="pt_BR"/><input type="submit" value="Cadastrar" /></form>
<br/>
<p><a href="http://feeds.feedburner.com/helimodelos"><img src="http://feeds.feedburner.com/~fc/helimodelos?bg=000000&fg=ffffff&anim=0" height="26" width="88" style="border:0" alt="" /></a></p></div>
</li><li id="categories-2" class="widget-container widget_categories"><h3 class="widget-title">Categorias</h3> <ul>
<li class="cat-item cat-item-27"><a href="./category/dica/index.html" >Dica</a> (37)
</li>
<li class="cat-item cat-item-146"><a href="./category/fabricantes-marcas/index.html" >Fabricantes / Marcas</a> (27)
<ul class='children'>
<li class="cat-item cat-item-148"><a href="./category/fabricantes-marcas/align-fabricantes-marcas/index.html" >Align</a> (15)
</li>
<li class="cat-item cat-item-225"><a href="./category/fabricantes-marcas/castle-creation/index.html" >Castle Creation</a> (1)
</li>
<li class="cat-item cat-item-151"><a href="./category/fabricantes-marcas/copterx-fabricantes-marcas/index.html" >CopterX</a> (1)
</li>
<li class="cat-item cat-item-149"><a href="./category/fabricantes-marcas/hobbyking-fabricantes-marcas/index.html" >Hobbyking</a> (6)
</li>
<li class="cat-item cat-item-150"><a href="./category/fabricantes-marcas/ikon-fabricantes-marcas/index.html" >iKon</a> (1)
</li>
<li class="cat-item cat-item-215"><a href="./category/fabricantes-marcas/kds/index.html" >KDS</a> (1)
</li>
<li class="cat-item cat-item-184"><a href="./category/fabricantes-marcas/mikado/index.html" >Mikado</a> (1)
</li>
<li class="cat-item cat-item-152"><a href="./category/fabricantes-marcas/turnigy-fabricantes-marcas/index.html" >Turnigy</a> (1)
</li>
</ul>
</li>
<li class="cat-item cat-item-43"><a href="./category/fpv/index.html" >FPV</a> (3)
</li>
<li class="cat-item cat-item-1"><a href="./category/helimodelos/index.html" >Helimodelos</a> (47)
<ul class='children'>
<li class="cat-item cat-item-6"><a href="./category/helimodelos/450/index.html" >450</a> (10)
</li>
<li class="cat-item cat-item-63"><a href="./category/helimodelos/550/index.html" >550</a> (3)
</li>
<li class="cat-item cat-item-141"><a href="./category/helimodelos/800/index.html" >800</a> (1)
</li>
</ul>
</li>
<li class="cat-item cat-item-117"><a href="./category/promocoes-e-descontos/index.html" >Promoções e Descontos</a> (7)
</li>
<li class="cat-item cat-item-31"><a href="./category/radio/index.html" >Rádio</a> (1)
</li>
<li class="cat-item cat-item-162"><a href="./category/tutorial-passo-a-passo/index.html" >Tutorial / Passo a passo</a> (2)
</li>
</ul>
</li><li id="recentcomments" class="widget-container widget_recentcomments"><h3 class="widget-title">Comentários Recentes</h3><ul><li class="rc-navi rc-clearfix"><span class="rc-loading">Loading...</span></li><li id="rc-comment-temp" class="rc-item rc-comment rc-clearfix"><div class="rc-info"></div><div class="rc-timestamp"></div><div class="rc-excerpt"></div></li><li id="rc-ping-temp" class="rc-item rc-ping rc-clearfix"><span class="rc-label"></span></li></ul></li><li id="tag_cloud-2" class="widget-container widget_tag_cloud"><h3 class="widget-title">Tags</h3><div class="tagcloud"><a href='./tag/450/index.html' class='tag-link-6' title='11 tópicos' style='font-size: 17.333333333333pt;'>450</a>
<a href='./tag/450l/index.html' class='tag-link-153' title='4 tópicos' style='font-size: 11.422222222222pt;'>450L</a>
<a href='./tag/550/index.html' class='tag-link-63' title='3 tópicos' style='font-size: 9.8666666666667pt;'>550</a>
<a href='./tag/acidente/index.html' class='tag-link-25' title='2 tópicos' style='font-size: 8pt;'>acidente</a>
<a href='./tag/align/index.html' class='tag-link-65' title='13 tópicos' style='font-size: 18.422222222222pt;'>align</a>
<a href='./tag/build/index.html' class='tag-link-81' title='3 tópicos' style='font-size: 9.8666666666667pt;'>build</a>
<a href='./tag/concurso/index.html' class='tag-link-74' title='4 tópicos' style='font-size: 11.422222222222pt;'>concurso</a>
<a href='./tag/copterx450/index.html' class='tag-link-12' title='5 tópicos' style='font-size: 12.666666666667pt;'>copterx450</a>
<a href='./tag/cuidado/index.html' class='tag-link-26' title='2 tópicos' style='font-size: 8pt;'>cuidado</a>
<a href='./tag/desconto/index.html' class='tag-link-94' title='4 tópicos' style='font-size: 11.422222222222pt;'>desconto</a>
<a href='./tag/dica-2/index.html' class='tag-link-29' title='13 tópicos' style='font-size: 18.422222222222pt;'>dica</a>
<a href='./tag/dominator/index.html' class='tag-link-154' title='4 tópicos' style='font-size: 11.422222222222pt;'>Dominator</a>
<a href='./tag/evento/index.html' class='tag-link-73' title='11 tópicos' style='font-size: 17.333333333333pt;'>evento</a>
<a href='./tag/facebook/index.html' class='tag-link-131' title='4 tópicos' style='font-size: 11.422222222222pt;'>facebook</a>
<a href='./tag/fpv-2/index.html' class='tag-link-44' title='3 tópicos' style='font-size: 9.8666666666667pt;'>fpv</a>
<a href='./tag/guapihelifest/index.html' class='tag-link-175' title='3 tópicos' style='font-size: 9.8666666666667pt;'>guapihelifest</a>
<a href='./tag/helimodelismo/index.html' class='tag-link-3' title='11 tópicos' style='font-size: 17.333333333333pt;'>helimodelismo</a>
<a href='./tag/helimodelo/index.html' class='tag-link-13' title='9 tópicos' style='font-size: 16.088888888889pt;'>helimodelo</a>
<a href='./tag/helimodelos-2/index.html' class='tag-link-45' title='23 tópicos' style='font-size: 22pt;'>helimodelos</a>
<a href='./tag/hk/index.html' class='tag-link-9' title='3 tópicos' style='font-size: 9.8666666666667pt;'>hk</a>
<a href='./tag/hk450/index.html' class='tag-link-11' title='3 tópicos' style='font-size: 9.8666666666667pt;'>hk450</a>
<a href='./tag/hobbyking/index.html' class='tag-link-8' title='14 tópicos' style='font-size: 18.888888888889pt;'>hobbyking</a>
<a href='./tag/lancamento/index.html' class='tag-link-140' title='11 tópicos' style='font-size: 17.333333333333pt;'>lançamento</a>
<a href='./tag/lipo/index.html' class='tag-link-174' title='3 tópicos' style='font-size: 9.8666666666667pt;'>lipo</a>
<a href='./tag/listagem/index.html' class='tag-link-10' title='4 tópicos' style='font-size: 11.422222222222pt;'>listagem</a>
<a href='./tag/loja/index.html' class='tag-link-97' title='4 tópicos' style='font-size: 11.422222222222pt;'>loja</a>
<a href='./tag/manual/index.html' class='tag-link-16' title='3 tópicos' style='font-size: 9.8666666666667pt;'>manual</a>
<a href='./tag/modelo/index.html' class='tag-link-110' title='3 tópicos' style='font-size: 9.8666666666667pt;'>modelo</a>
<a href='./tag/montagem/index.html' class='tag-link-79' title='6 tópicos' style='font-size: 13.755555555556pt;'>montagem</a>
<a href='./tag/parafusos/index.html' class='tag-link-23' title='2 tópicos' style='font-size: 8pt;'>parafusos</a>
<a href='./tag/passo-a-passo/index.html' class='tag-link-15' title='8 tópicos' style='font-size: 15.311111111111pt;'>passo-a-passo</a>
<a href='./tag/pecas/index.html' class='tag-link-7' title='7 tópicos' style='font-size: 14.533333333333pt;'>peças</a>
<a href='./tag/promocao/index.html' class='tag-link-121' title='5 tópicos' style='font-size: 12.666666666667pt;'>promoção</a>
<a href='./tag/radio-2/index.html' class='tag-link-38' title='2 tópicos' style='font-size: 8pt;'>radio</a>
<a href='./tag/rx/index.html' class='tag-link-40' title='2 tópicos' style='font-size: 8pt;'>rx</a>
<a href='./tag/sorteio/index.html' class='tag-link-132' title='6 tópicos' style='font-size: 13.755555555556pt;'>sorteio</a>
<a href='./tag/threadlock/index.html' class='tag-link-17' title='2 tópicos' style='font-size: 8pt;'>threadlock</a>
<a href='./tag/travarosca/index.html' class='tag-link-21' title='2 tópicos' style='font-size: 8pt;'>travarosca</a>
<a href='./tag/trex/index.html' class='tag-link-143' title='5 tópicos' style='font-size: 12.666666666667pt;'>trex</a>
<a href='./tag/trex450/index.html' class='tag-link-14' title='4 tópicos' style='font-size: 11.422222222222pt;'>trex450</a>
<a href='./tag/trex450l/index.html' class='tag-link-157' title='3 tópicos' style='font-size: 9.8666666666667pt;'>trex450l</a>
<a href='./tag/turnigy/index.html' class='tag-link-33' title='2 tópicos' style='font-size: 8pt;'>turnigy</a>
<a href='./tag/tutorial/index.html' class='tag-link-80' title='3 tópicos' style='font-size: 9.8666666666667pt;'>tutorial</a>
<a href='./tag/tx/index.html' class='tag-link-39' title='2 tópicos' style='font-size: 8pt;'>tx</a>
<a href='./tag/v911/index.html' class='tag-link-139' title='3 tópicos' style='font-size: 9.8666666666667pt;'>v911</a></div>
</li> </ul>
<ul class="xoxo">
</ul>
</div><!-- #primary .widget-area -->
<!-- 1c --> </section><!-- #container -->
<div class="cbd"></div>
<div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
</div><!-- #colophon -->
<div id="footer2">
<div id="site-info" >
<a href="./index.html" title="Helimodelos.com" rel="home">Helimodelos.com</a>
©2012 | Escrito por: <a href="http://www.rafaelbiriba.com/" target="_blank">Rafael Biriba</a>
</div>
<!-- #site-info -->
<div class="socials" id="sfooter">
</div>
</div>
</footer><!-- #footer -->
</div><!-- #wrapper -->
<script>
/* <![CDATA[ */
var rcGlobal = {
serverUrl :'.',
infoTemp :'%REVIEWER% on %POST%',
loadingText :'Loading',
noCommentsText :'No comments',
newestText :'« Newest',
newerText :'« Newer',
olderText :'Older »',
showContent :'1',
external :'1',
avatarSize :'32',
avatarPosition :'left',
anonymous :'Anonymous'
};
/* ]]> */
</script>
<link rel='stylesheet' id='mantra-mobile-css' href='./wp-content/themes/mantra/style-mobile.css?ver=4.2.28' type='text/css' media='all' />
<script type='text/javascript' src='./wp-content/plugins/wp-recentcomments/js/wp-recentcomments.js?ver=2.2.7'></script>