-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1094 lines (1072 loc) · 115 KB
/
index.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="ru-RU" class=" js flexbox webgl no-touch geolocation hashchange history websockets rgba hsla multiplebgs backgroundsize borderimage textshadow opacity cssanimations csscolumns cssgradients cssreflections csstransforms csstransforms3d csstransitions fontface generatedcontent video audio localstorage no-applicationcache svg svgclippaths mediaqueries no-regions supports">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="google-site-verification" content="fncZWiemtO0bTaOevjmplBnZZfL6w9gt6hjO_gF9bio">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-143194842-1');
</script>
<script src="https://www.googleoptimize.com/optimize.js?id=OPT-5R6SJ2X"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-143194842-1"></script>
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>-->
<script src="/jquery.qtip.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/jquery.magnific-popup/1.0.0/jquery.magnific-popup.js"></script>
<script type='text/javascript' src='https://code.jquery.com/jquery-migrate-1.4.1.min.js' id='jquery-migrate-js'></script>
<script src="/scroll.min.js"></script>
<script src="/isotope.pkgd.min.js"></script>
<script src="/modernizr.js"></script>
<script src="/modernizr-custom.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/2.0.5/waypoints.min.js"></script>
<script src="/plugins.js"></script>
<script type='text/javascript' src='/modernizr.custom.min.js?ver=2.5.3' id='modernizr-js'></script>
<script type='text/javascript' src='/core.min.js?ver=1.13.1' id='jquery-ui-core-js'></script>
<script type="text/javascript" async="" src="/analytics.js"></script>
<!-- <script type="text/javascript" async="" src="/js"></script>
<script src="/762586141088890" async=""></script>-->
<script async="" src="/fbevents.js"></script>
<!--<script type="text/javascript" async="" src="/js(1)"></script>
<!--<script async="" src="/js(2)"></script>-->
<script src="/optimize.js"></script>
<style type="text/css">
.vc_btn3-size-lg{
font-size: 48px !important;
}
</style>
<link rel="profile" href="https://gmpg.org/xfn/11">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, minimum-scale=1.0">
<link rel="apple-touch-icon" href="/uploads/2019/06/mite_icon-e1592184940579.png">
<meta name="theme-color" content="#ffffff">
<link rel="pingback" href="/xmlrpc.php">
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1">
<title>Контрактная разработка электроники полного цикла в срок и бюджет.</title>
<meta name="description" content="Контрактная разработка электроники от простых датчиков/отдельных модулей до комплексных автономных производственных линий полного цикла." />
<link rel="canonical" href="https://mite.club/" />
<meta property="og:locale" content="ru_RU" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Контрактная разработка электроники полного цикла в срок и бюджет." />
<meta property="og:description" content="Контрактная разработка электроники от простых датчиков/отдельных модулей до комплексных автономных производственных линий полного цикла." />
<meta property="og:url" content="https://mite.club/" />
<meta property="og:site_name" content="MITE" />
<meta property="article:publisher" content="https://www.facebook.com/mitemonitoring" />
<meta property="og:image" content="/uploads/2020/06/1112.png" />
<meta property="og:image:width" content="1600" />
<meta property="og:image:height" content="950" />
<meta property="og:image:type" content="image/png" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"TechArticle","@id":"https://mite.club/#article","isPartOf":{"@id":"https://mite.club/"},"author":{"name":"mite","@id":"https://mite.club/#/schema/person/cd6e2eae0f9843f24562b38fccf5eb95"},"headline":"Контрактная разработка электроники/умных IoT приборов для промышленных объектов","datePublished":"2020-05-04T08:56:17+00:00","dateModified":"2022-07-19T12:12:29+00:00","mainEntityOfPage":{"@id":"https://mite.club/"},"wordCount":4939,"publisher":{"@id":"https://mite.club/#organization"},"image":{"@id":"https://mite.club/#primaryimage"},"thumbnailUrl":"/uploads/2020/06/1112.png","inLanguage":"ru-RU"},{"@type":"WebPage","@id":"https://mite.club/","url":"https://mite.club/","name":"Контрактная разработка электроники полного цикла в срок и бюджет.","isPartOf":{"@id":"https://mite.club/#website"},"about":{"@id":"https://mite.club/#organization"},"primaryImageOfPage":{"@id":"https://mite.club/#primaryimage"},"image":{"@id":"https://mite.club/#primaryimage"},"thumbnailUrl":"/uploads/2020/06/1112.png","datePublished":"2020-05-04T08:56:17+00:00","dateModified":"2022-07-19T12:12:29+00:00","description":"Контрактная разработка электроники от простых датчиков/отдельных модулей до комплексных автономных производственных линий полного цикла.","breadcrumb":{"@id":"https://mite.club/#breadcrumb"},"inLanguage":"ru-RU","potentialAction":[{"@type":"ReadAction","target":["https://mite.club/"]}]},{"@type":"ImageObject","inLanguage":"ru-RU","@id":"https://mite.club/#primaryimage","url":"/uploads/2020/06/1112.png","contentUrl":"/uploads/2020/06/1112.png","width":1600,"height":950},{"@type":"BreadcrumbList","@id":"https://mite.club/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Главная страница"}]},{"@type":"WebSite","@id":"https://mite.club/#website","url":"https://mite.club/","name":"MITE","description":"Решение-конструктор промышленного интернета вещей. Мы помогаем бизнесу совместить производственные процессы с измеряемыми данными.","publisher":{"@id":"https://mite.club/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://mite.club/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"ru-RU"},{"@type":"Organization","@id":"https://mite.club/#organization","name":"ООО \"Интернет вещей\"","url":"https://mite.club/","sameAs":["https://www.linkedin.com/company/mitemonitoring","https://www.youtube.com/channel/UC6djc8KQWG9SPpKhnI-canQ","https://www.facebook.com/mitemonitoring"],"logo":{"@type":"ImageObject","inLanguage":"ru-RU","@id":"https://mite.club/#/schema/logo/image/","url":"/uploads/2021/03/cropped-logo_green_new.png","contentUrl":"/uploads/2021/03/cropped-logo_green_new.png","width":170,"height":79,"caption":"ООО \"Интернет вещей\""},"image":{"@id":"https://mite.club/#/schema/logo/image/"}},{"@type":"Person","@id":"https://mite.club/#/schema/person/cd6e2eae0f9843f24562b38fccf5eb95","name":"mite","image":{"@type":"ImageObject","inLanguage":"ru-RU","@id":"https://mite.club/#/schema/person/image/","url":"https://secure.gravatar.com/avatar/79c966d010b1edaaf405333ace237129?s=96&d=mm&r=g","contentUrl":"https://secure.gravatar.com/avatar/79c966d010b1edaaf405333ace237129?s=96&d=mm&r=g","caption":"mite"},"sameAs":["https://mite.club","mite"]}]}</script>
<meta name="yandex-verification" content="067b8f7b67ffba30" />
<!-- / Yoast SEO plugin. -->
<link rel="dns-prefetch" href="https://www.google.com/">
<link rel="dns-prefetch" href="https://fonts.googleapis.com/">
<link rel="dns-prefetch" href="https://s.w.org/">
<style id="global-styles-inline-css" type="text/css">
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;
--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;
--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;
--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
</style>
<!--<link rel="stylesheet" id="wpo_min-header-0-css" href="/wpo-minify-header-525eaaad.min.css" type="text/css" media="all">-->
<link rel='stylesheet' id='js_composer_front-css' href='/js_composer.min.css?ver=6.9.0' type='text/css' media='all' />
<!--<link rel='stylesheet' id='js_composer_custom_css-css' href='/custom.css?ver=6.9.0' type='text/css' media='all' />-->
<link rel='stylesheet' id='bsf-Defaults-css' href='/Defaults.css?ver=3.19.11' type='text/css' media='all' />
<!-- <link rel='stylesheet' id='ultimate-vc-addons-style-min-css' href='/ultimate.min.css?ver=3.19.11' type='text/css' media='all' />-->
<link rel='stylesheet' id='mpc-massive-style-css' href='/mpc-styles.css?ver=2.4.8' type='text/css' media='all' />
<link rel="stylesheet" id="wpo_min-header-0-css" href="/wpo-minify-header-9dff964b.min.css" type="text/css" media="all">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/jquery.magnific-popup/1.0.0/magnific-popup.css">
<!--<script defer="" type="text/javascript" src="/wpo-minify-header-42323f00.min.js" id="wpo_min-header-0-js"></script>-->
<link rel="https://api.w.org/" href="https://mite.club/wp-json/">
<link rel="alternate" type="application/json" href="https://mite.club/wp-json/wp/v2/pages/6169">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://mite.club/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="wlwmanifest.xml">
<link rel="shortlink" href="https://mite.club/">
<link rel="alternate" type="application/json+oembed" href="https://mite.club/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fmite.club%2F">
<link rel="alternate" type="text/xml+oembed" href="https://mite.club/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fmite.club%2F&format=xml">
<style>@media (max-width: 768px) {
p {
text-align: left !important;
}
}
@media (max-width: 768px) {
.mpc-icon-column, .mpc-icon-column__content .mpc-icon-column__heading, .mpc-icon-column__content .mpc-icon-column__description {
text-align: left !important;
}
}
</style>
<style class="cf7-style" media="screen" type="text/css">
body .cf7-style.cf7-style-8250 {width: 100%;}
body .cf7-style.cf7-style-6715 {background-color: transparent;background-position: center center;background-size: inherit;width: 100%;}body .cf7-style.cf7-style-6715 input
{background-color: #ffffff;border-bottom-left-radius: 30px;border-bottom-right-radius: 30px;border-color: transparent;border-top-left-radius: 30px;border-top-right-radius: 30px;color: #000000;font-size: 16px;height: 78px;padding-bottom: 20px;padding-left: 20px;padding-right: 20px;padding-top: 20px;width: 100%;}
body .cf7-style.cf7-style-6715 p {font-size: 8px;}body .cf7-style.cf7-style-6715 input[type='submit']
{background-color: #54a54c;border-bottom-left-radius: 30px;border-bottom-right-radius: 30px;border-color: transparent;border-top-left-radius: 30px;border-top-right-radius: 30px;color: #ffffff;display: block;float: left;font-size: 16px;font-style: normal;font-weight: bold;height: 50px;
padding-bottom: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;}body .cf7-style.cf7-style-6715 textarea {background-color: #ffffff;border-bottom-left-radius: 30px;border-bottom-right-radius: 30px;border-color: transparent;border-top-left-radius: 30px;
border-top-right-radius: 30px;color: #000000;display: inherit;float: inherit;padding-bottom: 20px;padding-left: 20px;padding-right: 20px;padding-top: 20px;}
</style>
<link rel="icon" href="/uploads/2022/04/favicon-spider_green.gif" sizes="32x32">
<link rel="icon" href="/uploads/2022/04/favicon-spider_green.gif" sizes="192x192">
<link rel="apple-touch-icon" href="uploads/2022/04/favicon-spider_green.gif">
<meta name="msapplication-TileImage" content="/uploads/2022/04/favicon-spider_green.gif">
<style type="text/css" id="wp-custom-css">
.grecaptcha-badge {visibility: hidden;}
/* Custom html widget */
#pageFooter .widget .custom-html-widget{
position: bottom;
margin-left:3.8%;
color:#000000;
font-size:15px;
font-weight:600;
}
.deficit{
font-size:48px!important;
}
.sale_top{
font-size:15px;
font-weight:800;
color:#58a540!important;
padding-right:2%;
/*background:#bcbcbc;*/
}
.for_links{
color: #58a540!important;
text-decoration-color: black;
}
.green_menu.a:visited{
color: #000000!important;
}
.green_menu.a:hover{
color: #54a580;
}
.green_menu.a:focus{
color: #58a540!important;
}
.green_menu.a:active{
color: #58a540!important;
}
.for_links:hover{
color: #58a540!important;
}
.for_links:focus{
color: #58a540!important;
}
h4{
font-weight: 400!important;
}
</style>
<style type="text/css" data-type="vc_custom-css">a {
color: #008000; /* Цвет обычной ссылки */
text-decoration: none; /* Убираем подчеркивание у ссылок */
}
a:visited {
color: #58a540; /* Цвет посещённой ссылки */
}
a:hover {
color: #58a540; /* Цвет ссылки при наведении на нее курсора мыши */
text-decoration: none; /* Добавляем подчеркивание */
}
.deficit{
font-size:34px!important;
}
.laser_others{
font-size:28px!important;
}
.contract_dev{
background-color: #54a54c!important;
}</style>
<style type="text/css" data-type="vc_shortcodes-custom-css">.vc_custom_1655189845301
{margin-top: 5% !important;padding-right: 4% !important;padding-left: 4% !important;}.vc_custom_1650909959336{padding-right: 4% !important;padding-left: 4% !important;background-color: #f9f9f9 !important;}.vc_custom_1650909512630
{margin-bottom: 5% !important;padding-right: 4% !important;padding-left: 4% !important;background-color: #ffffff !important;}.vc_custom_1650718077382
{margin-bottom: -5% !important;padding-top: 2% !important;padding-right: 4% !important;padding-left: 4% !important;background-color: #f9f9f9 !important;}.vc_custom_1650994977034
{padding-top: 2% !important;padding-right: 4% !important;padding-left: 4% !important;background-color: #f9f9f9 !important;}.vc_custom_1650717285868{padding-top: 2% !important;padding-right: 4% !important;padding-left: 4% !important;
background-color: #f9f9f9 !important;}.vc_custom_1650907701430{margin-top: 3% !important;padding-right: 4% !important;padding-left: 4% !important;background-color: #ffffff !important;}.vc_custom_1640772609619
{padding-right: 4% !important;padding-left: 4% !important;background-color: #ffffff !important;}.vc_custom_1640771824523{padding-top: 2% !important;padding-right: 4% !important;
padding-left: 4% !important;background-color: #e8e8e8 !important;}.vc_custom_1648132613442{padding-right: 4% !important;padding-left: 4% !important;background-color: #ffffff !important;}.vc_custom_1657712668682
{margin-bottom: 5% !important;padding-top: 2% !important;padding-right: 4% !important;padding-left: 4% !important;background-color: #e8e8e8 !important; }.vc_custom_1657709269851{margin-top: 5% !important;margin-bottom: 5% !important;
padding-right: 4% !important;padding-left: 4% !important;background-color: #f9f9f9 !important;}.vc_custom_1640772458826{padding-top: 2% !important;padding-right: 4% !important;padding-bottom: 5% !important;padding-left: 4% !important;
background-color: #ffffff !important;}.vc_custom_1595066243928{padding-right: 4% !important;padding-bottom: 5% !important;padding-left: 4% !important;background-color: #ffffff !important;}.vc_custom_1595045788430{padding-top: 3% !important;
padding-right: 4% !important;padding-bottom: 3% !important;padding-left: 4% !important;background-color: #f9f9f9 !important;}.vc_custom_1640773941914{padding-right: 5% !important;padding-bottom: 1% !important;padding-left: 4% !important;
background-color: #f2f2f2 !important;}.vc_custom_1594799556899{padding-top: 8% !important;padding-right: 3.8% !important;padding-bottom: 8% !important;padding-left: 3.8% !important;background-color: #ffffff !important;}.vc_custom_1630492908943
{background-color: #ffffff !important;}.vc_custom_1594792557878{padding-top: 10% !important;padding-left: 3px !important;}.vc_custom_1655189860270{padding-top: 5% !important;}.vc_custom_1651257145780{padding-top: 5% !important;}.vc_custom_1651257222846
{padding-left: 5% !important;}.vc_custom_1650909946147{padding-top: 10% !important;padding-right: 5% !important;padding-bottom: 10% !important;}.vc_custom_1650909931937{padding-top: 10% !important;padding-right: 5% !important;
padding-bottom: 10% !important;}.vc_custom_1650909917664{padding-top: 10% !important;padding-bottom: 10% !important;}.vc_custom_1650891513707{padding-top: 5% !important;}.vc_custom_1650891503560{padding-top: 5% !important;}.vc_custom_1650891492961
{padding-top: 5% !important;}.vc_custom_1630493060126{padding-right: 40px !important;}.vc_custom_1648100363772{padding-right: 40px !important;}.vc_custom_1630493104177{padding-right: 40px !important;}.vc_custom_1635239115050{margin-right: 2% !important;
border-top-width: 5% !important;padding-bottom: 4% !important;}.vc_custom_1635239115050{margin-right: 2% !important;border-top-width: 5% !important;padding-bottom: 4% !important;}.vc_custom_1650893477896{margin-top: 7% !important;}.vc_custom_1655190764132
{margin-top: 7% !important;}.vc_custom_1650716444187{margin-top: 7% !important;}.vc_custom_1635239115050{margin-right: 2% !important;border-top-width: 5% !important;padding-bottom: 4% !important;}.vc_custom_1655190818867{margin-top: 7% !important;}.vc_custom_1655190569973
{margin-top: 7% !important;}.vc_custom_1655190868879{margin-top: 7% !important;}.vc_custom_1650907711205{margin-right: 2% !important;}.vc_custom_1650907731662{background-color: #ffffff !important;}.vc_custom_1658232058773{border-top-width: 5% !important;padding-bottom: 4% !important;}.vc_custom_1640771848889
{margin-right: 2% !important;border-top-width: 5% !important;padding-bottom: 4% !important;background-color: #e8e8e8 !important;}.vc_custom_1640771980587{margin-top: 40px !important;background-color: #e8e8e8 !important;}.vc_custom_1633412305861
{margin-right: 2% !important;margin-left: 2% !important;border-top-width: 5% !important;padding-bottom: 4% !important;background-color: #ffffff !important;}.vc_custom_1657709533978{margin-right: 2% !important;margin-bottom: 5% !important;border-top-width: 5% !important;background-color: #ffffff !important;}.vc_custom_1657708746749
{margin-top: 40px !important;}.vc_custom_1657709158401{margin-right: 2% !important;border-top-width: 5% !important;padding-bottom: 4% !important;}.vc_custom_1620292199610{margin-top: -10% !important;padding-right: 40px !important;}.vc_custom_1593361001494
{padding-right: 60px !important;}.vc_custom_1644736908835{padding-left: 2% !important;}.vc_custom_1650908889505{margin-top: 7% !important;}.vc_custom_1594976650803{padding-top: -1% !important;}.vc_custom_1640776943178{margin-top: 7% !important;}.vc_custom_1656580224980
{margin-top: 7% !important;}.vc_custom_1656580316407{margin-top: 7% !important;}.vc_custom_1656580131123{margin-top: 7% !important;}.vc_custom_1652430169484{margin-top: 7% !important;}.vc_custom_1656580353033{margin-top: 7% !important;}.vc_custom_1656580073213
{margin-top: 7% !important;}.vc_custom_1656580289633{margin-top: 7% !important;}.vc_custom_1656580458391{margin-top: 7% !important;}.vc_custom_1652429878469{margin-top: -10px !important;}</style><noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }
</style></noscript>
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '762586141088890');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=762586141088890&ev=PageView&noscript=1"/></noscript>
<!-- End Facebook Pixel Code -->
<style>body.home>header:nth-of-type(2){display: none}</style><style>body.home>header:nth-of-type(1){line-height: 35px !important}</style><style>/** Ultimate: Media Responsive **/ #ubtn-1992{font-size:16px;}#ubtn-6080{font-size:16px;}@media (max-width: 1199px) { }@media (max-width: 991px) { }@media (max-width: 767px) { }@media (max-width: 479px) { }/** Ultimate: Media Responsive - **/</style><style>
/** Ultimate: CountDown Responsive **/ #ubtn-1992{font-size:16px;}#ubtn-6080{font-size:16px;}
/** Ultimate: Tooltipster Responsive - **/</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<? php require_once ABSPATH . '/theme.php'; />
<body class="home page-template-default page page-id-6169 wp-custom-logo seperate-mobile-nav right-mobile-menu composer-wide composer-top-header-enabled full-header wpb-js-composer js-comp-ver-6.9.0 vc_responsive">
<!-- New optimize-banner -->
<style>
@media (max-width: 1280px) {
.optimize-banner-p13n > h1 {
font-size: 22px;
line-height: 28px;
}
}
@media (max-width: 480px) {
body.home>header:nth-of-type(1) {
font-size : 18px;
}
}
@media (max-width: 599px) {
body.home>header>p {
font-size : 20px;
line-height : 20px;
word-spacing : 20px;
}
}
@media (max-width: 767px) {
body.home>header:nth-of-type(1) {
font-size : 22px;
}
}
body.home>header:nth-of-type(1) {
width : auto;
height : auto;
line-height : 30px;
font-size : 24px;
background : linear-gradient(to right, rgb(255, 255, 153), rgb(135, 206, 250));
color : rgb(136, 136, 136);
word-spacing : 30px !important;
}
div.pageTop {
margin : 1px;
position : relative;
}
body.home {
text-align : left;
bottom : auto;
color: black !important;
}
body.home>header>p {
font-size : 20px;
line-height : 30px;
word-spacing : 30px;
height : auto;
margin : 0px 0px;
width : auto;
text-align : center !important;
}
body.home>header:nth-of-type(1) {
font-family : Montserrat;
height : auto;
width : auto;
word-spacing : 30px;
}
@media (min-width: 1200px) {
header.optimize-banner-p13n>p {
width : auto;
height : auto;
}
}
@media (max-width: 1199px) {
header.optimize-banner-p13n>p {
width : auto;
height : auto;
}
}
@media (min-width: 992px) {
header.optimize-banner-p13n {
width : auto;
height : auto;
}
}
header.optimize-banner-p13n>p {
height : auto;
width : auto;
}
header.optimize-banner-p13n {
width : auto;
height : auto;
background : linear-gradient(to right, rgb(255, 255, 153), rgb(135, 206, 250));
color : rgb(136, 136, 136);
}
</style>
<header class="optimize-banner-p13n" style="text-align: center; white-space: pre-line; color: rgb(255, 255, 255); opacity: 1 !important; font-weight: normal !important; bottom: auto !important; left: auto !important; top: auto !important; height: auto !important; width: auto !important; border-width: 0px !important; border-radius: 0px !important; word-spacing: 40px !important;"><a href="/deficit-elektronnix-komponentov" aria-label="Доработка модулей/плат с учетом дефицита электронных компонент." style="font-size: 20px; font-weight: normal !important;" gradient_custom_color_1="#39acf9" gradient_custom_color_2="#f9f922">Подберем альтернативную компонентную базу в условиях нехватки электронных комплектующих. Переделаем платы с учетом доступности компонентов. Доработаем блоки/модули под ваши задачи.</a><a href="/deficit-elektronnix-komponentov" aria-label="Доработка модулей/плат с учетом дефицита электронных компонент." style="font-size: 18px; font-weight: bold !important;">
Подробнее…</a>
</header>
<div id="content-pusher">
<p id="back-top" class=" hide-on-mobile"><a href="#top"><span class="pixicon-arrow-angle-up"></span></a></p>
<div class="header-wrap right-arrow">
<div class="header-con sticky-light pix-sticky-header pix-sticky-header-scroll-up pix-sticky-header-res menu-header-3 menu-light " style="background-color: #f3f3f3;">
<div class="menu-header-3-con">
<div class="pix-menu-align-center">
<header class="header">
<div class="container">
<div id="inner-header" class="wrap clearfix">
<div id="logo" class="sticky-logo-yes">
<a href="https://mite.club/" class="mobile-logo-yes" rel="home" itemprop="url">
<img src="/uploads/2021/03/cropped-logo_green_new.png" alt="MITE" class="dark-logo">
<img src="/uploads/2019/06/Logo_light_WHITE-1-e1592065935818.png" alt="MITE" class="light-logo">
<img src="/uploads/2020/06/logo_green_new.png" data-rjs="/uploads/2020/06/logo_green_new.png" alt="MITE" class="sticky-logo">
<img src="/uploads/2020/01/logo_green_small-e1591106596297.png" alt="MITE" class="mobile-res-logo" width="105" height="50">
</a>
</div>
<nav class="main-nav">
<ul id="menu-left_menu-1" class="menu clearfix">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-6169 current_page_item menu-item-7821 pix-submenu external"><a title="Интернет вещей для бизнеса" href="https://mite.club/" data-scroll="true" class="external">Мониторинг объектов</a><span class="pix-dropdown-arrow"></span></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-8770 pix-submenu"><a href="https://mite.club#serial_equipment" data-scroll="true">Оборудование MITE</a><span class="pix-dropdown-arrow"></span></li>
<li class="green_menu menu-item menu-item-type-custom menu-item-home menu-item-6621 pix-submenu"><a title="перейти к устройствам" href="https://mite.club#solutions" data-scroll="true">Датчики MITE</a><span class="pix-dropdown-arrow"></span></li>
<li class="menu-item menu-item-7639 external"><a title="перейти к стоимости" href="/iot-solution-automatization-business" data-scroll="true" class="external">Стоимость</a><span class="pix-dropdown-arrow"></span></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-6675 pix-submenu external"><a title="перейти к мониторингу" href="http://monitoring.mite.club" data-scroll="true" class="external">Личный кабинет</a><span class="pix-dropdown-arrow"></span></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8847 pix-submenu external"><a title="Наши компетенции — Ваше преимущество" target="_blank" href="/our-competencies-you-advantage" data-scroll="true" class="external">Команда</a><span class="pix-dropdown-arrow"></span></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7023 pix-submenu external"><a href="/intellektualnie-reshenij-dlj-biznesa" data-scroll="true" class="external">Заказать решение</a><span class="pix-dropdown-arrow"></span></li>
</ul>
</nav>
<div class="pix-menu">
<div class="pix-menu">
<div class="pix-menu-trigger"><span class="mobile-menu">Menu</span>
<div class="mobile-menu-nav menu-light">
<div class="mobile-menu-inner">
<ul id="menu-left_menu" class="menu clearfix"><li id="menu-item-7821" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-6169 current_page_item menu-item-7821 pix-submenu pix-dropdown-arrow external"><a title="Интернет вещей для бизнеса" href="#" data-scroll="true" class="external">Мониторинг объектов</a></li>
<li id="menu-item-8770" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-8770 pix-submenu"><a href="https://mite.club#serial_equipment" data-scroll="true">Оборудование MITE</a></li>
<li id="menu-item-6621" class="green_menu menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-6621 pix-submenu"><a title="перейти к устройствам" href="https://mite.club#solutions" data-scroll="true">Датчики MITE</a></li>
<li id="menu-item-7639" class="menu-item menu-item-object-page menu-item-7639 "><a class="pix-dropdown-arrow" title="перейти к стоимости" href="/iot-solution-automatization-business" data-scroll="true" class="external">Стоимость</a></li>
<li id="menu-item-6675" class="menu-item menu-item-type-custom menu-item-6675 external"><a title="перейти к мониторингу" href="http://monitoring.mite.club" data-scroll="true" class="pix-dropdown-arrow external">Личный кабинет</a></li>
<li id="menu-item-8847" class="menu-item external"><a title="Наши компетенции — Ваше преимущество" target="_blank" href="/our-competencies-you-advantage" data-scroll="true" class="pix-dropdown-arrow external">Команда</a></li>
<li id="menu-item-7023" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7023"><a href="/intellektualnie-reshenij-dlj-biznesa" data-scroll="true" class="external">Заказать решение</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
</div>
</div>
</div>
</div>
</div>
<script src="/scripts.js"></script>
<div class="menu-header-3-con">
<div class="pageTop row" style="padding-left: 3%;">
<div>
<div class="header-center">
<div class="header-elem"><p class="top-details clearfix"><span><a href="mailto:[email protected]" class="top-header-email-text"><i class="far fa-envelope-open"></i> <span class="top-header-email-text">[email protected]</a></span></span></p>
</div>
<div class="header-elem"><p class="top-details clearfix"><span><a href="tel:+ 375 (29) 3 100 393" class="top-header-email-text"><i class="fa fa-phone"></i><span class="top-header-tel-text">+ 375 (29) 3 100 393</span></a></span></p>
</div>
<!--<div class="header-elem"><p class="custom-header-text"><text class="sale_top" ❤️️ ПРАЗДНУЕМ АКЦИЕЙ - СТОИМОСТЬ РЕШЕНИЯ ДО КОНЦА ГОДА 1BYN/день.</text></p>
</div> -->
</div>
</div>
<div class="pull-right">
<div class="header-center">
<div class="header-elem"><p class="social-icons"><a href="https://www.facebook.com/mitemonitoring" target="_blank" title="Facebook" class="facebook"><i class="fab fa-facebook"></i></a>
<a href="https://www.linkedin.com/company/mitemonitoring/" target="_blank" title="linkedin" class="linkedin"><i class="fab fa-linkedin-in"></i></a>
<a href="https://www.youtube.com/channel/UC6djc8KQWG9SPpKhnI-canQ" target="_blank" title="YouTube" class="youtube"><i class="fab fa-youtube"></i></a></p>
</div>
</div>
</div>
</div>
</div>
<div id="main-wrapper" class="clearfix">
<div id="wrapper" data-ajaxtransin="fadeInUp" data-ajaxtransout="fadeOutDown" data-preloadtrans="fadeInUp">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<div class="vc_row wpb_row vc_row-fluid entry-content no-padding-vc-row vc_custom_1655189845301 amz-container-fluid mpc-row">
<div class="wpb_column vc_column_container vc_col-sm-8 vc_col-has-fill mpc-column" data-column-id="mpc_column-4462e243b28925f">
<div class="vc_column-inner vc_custom_1630492908943">
<div class="wpb_wrapper"><h1 style="font-size: 38px;color: #333333;text-align: left" class="vc_custom_heading vc_custom_1655189860270">Контрактная разработка электроники полного цикла в условиях дефицита электронных комплектующих.</h1><h2 style="font-size: 18px;color: #333333;text-align: left;font-family:Abril Fatface;" class="vc_custom_heading vc_custom_1651257145780">Стремлении к инновациям и постоянное желание узнавать что-то новое позволяет нам создавать такие решения, которые помогают бизнесу:</h2><h2 style="font-size: 18px;color: #333333;text-align: left;font-family:Abril Fatface;" class="vc_custom_heading vc_custom_1651257222846">1. значительно повышать эффективность;<br>
2. сокращать издержки;<br>
3. увеличивать транспарентность бизнес-процессов;<br>
4. и, главное, высвобождать человеческий ресурс на более интеллектуальные задачи.</h2>
<h2 style="font-size: 18px;color: #333333;text-align: left;font-family:Abril Fatface;" class="vc_custom_heading">Мы гордимся тем, что помогаем нашим Клиентам добираться до собственных бизнес вершин, оставляя конкурентов позади.</h2>
<div class="vc_separator wpb_content_element vc_separator_align_center vc_sep_width_30 vc_sep_border_width_2 vc_sep_pos_align_right vc_separator_no_text vc_sep_color_green"><span class="vc_sep_holder vc_sep_holder_l"><span class="vc_sep_line"></span></span><span class="vc_sep_holder vc_sep_holder_r"><span class="vc_sep_line"></span></span>
</div>
<h2 style="font-size: 16px;color: #333333;text-align: right;font-family:Voltaire;" class="vc_custom_heading">Viam supervadet vadens</h2>
<div class=" ubtn-ctn-inline "><a class="ubtn-link ult-adjust-bottom-margin ubtn-inline ubtn-normal " href="/intellektualnie-reshenij-dlj-biznesa" title="create smart solution with MITE">
<button type="button" id="ubtn-1992" class="ubtn ult-adjust-bottom-margin ult-responsive ubtn-normal ubtn-no-hover-bg none ubtn-inline tooltip-62e243b288f52" data-hover="#54a54c" data-border-color="" data-bg="#54a54c" data-hover-bg="#f3f3f3" data-shadow-click="none" data-shadow="" data-ultimate-target="#ubtn-1992" style="font-weight:normal;font-size:16px; border-radius:30px;border-width:0px;border-style:inset;background: #54a54c;color: #ffffff;" data-original-title="IoT решение для бизнеса" title="IoT решение для бизнеса" padding-top="15px" padding-right="45px" padding-bottom="15px" padding-left="45px"
line-height=" 1.4em" max-width=" 100%" style="font-weight:normal;border-radius:30px;border-width:0px;border-style:inset;background: #54a54c;color: #ffffff;" data-original-title="" title=""><span class="ubtn-hover" style="background-color:#f3f3f3"></span><span class="ubtn-data ubtn-text ">Рассказать о задаче</span>
</button></a>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4 mpc-column" data-column-id="mpc_column-2862e243b289b83">
<div class="vc_column-inner vc_custom_1594792557878">
<div class="wpb_wrapper">
<div data-id="mpc_image-362e243b289a6c" onclick="" class="mpc-image mpc-init "><a href="/smart-devices" title="Умные Iot-устройста для контроля температуры, влажности и других параметров" class="mpc-item mpc-transition">
<img class="mpc-transition " src="/uploads/2020/07/termodatchik-900x500.png" width="900" height="500" alt="комплексная автоматизация c IoT умными приборами. Контрактная разработка" title="IoT smart devices"></a>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row wpb_row vc_row-fluid entry-content no-padding-vc-row vc_custom_1650909959336 vc_row-has-fill amz-container-fluid-no-spaces mpc-row">
<div class="wpb_column vc_column_container vc_col-sm-4 mpc-column" data-column-id="mpc_column-8762e243b28a9e2">
<div class="vc_column-inner vc_custom_1650909946147">
<div class="wpb_wrapper"><h1 style="font-size: 24px;color: #333333;text-align: center" class="vc_custom_heading vc_custom_1650891513707">Глубокая проработка/<br>
комплексная кастомизация</h1>
<div id="mpc_textblock-2562e243b28a7ca" class="mpc-textblock mpc-init mpc-typography--mpc_preset_70 "><h3 class=""section-title" style="text-align: center;"><strong>30+ опытных</strong></h3>
<h3 style="text-align: center;"><strong>разработчиков и</strong></h3>
<h3 style="text-align: center;"><strong>инженеров</strong></h3>
</div>
<div id="mpc_textblock-1562e243b28a8af" class="mpc-textblock mpc-init mpc-typography--preset_4 "><h4 class="section-title text-center” text-color=“#ffffff" style="text-align: center;">Осуществляем полный цикл внедрения высокотехнологичных систем на промышленных объектах.</h4>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4 mpc-column" data-column-id="mpc_column-162e243b28b0f8">
<div class="vc_column-inner vc_custom_1650909931937">
<div class="wpb_wrapper"><h1 style="font-size: 24px;color: #333333;text-align: center" class="vc_custom_heading vc_custom_1650891503560">Интернет вещей<br>
для вашего бизнеса</h1>
<div id="mpc_textblock-6662e243b28ae75" class="mpc-textblock mpc-init mpc-typography--preset_4 ">
<header class="section-title text-center "><h3 class="section-title text-center " style="text-align: center;"><strong>20+ успешно</strong></h3>
<h3 class="section-title text-center " style="text-align: center;"><strong>реализованных</strong></h3>
<h3 class="section-title text-center " style="text-align: center;"><strong>проектов</strong></h3>
</header>
</div>
<div id="mpc_textblock-3162e243b28af31" class="mpc-textblock mpc-init mpc-typography--preset_4 "><h4 class="section-title text-center” text-color=“#ffffff" style="text-align: center;">Разрабатываем IoT-устройства и программное обеспечение для них. Собственная IoT платформа.</h4>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4 mpc-column" data-column-id="mpc_column-3762e243b28bb90">
<div class="vc_column-inner vc_custom_1650909917664">
<div class="wpb_wrapper"><h1 style="font-size: 24px;color: #333333;text-align: center" class="vc_custom_heading vc_custom_1650891492961">Простые решения<br>
для сложных задач</h1>
<div id="mpc_textblock-5562e243b28b763" class="mpc-textblock mpc-init mpc-typography--preset_4 ">
<header class="section-title text-center "><h3 class="section-title text-center " style="text-align: center;"><strong>15+ лет</strong></h3>
<h3 class="section-title text-center " style="text-align: center;"><strong>на рынке</strong></h3>
<h3 class="section-title text-center " style="text-align: center;"><strong>с нашими Клиентами</strong></h3>
</header>
</div>
<div id="mpc_textblock-3762e243b28b8b9" class="mpc-textblock mpc-init mpc-typography--preset_4 "><h4 class="section-title text-center” text-color=“#ffffff" style="text-align: center;">Наши решения работают в разных отраслях – промышленности, ритейле, логистике, медицине, экологии.</h4>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row wpb_row vc_row-fluid no-padding-vc-row vc_custom_1650909512630 vc_row-has-fill amz-container-fluid mpc-row">
<div class="wpb_column vc_column_container vc_col-sm-4 mpc-column" data-column-id="mpc_column-762e243b28d0e1">
<div class="vc_column-inner vc_custom_1630493060126">
<div class="wpb_wrapper">
<div data-id="mpc_icon_column-star" class="mpc-icon-column mpc-init mpc-parent-hover mpc-transition mpc-icon-column--style_1 mpc-align--center ">
<div data-id="mpc_icon-star" class="mpc-icon mpc-init mpc-transition mpc-effect-none mpc-icon-hover " style="color: #54a54c;">
<div class="mpc-icon-wrap"> <i class="mpc-icon-part mpc-regular mpc-transition fa fa-star fa-3x"></i>
</div>
</div>
<div class="mpc-icon-column__content-wrap">
<div class="mpc-icon-column__content">
<h3 class="mpc-icon-column__heading mpc-transition">Управляйте вашим оборудованием и объектами удаленно</h3>
<div data-id="mpc_divider-3162e243b28ce49" class="mpc-divider-wrap">
<div class="mpc-divider mpc-init mpc-align--center mpc-disable--left ">
<div class="mpc-divider__line mpc-side--left"><span></span></div>
<div class="mpc-divider__line mpc-side--right"><span></span></div>
</div>
</div>
<div class="mpc-icon-column__description mpc-transition"><h4 style="text-align: center;">Из любой точки мира через интернет.</h4></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4 mpc-column" data-column-id="mpc_column-3362e243b28d837">
<div class="vc_column-inner vc_custom_1648100363772">
<div class="wpb_wrapper">
<div data-id="mpc_icon_column-762e243b28d552" class="mpc-icon-column mpc-init mpc-parent-hover mpc-transition mpc-icon-column--style_1 mpc-align--center ">
<div data-id="mpc_icon-8962e243b28d5c6" class="mpc-icon mpc-init mpc-transition mpc-effect-none mpc-icon-hover " style="color: #54a54c;">
<div class="mpc-icon-wrap"> <i class="mpc-icon-part mpc-regular mpc-transition fa fa-star fa-3x"></i></div>
</div>
<div class="mpc-icon-column__content-wrap">
<div class="mpc-icon-column__content">
<h3 class="mpc-icon-column__heading mpc-transition">Прогнозируйте и предотвращайте критические ситуации</h3>
<div data-id="mpc_divider-9262e243b28d624" class="mpc-divider-wrap">
<div class="mpc-divider mpc-init mpc-align--center mpc-disable--left ">
<div class="mpc-divider__line mpc-side--left"><span></span></div>
<div class="mpc-divider__line mpc-side--right"><span></span></div>
</div>
</div>
<div class="mpc-icon-column__description mpc-transition"><h4 style="text-align: center;">Мгновенное оповещение о недопустимых изменениях параметров.</h4></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4 mpc-column" data-column-id="mpc_column-3962e243b28de6e">
<div class="vc_column-inner vc_custom_1630493104177">
<div class="wpb_wrapper">
<div data-id="mpc_icon_column-5562e243b28dbca" class="mpc-icon-column mpc-init mpc-parent-hover mpc-transition mpc-icon-column--style_1 mpc-align--center ">
<div data-id="mpc_icon-1762e243b28dc2c" class="mpc-icon mpc-init mpc-transition mpc-effect-none mpc-icon-hover " style="color: #54a54c;">
<div class="mpc-icon-wrap"><i class="mpc-icon-part mpc-regular mpc-transition fa fa-star fa-3x"></i>
<i class="mpc-icon-part mpc-hover mpc-transition fa fa-star fa-3x"></i>
</div>
</div>
<div class="mpc-icon-column__content-wrap">
<div class="mpc-icon-column__content"><h3 class="mpc-icon-column__heading mpc-transition">Продлевайте срок службы своих активов</h3>
<div data-id="mpc_divider-3962e243b28dc73" class="mpc-divider-wrap">
<div class="mpc-divider mpc-init mpc-align--center mpc-disable--left ">
<div class="mpc-divider__line mpc-side--left"><span></span></div>
<div class="mpc-divider__line mpc-side--right"><span></span></div>
</div>
</div>
<div class="mpc-icon-column__description mpc-transition"><h4 style="text-align: center;">Получайте оповещения о приближающихся сбоях, снижайте издержки на ремонт.</h4></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="serial_equipment" class="vc_row wpb_row vc_row-fluid no-padding-vc-row vc_custom_1650718077382 vc_row-has-fill vc_row-o-equal-height vc_row-flex amz-container-fluid mpc-row">
<div class="wpb_column vc_column_container vc_col-sm-12 vc_col-has-fill mpc-column" data-column-id="mpc_column-862e243b28f6b1">
<div class="vc_column-inner vc_custom_1635239115050">
<div >
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<h2 style="text-align: left;">Серийное бесконтактное высокоточное оборудование для промышленного использования:</h2>
<h4></h4>
<h4 style="text-align: left;"> <span style="color: #54a54c;"><strong>✓</strong></span> Доработаем программное обеспечение под ваши задачи;</h4>
<h4 style="text-align: left;"> <span style="color: #54a54c;"><strong>✓</strong></span> Разработаем оборудование под требования вашего бизнеса;</h4>
<h4 style="text-align: left;"> <span style="color: #54a54c;"><strong>✓</strong></span> Спроектируем комплексное решение, интегрированное в ваши технологические процессы.</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="serial equipment" class="vc_row wpb_row vc_row-fluid no-padding-vc-row vc_custom_1650994977034 vc_row-has-fill vc_row-o-equal-height vc_row-flex amz-container-fluid mpc-row">
<div class="wpb_column vc_column_container vc_col-sm-4 vc_col-has-fill mpc-column" data-column-id="mpc_column-4662e243b29e1a9">
<div class="vc_column-inner vc_custom_1635239115050">
<div class="wpb_wrapper">
<div class="ult-content-box-container ">
<div class="ult-content-box" style="background-color:#ffffff;box-shadow: 2px 2px 7px 3px rgba(0,0,0,0) none;border-style:none;border-radius:30px;padding-top:10px;padding-bottom:5px;padding-left:25px;margin-bottom:40px;-webkit-transition: all 700ms linear;-moz-transition: all 700ms linear;-ms-transition: all 700ms linear;-o-transition: all 700ms linear;transition: all 700ms linear;" data-hover_box_shadow=" 1px 1px 1px 0px #58a450 " data-normal_margins="margin-bottom:40px;" data-bg="#ffffff" data-border_color="">
<div class="wpb_single_image wpb_content_element vc_align_left vc_custom_1650893477896">
<figure class="wpb_wrapper vc_figure"><a href="/kontrol-temperatyri-i-vlazhnosti-na-skladax" target="_self" class="vc_single_image-wrapper vc_box_circle vc_box_border_grey"><img width="150" height="150" src="/uploads/2022/04/an-12tl_laser-scaner-150x150.jpg" class="vc_single_image-img attachment-thumbnail" alt="Бесконтактные лазерные сканеры" loading="lazy" title="an-12tl_laser scaner"></a></figure>
</div>
<div id="mpc_textblock-6862e243b29ddc6" class="mpc-textblock mpc-init "><h3 style="text-align: left;"><strong>Лазерные сканеры</strong></h3>
<h3 style="text-align: left;"><strong>AT-X2TL</strong></h3>
</div>
<div id="mpc_textblock-9362e243b29deee" class="mpc-textblock mpc-init mpc-typography--preset_4 "><h4>бесконтактное высокоточное измерение и трехмерное сканирование геометрических параметров объекта, профиля поверхности, положения, смещения, размеров, порядка сортировки.</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4 mpc-column" data-column-id="mpc_column-9362e243b2a1a89">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="ult-content-box-container ">
<div class="ult-content-box" style="background-color:#ffffff;box-shadow: 2px 2px 7px 3px rgba(0,0,0,0) none;border-style:none;border-radius:30px;padding-top:10px;padding-bottom:5px;padding-left:25px;margin-bottom:40px;-webkit-transition: all 700ms linear;-moz-transition: all 700ms linear;-ms-transition: all 700ms linear;-o-transition: all 700ms linear;transition: all 700ms linear;" data-hover_box_shadow=" 1px 1px 1px 0px #58a450 " data-normal_margins="margin-bottom:40px;" data-bg="#ffffff" data-border_color="">
<div class="wpb_single_image wpb_content_element vc_align_left vc_custom_1655190764132">
<figure class="wpb_wrapper vc_figure"><a href="/kontrol-temperatyri-i-vlazhnosti-na-skladax" target="_self" class="vc_single_image-wrapper vc_box_circle vc_box_border_grey"><img width="150" height="150" src="/uploads/2022/04/micrometr-150x150.png" class="vc_single_image-img attachment-thumbnail" alt="контрактная разработка электроники, высокоточный оптический микрометр" loading="lazy" title="micrometr"></a></figure>
</div>
<div id="mpc_textblock-5462e243b2a1792" class="mpc-textblock mpc-init "><h3><strong>Оптический микрометр</strong></h3>
<h3><strong>AN-21SM</strong></h3>
</div>
<div id="mpc_textblock-4262e243b2a1867" class="mpc-textblock mpc-init mpc-typography--preset_4 "><h4>пространственные высокоточные измерения для определения геометрии и положения объекта, размеров в поперечном сечении, зазоров, определения диаметра, контроля и устранения неисправности готовых деталей.</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4 mpc-column" data-column-id="mpc_column-4762e243b2a284e">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="ult-content-box-container ">
<div class="ult-content-box" style="background-color:#ffffff;box-shadow: 2px 2px 7px 3px rgba(0,0,0,0) none;border-style:none;border-radius:30px;padding-top:10px;padding-bottom:5px;padding-left:25px;margin-bottom:40px;-webkit-transition: all 700ms linear;-moz-transition: all 700ms linear;-ms-transition: all 700ms linear;-o-transition: all 700ms linear;transition: all 700ms linear;" data-hover_box_shadow=" 1px 1px 1px 0px #58a450 " data-normal_margins="margin-bottom:40px;" data-bg="#ffffff" data-border_color="">
<div class="wpb_single_image wpb_content_element vc_align_left vc_custom_1650716444187">
<figure class="wpb_wrapper vc_figure"><a href="/kontrol-temperatyri-i-vlazhnosti-na-skladax" target="_self" class="vc_single_image-wrapper vc_box_circle vc_box_border_grey"><img width="150" height="150" src="/uploads/2022/04/rangefinder-150x150.png" class="vc_single_image-img attachment-thumbnail" alt="высокоточный триангуляционный дальномер" loading="lazy" title="rangefinder"></a></figure>
</div>
<div id="mpc_textblock-1862e243b2a25cc" class="mpc-textblock mpc-init "><h3><strong>Триангуляционный дальномер</strong></h3>
<h3><strong>AN-xTL</strong></h3>
</div>
<div id="mpc_textblock-9662e243b2a2696" class="mpc-textblock mpc-init mpc-typography--preset_4 "><h4>высокоточное бесконтактное измерение расстояния до объекта, определение смещения относительно измерителя, измерение минимального и максимального расстояния, определение геометрии поверхности.</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="laser_others wpb_column vc_column_container vc_col-sm-12 mpc-column" data-column-id="mpc_column-5262e243b2a2d47">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
`<div class="vc_separator wpb_content_element vc_separator_align_center vc_sep_width_100 vc_sep_pos_align_center vc_sep_color_green decider vc_separator-has-text">
<span class="vc_sep_holder vc_sep_holder_l">
<span class="vc_sep_line"></span></span>
<h4>Другие решения для промышленного использования</h4><span class="vc_sep_holder vc_sep_holder_r">
<span class="vc_sep_line"></span></span></div>
</div>
</div>
</div>
</div>
<div class="vc_row wpb_row vc_row-fluid no-padding-vc-row vc_custom_1650717285868 vc_row-has-fill vc_row-o-equal-height vc_row-flex amz-container-fluid mpc-row">
<div class="wpb_column vc_column_container vc_col-sm-4 vc_col-has-fill mpc-column" data-column-id="mpc_column-9862e243b2a4468">
<div class="vc_column-inner vc_custom_1635239115050">
<div class="wpb_wrapper">
<div class="ult-content-box-container ">
<div class="ult-content-box" style="background-color:#ffffff;box-shadow: 2px 2px 7px 3px rgba(0,0,0,0) none;border-style:none;border-radius:30px;padding-top:10px;padding-bottom:5px;padding-left:25px;margin-bottom:40px;-webkit-transition: all 700ms linear;-moz-transition: all 700ms linear;-ms-transition: all 700ms linear;-o-transition: all 700ms linear;transition: all 700ms linear;" data-hover_box_shadow=" 1px 1px 1px 0px #58a450 " data-normal_margins="margin-bottom:40px;" data-bg="#ffffff" data-border_color="">
<div class="wpb_single_image wpb_content_element vc_align_left vc_custom_1655190818867">
<figure class="wpb_wrapper vc_figure"><a href="/kontrol-temperatyri-i-vlazhnosti-na-skladax" target="_self" class="vc_single_image-wrapper vc_box_circle vc_box_border_grey"><img width="150" height="150" src="/uploads/2022/04/intellectual_mashine_vision-150x150.png" class="vc_single_image-img attachment-thumbnail" alt="контрактная разработка электроники с использованием методов интеллектуального машинного обучения" loading="lazy" title="intellectual_mashine_vision"></a></figure>
</div>
<div id="mpc_textblock-3762e243b2a4170" class="mpc-textblock mpc-init "><h3 style="text-align: left;"><strong>Решения интеллектуального<br>
машинного зрения</strong></h3>
</div>
<div id="mpc_textblock-9162e243b2a4257" class="mpc-textblock mpc-init mpc-typography--preset_4 "><h4>Разработка комплексных интеллектуальных решений с использованием методов машинного обучения для контроля и распознавания объектов, качества покрытия, однородности структуры материала, количества и размеров. Для промышленного использования</h4></div>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4 mpc-column" data-column-id="mpc_column-6662e243b2a52cb">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="ult-content-box-container ">
<div class="ult-content-box" style="background-color:#ffffff;box-shadow: 2px 2px 7px 3px rgba(0,0,0,0) none;border-style:none;border-radius:30px;padding-top:10px;padding-bottom:5px;padding-left:25px;margin-bottom:40px;-webkit-transition: all 700ms linear;-moz-transition: all 700ms linear;-ms-transition: all 700ms linear;-o-transition: all 700ms linear;transition: all 700ms linear;" data-hover_box_shadow=" 1px 1px 1px 0px #58a450 " data-normal_margins="margin-bottom:40px;" data-bg="#ffffff" data-border_color="">
<div class="wpb_single_image wpb_content_element vc_align_left vc_custom_1655190569973">
<figure class="wpb_wrapper vc_figure"><a href="/kontrol-temperatyri-i-vlazhnosti-na-skladax" target="_self" class="vc_single_image-wrapper vc_box_circle vc_box_border_grey"><img width="150" height="150" src="/uploads/2022/04/laser_module-150x150.jpg" class="vc_single_image-img attachment-thumbnail" alt="Контрактная разработка электроники/оптоэлектронный лазерных модулей" loading="lazy" title="laser_module"></a></figure>
</div>
<div id="mpc_textblock-3262e243b2a501e" class="mpc-textblock mpc-init "><h3><strong>Изготовление<br>
лазерных модулей</strong></h3>
</div>
<div id="mpc_textblock-7262e243b2a50c3" class="mpc-textblock mpc-init mpc-typography--preset_4 "><h4>Контрактная разработка оптоэлектронных устройств на основе полупроводниковых лазерных диодов. Области применения: наука, медицина, геодезия, строительство, деревообработка, металлообработка, робототехника, спектроскопия, печать с высоким разрешением, машинное зрение и другие.</h4></div>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4 mpc-column" data-column-id="mpc_column-8062e243b2a5e8b">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="ult-content-box-container ">
<div class="ult-content-box" style="background-color:#ffffff;box-shadow: 2px 2px 7px 3px rgba(0,0,0,0) none;border-style:none;border-radius:30px;padding-top:10px;padding-bottom:5px;padding-left:25px;margin-bottom:40px;-webkit-transition: all 700ms linear;-moz-transition: all 700ms linear;-ms-transition: all 700ms linear;-o-transition: all 700ms linear;transition: all 700ms linear;" data-hover_box_shadow=" 1px 1px 1px 0px #58a450 " data-normal_margins="margin-bottom:40px;" data-bg="#ffffff" data-border_color="">
<div class="wpb_single_image wpb_content_element vc_align_left vc_custom_1655190868879">
<figure class="wpb_wrapper vc_figure"><a href="/kontrol-temperatyri-i-vlazhnosti-na-skladax" target="_self" class="vc_single_image-wrapper vc_box_circle vc_box_border_grey"><img width="150" height="150" src="/uploads/2022/04/metal_works-e1651307729718-150x150.jpeg" class="vc_single_image-img attachment-thumbnail" alt="Контрактная разработка электроники, изделий из металла и пластика под заказ" loading="lazy" title="изделия из металла и пластика под заказ"></a></figure>
</div>
<div id="mpc_textblock-6662e243b2a5c2d" class="mpc-textblock mpc-init "><h3><strong>Изделия из</strong><br><strong>металла и пластика</strong></h3></div>
<div id="mpc_textblock-6662e243b2a5cc0" class="mpc-textblock mpc-init mpc-typography--preset_4 "><h4>Проработка проектной документации и изготовление изделий из металла и пластика. Собственное производство. Гарантия качества. Уникальные станки с программным обеспечением SINUMERK, Heidenhain, а также собственное ПО.</h4></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div style="background-color: #f9f9f9 !important;text-align: right; " ><h4 style="margin-right: 3%;"><a style="background-color: #f9f9f9 !important;" href="http://mvlaboratory.com/" target="_blank">Подробнее --></a></h4>
</div>
<div class="vc_row wpb_row vc_row-fluid no-padding-vc-row vc_custom_1650907701430 vc_row-has-fill vc_row-o-equal-height vc_row-flex amz-container-fluid mpc-row">
<!--<img src="/uploads/2024/IoTplatformforbusiness.png"/>-->
<div class="wpb_column vc_column_container vc_col-sm-12 mpc-column" data-column-id="mpc_column-2662e243b2a6d7e">
<div class="vc_column-inner vc_custom_1650907711205">
<div class="wpb_wrapper"><h1 style="font-size: 35px;color: #333333;text-align: left;font-family:Montserrat;" class="vc_custom_heading vc_custom_1650907731662">Теперь датчики mite доступны и в <a style = "color:#54a54c" href="https://wialon.com"><img class="vc_single_image-img " src="/uploads/2024/wialon logo.webp" width="100" height="50" alt="цифровые термодатчики" title="цифровые термодатчики для постоянного мониторинга"></img></a><i><a style = "color:#54a54c; font-size:medium" href = "https://gurtam.com"><sup>Gurtam </sup></a></i></h1>
<h4><a href="https://wialon.com">Wialon</a> - универсальная платформа для IoT-проектов. Наши надежные цифровые устройства полностью совместимы с мощными функциональными возможностями <a style = "color:#54a54c" href="https://wialon.com">Wialon</a>.
<div><a href="https://wialon.com"><img class="vc_single_image-img " src="/uploads/2024/vecteezy_color-blob-with-question-mark-symbol_21971803.png" width="128" height="64" alt="цифровые термодатчики" title="цифровые термодатчики для постоянного мониторинга"></img> Что это значит для наших партнеров? </a>
<br> Теперь вы можете воспользоваться всей мощью устройств mite и одновременно использовать передовые инструменты мониторинга и управления от <a href="https://wialon.com">Wialon</a>.
Совместно мы открываем новые перспективы для эффективного управления вашими IoT-решениями и предоставляем больший спектр возможностей для управления бизнес-процессами.
Мы стремимся предоставить вам максимально удобные инструменты для успешной работы, и интеграция с Wialon является еще одним шагом в этом направлении. Мы уверены, что эта совместимость откроет новые горизонты для вашего опыта в области Интернета вещей (IoT). Погружайтесь в мир цифровых возможностей с <img class="vc_single_image-img " src="/uploads/2024/logo_mite_green&grey.jpeg" width="256" height="125" alt="цифровые термодатчики" title="цифровые термодатчики для постоянного мониторинга температуры и влажности"></img> и <a href="https://wialon.com"><img class="vc_single_image-img " src="/uploads/2024/wialon-1024x512-20191216.png" width="256" height="125" alt="цифровые термодатчики" title="цифровые термодатчики для постоянного мониторинга"></img></a>!</h4>
</div>
</div>
</div>
</div>
<div class="vc_row wpb_row vc_row-fluid no-padding-vc-row vc_custom_1650907701430 vc_row-has-fill vc_row-o-equal-height vc_row-flex amz-container-fluid mpc-row">
<div class="wpb_column vc_column_container vc_col-sm-12 text-align:left mpc-column" data-column-id="mpc_column-2662e243b2a6d7e">
<div class="vc_column-inner vc_custom_1650907711205">
<div class="wpb_wrapper"><h1 style="font-size: 35px;color: #333333;text-align: left;font-family:Montserrat;" class="vc_custom_heading vc_custom_1650907731662">Рады познакомить с нашим новым IoT устройством #MITEумный счетчик.</h1>
</div>
</div>
</div>
</div>
<div class="vc_row wpb_row vc_row-fluid no-padding-vc-row vc_custom_1640772609619 vc_row-has-fill vc_row-o-equal-height vc_row-flex amz-container-fluid mpc-row">
<div class="wpb_column vc_column_container vc_col-sm-9 vc_col-has-fill mpc-column" data-column-id="mpc_column-5462e243b2a79ce">
<div class="vc_column-inner vc_custom_1658232058773">
<div class="wpb_wrapper">
<div data-id="mpc_icon_column-6762e243b2a73bd" class="mpc-icon-column mpc-init mpc-parent-hover mpc-transition mpc-icon-column--style_5 mpc-align--left ">
<div data-id="mpc_icon-6262e243b2a7778" class="mpc-icon mpc-init mpc-transition mpc-effect-none mpc-icon--image ">
<div class="mpc-icon-wrap"><i class="mpc-icon-part mpc-regular mpc-transition "></i></div>
</div>
<div class="mpc-icon-column__content-wrap">
<div class="mpc-icon-column__content">
<div data-id="mpc_divider-8662e243b2a77c4" class="mpc-divider-wrap">
<div class="mpc-divider mpc-init mpc-align--center mpc-disable--left ">
<div class="mpc-divider__line mpc-side--left"><span></span></div>
<div class="mpc-divider__line mpc-side--right"><span></span></div>
</div>
<label for=""></label> </div>
<div class="mpc-icon-column__description mpc-transition"><h4 style="text-align: left;"><strong>#MITEумный счетчик</strong><strong> — проект, который поможет прогнозировать расход и предотвращать утечки воды, газа, электричества. </strong></h4>
<h4 style="text-align: left;">Решение анализирует паттерны нормального потребления и уведомляет при отклонениях. Подходит для любого импульсного счетчика. Контроль online потребления электроэнергии, воды, газа. Простой монтаж. Удобный интерфейс. Комплексная автоматизация.</h4>
<h4 style="text-align: center;"><a href="/iot-distanzzionnoe-sniatie-pokazanii-online">Подробнее </a><a href="/yprawlenie-temperatyroi">—></a></h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-3 mpc-column" data-column-id="mpc_column-3562e243b2a819f">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_left">
<figure class="wpb_wrapper vc_figure">
<div class="vc_single_image-wrapper vc_box_border_circle vc_box_border_white"><img class="vc_single_image-img " src="/uploads/2021/10/2CC641CB-30CA-4E88-A0DC-A6034221CB13_1_201_a-675x600.jpeg" width="675" height="600" alt="контрактная разработка электроники: умный счетчик для снятия показаний" title="контрактная разработка электроники: умный счетчик"></div></figure>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-12 mpc-column" data-column-id="mpc_column-5162e243b2a8375">
<div class="vc_column-inner ">
<div class="wpb_wrapper"></div>
</div>
</div>
</div>
<div class="vc_row wpb_row vc_row-fluid no-padding-vc-row vc_custom_1640771824523 vc_row-has-fill vc_row-o-equal-height vc_row-flex amz-container-fluid mpc-row">
<div class="wpb_column vc_column_container vc_col-sm-12 vc_col-has-fill mpc-column" data-column-id="mpc_column-2162e243b2a8d48">
<div class="vc_column-inner vc_custom_1640771848889">
<div class="wpb_wrapper"><h1 style="font-size: 35px;color: #333333;text-align: left;font-family:Montserrat;" class="vc_custom_heading vc_custom_1640771980587">Мы продолжаем развивать концепцию "Умные города”.<br>
В частности, предлагаем познакомиться с нашей новой разработкой в рамках эко-проектов #MITEЧИСТЫЙГОРОД.</h1>
</div>
</div>
</div>
</div>
<div class="vc_row wpb_row vc_row-fluid no-padding-vc-row vc_custom_1648132613442 vc_row-has-fill vc_row-o-equal-height vc_row-flex amz-container-fluid-no-spaces mpc-row">
<div class="wpb_column vc_column_container vc_col-sm-3 mpc-column" data-column-id="mpc_column-10062e243b2a99f4">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_left">
<figure class="wpb_wrapper vc_figure"><div class="vc_single_image-wrapper vc_box_shadow_border vc_box_border_grey"><img class="vc_single_image-img " src="/uploads/2021/10/smart-waste-450x350.jpg" width="450" height="350" alt="контрактная разработка электроники: IoT датчик наполняемости мусорного бака" title="smart waste"></div></figure>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-9 vc_col-has-fill mpc-column" data-column-id="mpc_column-6062e243b2aa2ca">
<div class="vc_column-inner vc_custom_1633412305861">
<div class="wpb_wrapper">
<div data-id="mpc_icon_column-6362e243b2a9d17" class="mpc-icon-column mpc-init mpc-parent-hover mpc-transition mpc-icon-column--style_3 mpc-align--left ">
<div data-id="mpc_icon-6262e243b2aa09b" class="mpc-icon mpc-init mpc-transition mpc-effect-none mpc-icon--image ">
<div class="mpc-icon-wrap"><i class="mpc-icon-part mpc-regular mpc-transition "></i></div>
</div>
<div class="mpc-icon-column__content-wrap">
<div class="mpc-icon-column__content">
<div data-id="mpc_divider-3262e243b2aa0da" class="mpc-divider-wrap">
<div class="mpc-divider mpc-init mpc-align--center mpc-disable--left ">
<div class="mpc-divider__line mpc-side--left"><span></span></div>
<div class="mpc-divider__line mpc-side--right"><span></span></div>
</div>
</div>
<div class="mpc-icon-column__description mpc-typography--preset_4 mpc-transition"><h4 style="text-align: left;"><strong>#MITE</strong><strong>ЧИСТЫЙБАК — проект, который поможет эффективнее справляться с вывозом </strong><b>твердо-коммунальных отходов (ТКО)</b></h4>
<h4 style="text-align: left;">Мы разработали IoT-устройство для мониторинга наполняемости мусорных контейнеров. Приборы легко и надёжно крепятся на любой мусорный бак при помощи 4 болтов и c помощью ультразвукового датчика определяют уровень ТКО в баке. Оператор в любой момент может увидеть нанесенные на карту мусорные баки и количество мусора в них. Так же доступна версия с GPS, которая позволит отслеживать мусорные контейнеры в режиме реального времени.</h4>
<h4 style="text-align: center;"><a href="/smart-bin-iot-waste.html">Подробнее </a><a href="/smart-bin-iot-waste.html">—></a><img class="wp-image-8121 alignright" src="mite.club/uploads/2021/10/waste_sensor-300x148.jpg" alt="IoT датчик мусора" width="269" height="131"></h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row wpb_row vc_row-fluid no-padding-vc-row vc_custom_1657712668682 vc_row-has-fill vc_row-o-equal-height vc_row-flex amz-container-fluid mpc-row">
<div class="wpb_column vc_column_container vc_col-sm-12 vc_col-has-fill mpc-column" data-column-id="mpc_column-1462e243b2ab79c">
<div class="vc_column-inner vc_custom_1657709533978">
<div class="wpb_wrapper"><h1 style="font-size: 35px;color: #333333;text-align: left;font-family:Montserrat;" class="vc_custom_heading vc_custom_1657708746749">Описание кейса внедрения</h1>
<div data-id="mpc_icon_column-8862e243b2ab0fc" class="mpc-icon-column mpc-init mpc-parent-hover mpc-transition mpc-icon-column--style_3 mpc-align--left ">
<div data-id="mpc_icon-1062e243b2ab4da" class="mpc-icon mpc-init mpc-transition mpc-effect-none mpc-icon--image ">
<div class="mpc-icon-wrap"><i class="mpc-icon-part mpc-regular mpc-transition "></i></div>
</div>
<div class="mpc-icon-column__content-wrap">
<div class="mpc-icon-column__content">
<div data-id="mpc_divider-3562e243b2ab519" class="mpc-divider-wrap">
<div class="mpc-divider mpc-init mpc-align--center mpc-disable--left ">
<div class="mpc-divider__line mpc-side--left"><span></span></div>
<div class="mpc-divider__line mpc-side--right"><span></span></div>
</div>
</div>
<div class="mpc-icon-column__description mpc-typography--preset_4 mpc-transition"><h4><img loading="lazy" class="wp-image-8092 alignright" src="/uploads/2021/08/-групп_adel-e1630404389516.png" alt="автономный термометр в кузов автомобиля" width="255" height="103"></h4>
<h4><strong>А1 прэзентаваў IoT-рашэнне для кантролю ўмоў захоўвання лекавых прэпаратаў</strong><img loading="lazy" class="n3VNCb alignright" src="/uploads/2021/09/A1_01_08RED_3_L-768x768.png" alt="Logos - A1 Brand Portal" width="166" height="166" data-noaft="1"></h4>
<h4>А1 разам з IoT-распрацоўшчыкам MITE і кампаніяй «ВітФармМаркет», якая ўваходзіць у холдынг «Аптэка груп», што развівае сеткі аптэк «Адэль» і «Добрыя лекі», <img loading="lazy" class="size-medium wp-image-8101 alignright" src="/uploads/2021/10/добрые-леки-300x104.jpg" alt="автономный термодатчик" width="300" height="104"> укаранілі рашэнне, якое дазваляе ў рэжыме рэальнага часу ажыццяўляць кантроль параметраў вытворчага асяроддзя. Яно дапамагае выконваць строгія патрабаванні да ўмоў захоўвання і транспарціроўкі лекавых сродкаў на ўсіх этапах руху ад вытворцы да спажыўца.</h4>
<h4 style="text-align: center;"><a href="https://www.a1.by/be/company/news/a1-predstavil-iot-reshenie-dlya-kontrolya-uslovij-hraneniya-lekarstvennyh-preparatov/p/iot-reshenie-hranenie-lekarstvennyh-preparatov">Даведацца больш </a><a href="https://mite.club/yprawlenie-temperatyroi">—></a></h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row wpb_row vc_row-fluid no-padding-vc-row vc_custom_1657709269851 vc_row-has-fill amz-container-fluid-no-spaces mpc-row">
<div class="wpb_column vc_column_container vc_col-sm-12 vc_col-has-fill mpc-column" data-column-id="mpc_column-6862e243b2ac753">
<div class="vc_column-inner vc_custom_1657709158401">
<div class="wpb_wrapper">
<div data-id="mpc_icon_column-8462e243b2ac146" class="mpc-icon-column mpc-init mpc-parent-hover mpc-transition mpc-icon-column--style_3 mpc-align--center ">
<div data-id="mpc_icon-1262e243b2ac48d" class="mpc-icon mpc-init mpc-transition mpc-effect-none mpc-icon--image ">
<div class="mpc-icon-wrap"><i class="mpc-icon-part mpc-regular mpc-transition "></i></div>
</div>
<div class="mpc-icon-column__content-wrap">
<div class="mpc-icon-column__content">
<div data-id="mpc_divider-962e243b2ac4c6" class="mpc-divider-wrap">
<div class="mpc-divider mpc-init mpc-align--center mpc-disable--left ">
<div class="mpc-divider__line mpc-side--left"><span></span></div>
<div class="mpc-divider__line mpc-side--right"><span></span></div>
</div>
</div>
<div class="mpc-icon-column__description mpc-typography--preset_4 mpc-transition"><p><a href="https://bn.by/"><img loading="lazy" class="“align alignleft" src="/uploads/2020/06/bn_logo1-e1593130246734-300x80.png" alt="Надежные инфраструктурные решения в области электросвязи для бизнеса" width="300" height="80"></a></p>
<h4 style="text-align: left;">В MITE нас изначально подкупило то, что вся разработка отечественная, команда в РБ. Похожих решений вроде бы много, но большинство дают тебе устройство, колл-центр в Индии – и на этом все. Здесь же чувствуется комплексный подход и стремление решить задачу клиента.</h4>
<h4 style="text-align: left;">Команда MITE, используя нашу инфраструктуру (Ethernet, электричество), установила свои датчики и разработала решение, которое мы хотели: микроклимат на телекоммуникационных узлах под постоянным контролем, кондиционеры управляются удаленно, а нашим сотрудникам не нужно в авральном режиме спасать оборудование. Дополнительно мы получили выгоду в виде ежемесячной экономии на топливе и сверхурочных (в основном в летнее время) и на электричестве (в зимние месяцы года).</h4>
<h4></h4>
<h4 style="text-align: right;"><em><strong>Дмитрий Шильцев, технический директор ООО « Деловая сеть»</strong></em></h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="solutions" class="vc_row wpb_row vc_row-fluid no-padding-vc-row vc_custom_1640772458826 vc_row-has-fill amz-container-fluid mpc-row">
<div class="wpb_column vc_column_container vc_col-sm-12 mpc-column" data-column-id="mpc_column-3062e243b2ad30f">
<div class="vc_column-inner ">
<div class="wpb_wrapper"><h2 style="font-size: 35px;color: #333333;text-align: left;font-family:Montserrat;" class="vc_custom_heading">Собирайте любые данные с наших #MITEУмных устройств и настраивайте процессы под задачи, а не наоборот. Контрактная разработка электроники полного цикла.</h2></div>
</div>
</div>
</div>
<div class="vc_row wpb_row vc_row-fluid no-padding-vc-row vc_custom_1595066243928 vc_row-has-fill amz-container-fluid-no-spaces mpc-row">
<div class="wpb_column vc_column_container vc_col-sm-6 mpc-column" data-column-id="mpc_column-462e243b2adfb0">
<div class="vc_column-inner vc_custom_1620292199610">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_center vc_custom_1644736908835">
<figure class="wpb_wrapper vc_figure"><div class="vc_single_image-wrapper vc_box_rounded vc_box_border_grey"><img data-vc-zoom="/uploads/2020/07/sdsdd.png" class="vc_single_image-img " src="/uploads/2020/07/termodatchik_sklad-550x400.png" width="550" height="400" alt="контрактная разработка электроники, IoT умные приборы. Температурные датчики и измерители влажности" title="MITE датчик температуры и влажности"></div></figure>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-6 mpc-column" data-column-id="mpc_column-3162e243b2ae57e">
<div class="vc_column-inner vc_custom_1593361001494">
<div class="wpb_wrapper">
<div id="mpc_textblock-462e243b2ae1c9" class="mpc-textblock mpc-init mpc-typography--preset_4 "><h4 style="text-align: left;"><span style="color: #000000;">Датчики Mite устанавливаются в помещениях или прямо в ваше оборудование. З</span><span style="color: #000000;">амеряют температуру, влажность, координаты, газы и более 20 других параметров. Декларативная платформа <a href="https://lsfusion.org/">#MITE</a> позволяет реализовать даже самую сложную бизнес логику и комплексно автоматизировать процессы под ваши задачи. </span></h4>
</div>
<h2 style="font-size: 16px;color: #54a54c;text-align: justify;font-family:Montserrat;" class="vc_custom_heading vc_custom_1650908889505"><a href="/smart-devices" title="Умные IoT-устройства MITE">Узнать больше —></a></h2>
</div>
</div>
</div>
</div>
<div id="success stories" class="vc_row wpb_row vc_row-fluid entry-content vc_custom_1595045788430 vc_row-has-fill amz-container-fluid-no-spaces mpc-row" data-row-id="mpc_row-362e243b2af026">
<div class="mpc-overlay mpc-overlay--first" data-speed="25"></div>
<div class="wpb_column vc_column_container vc_col-sm-12 mpc-column" data-column-id="mpc_column-9662e243b2aef43">
<div class="vc_column-inner vc_custom_1594976650803">
<div class="wpb_wrapper"><h1 style="font-size: 35px;color: #333333;text-align: left;font-family:Montserrat;" class="vc_custom_heading">Среди проектов, которые мы реализовали</h1></div>
</div>
</div>
</div>
<div class="vc_row wpb_row vc_row-fluid for_links no-padding-vc-row vc_custom_1640773941914 vc_row-has-fill vc_column-gap-5 vc_row-o-equal-height vc_row-flex amz-container-fluid mpc-row">
<div class="wpb_column vc_column_container vc_col-sm-4 mpc-column" data-column-id="mpc_column-5662e243b2b11c0">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="ult-content-box-container ">
<div class="ult-content-box" style="background-color:#ffffff;box-shadow: 2px 2px 7px 3px rgba(0,0,0,0) none;border-style:none;border-radius:30px;padding-top:10px;padding-bottom:5px;padding-left:25px;margin-bottom:40px;-webkit-transition: all 700ms linear;-moz-transition: all 700ms linear;-ms-transition: all 700ms linear;-o-transition: all 700ms linear;transition: all 700ms linear;" data-hover_box_shadow=" 1px 1px 1px 0px #58a450 " data-normal_margins="margin-bottom:40px;" data-bg="#ffffff" data-border_color="">
<div class="wpb_single_image wpb_content_element vc_align_left vc_custom_1640776943178">
<figure class="wpb_wrapper vc_figure"><a href="/kontrol-temperatyri-i-vlazhnosti-na-skladax" target="_self" class="vc_single_image-wrapper vc_box_border_grey"><img width="150" height="150" src="/uploads/dsdsfsd-1-150x150.png" class="vc_single_image-img attachment-thumbnail" alt="Умные термодатчики для склада" loading="lazy" title="Умные термодатчики для склада" srcset="/uploads/2020/07/dsdsfsd-1-150x150.png 150w, /uploads/2020/07/dsdsfsd-1.png 240w" sizes="(max-width: 150px) 100vw, 150px"></a></figure>
</div>
<div id="mpc_textblock-9962e243b2affb4" class="mpc-textblock mpc-init "><h6><a href="/kontrol-temperatyri-i-vlazhnosti-na-skladax" target="_blank" rel="noopener noreferrer">Контроль температуры<br>
и влажности —></a></h6>
</div>
<div id="mpc_textblock-1062e243b2b0063" class="mpc-textblock mpc-init mpc-typography--preset_4 "><p>Ритейл</p></div>
</div>
</div>
<div class="ult-content-box-container ">
<div class="ult-content-box" style="background-color:#ffffff;box-shadow: 2px 2px 7px 3px rgba(0,0,0,0) none;border-style:none;border-radius:30px;padding-top:10px;padding-bottom:5px;padding-left:25px;margin-bottom:40px;-webkit-transition: all 700ms linear;-moz-transition: all 700ms linear;-ms-transition: all 700ms linear;-o-transition: all 700ms linear;transition: all 700ms linear;" data-hover_box_shadow=" 1px 1px 1px 0px #58a450 " data-normal_margins="margin-bottom:40px;" data-bg="#ffffff" data-border_color="">
<div class="wpb_single_image wpb_content_element vc_align_left vc_custom_1656580224980">
<figure class="wpb_wrapper vc_figure"><a href="/kontraktnaya-iot-automatizazzia-bisnessa-promiwlennosti" target="_self" class="vc_single_image-wrapper vc_box_border_grey"><img width="150" height="150" src="/uploads/dfsdfs-1-e1653900181570-150x150.png" class="vc_single_image-img attachment-thumbnail" alt="система реагирования на аварии в котельных" loading="lazy" title="система реагирования на аварии в котельных" srcset="/uploads/2020/07/dfsdfs-1-e1653900181570-150x150.png 150w, /uploads/2020/07/dfsdfs-1-e1653900181570.png 240w" sizes="(max-width: 150px) 100vw, 150px"></a></figure>
</div>
<div id="mpc_textblock-9162e243b2b073e" class="mpc-textblock mpc-init "><h6><a href="/kontraktnaya-iot-automatizazzia-bisnessa-promiwlennosti">Своевременное реагирование на аварии<br>
в котельных —></a></h6>
</div>
<div id="mpc_textblock-4762e243b2b07c6" class="mpc-textblock mpc-init mpc-typography--preset_4 "><p>Ритейл</p></div>
</div>
</div>
<div class="ult-content-box-container ">
<div class="ult-content-box" style="background-color:#ffffff;box-shadow: 1px 1px 1px 1px rgba(0,0,0,0) none;border-style:none;border-radius:30px;padding-top:10px;padding-bottom:5px;padding-left:25px;margin-bottom:40px;-webkit-transition: all 700ms linear;-moz-transition: all 700ms linear;-ms-transition: all 700ms linear;-o-transition: all 700ms linear;transition: all 700ms linear;" data-hover_box_shadow=" 1px 1px 1px 1px #58a450 " data-normal_margins="margin-bottom:40px;" data-bg="#ffffff" data-border_color="">
<div class="wpb_single_image wpb_content_element vc_align_left vc_custom_1656580316407">
<figure class="wpb_wrapper vc_figure"><a href="/snjtiye-pokazaniy-schetchikov" target="_self" class="vc_single_image-wrapper vc_box_border_grey"><img width="150" height="150" src="/uploads/datchiki-150x150.png" class="vc_single_image-img attachment-thumbnail" alt="Отслеживание показаний счетчиков в режиме online" loading="lazy" title="Отслеживание показаний счетчиков в режиме online" srcset="/uploads/2020/08/datchiki-150x150.png 150w, /uploads/2020/08/datchiki.png 240w" sizes="(max-width: 150px) 100vw, 150px"></a></figure>
</div>
<div id="mpc_textblock-3962e243b2b0e6f" class="mpc-textblock mpc-init "><h6><a href="/snjtiye-pokazaniy-schetchikov">Отслеживание показаний<br>
счетчиков—></a></h6>
</div>
<div id="mpc_textblock-6562e243b2b0f30" class="mpc-textblock mpc-init mpc-typography--preset_4 "><p>Производство</p></div>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4 mpc-column" data-column-id="mpc_column-2362e243b2b3974">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="ult-content-box-container ">
<div class="ult-content-box" style="background-color:#ffffff;box-shadow: 1px 1px 1px 1px rgba(0,0,0,0) none;border-style:none;border-radius:30px;padding-top:10px;padding-bottom:5px;padding-left:25px;margin-bottom:40px;-webkit-transition: all 700ms linear;-moz-transition: all 700ms linear;-ms-transition: all 700ms linear;-o-transition: all 700ms linear;transition: all 700ms linear;" data-hover_box_shadow=" 1px 1px 1px 1px #58a450 " data-normal_margins="margin-bottom:40px;" data-bg="#ffffff" data-border_color="">
<div class="wpb_single_image wpb_content_element vc_align_left vc_custom_1656580131123">
<figure class="wpb_wrapper vc_figure"><a href="/yprawlenie-temperatyroi" target="_self" class="vc_single_image-wrapper vc_box_border_grey"><img width="150" height="150" src="/uploads/servers-1-150x150.png" class="vc_single_image-img attachment-thumbnail" alt="IoT термодатчик для контроля температуры и влажности в серверных" loading="lazy" title="IoT термодатчик для контроля температуры и влажности в серверных" srcset="/uploads/2020/07/servers-1-150x150.png 150w, /uploads/2020/07/servers-1.png 240w" sizes="(max-width: 150px) 100vw, 150px"></a></figure>
</div>
<div id="mpc_textblock-1262e243b2b1cbb" class="mpc-textblock mpc-init "><h6><a href="/yprawlenie-temperatyroi">Управление кондиционерами<br>
в серверных —></a></h6>
</div>
<div id="mpc_textblock-9262e243b2b1db7" class="mpc-textblock mpc-init mpc-typography--preset_4 "><p>Кондиционирование</p></div>
</div>
</div>
<div class="ult-content-box-container ">
<div class="ult-content-box" style="background-color:#ffffff;box-shadow: 2px 2px 7px 3px rgba(0,0,0,0) none;border-style:none;border-radius:30px;padding-top:10px;padding-bottom:5px;padding-left:25px;margin-bottom:40px;-webkit-transition: all 700ms linear;-moz-transition: all 700ms linear;-ms-transition: all 700ms linear;-o-transition: all 700ms linear;transition: all 700ms linear;" data-hover_box_shadow=" 1px 1px 1px 1px #58a450 " data-normal_margins="margin-bottom:40px;" data-bg="#ffffff" data-border_color="">
<div class="wpb_single_image wpb_content_element vc_align_left vc_custom_1652430169484">
<figure class="wpb_wrapper vc_figure"><a href="/kontraktnaya-razrabotka-dlj-proizvodstva" target="_self" class="vc_single_image-wrapper vc_box_border_grey"><img width="150" height="150" src="/uploads/dddd-1-150x150.png" class="vc_single_image-img attachment-thumbnail" alt="Автоматизация производства посредством сбора данных о физических параметрах на каждом этапе" loading="lazy" title="Автоматизация производства по методологии Интернета вещей" srcset="/uploads/2020/07/dddd-1-150x150.png 150w, /uploads/2020/07/dddd-1.png 240w" sizes="(max-width: 150px) 100vw, 150px"></a></figure>
</div>
<div id="mpc_textblock-9362e243b2b287d" class="mpc-textblock mpc-init "><h6><a href="/kontraktnaya-razrabotka-dlj-proizvodstva">Улучшение качества продукции и производственной цепочки. Контрактная разработка полного цикла —></a></h6>
</div>
<div id="mpc_textblock-1162e243b2b297a" class="mpc-textblock mpc-init mpc-typography--preset_4 "><p>Производство</p>
</div>
</div>
</div>
<div class="ult-content-box-container ">
<div class="ult-content-box" style="background-color:#ffffff;box-shadow: 2px 2px 7px 3px rgba(0,0,0,0) none;border-style:none;border-radius:30px;padding-top:10px;padding-bottom:5px;padding-left:25px;margin-bottom:40px;-webkit-transition: all 700ms linear;-moz-transition: all 700ms linear;-ms-transition: all 700ms linear;-o-transition: all 700ms linear;transition: all 700ms linear;" data-hover_box_shadow=" 1px 1px 1px 1px #58a450 " data-normal_margins="margin-bottom:40px;" data-bg="#ffffff" data-border_color="">
<div class="wpb_single_image wpb_content_element vc_align_left vc_custom_1656580353033">
<figure class="wpb_wrapper vc_figure"><a href="/monitoring_transporta" target="_self" class="vc_single_image-wrapper vc_box_border_grey"><img width="150" height="150" src="/uploads/logistika-150x150.jpg" class="vc_single_image-img attachment-thumbnail" alt="GPS-датчик при транспортировке для контроля груза" loading="lazy" title="GPS-датчик при транспортировке" srcset="/uploads/2020/08/logistika-150x150.jpg 150w, /uploads/2020/08/logistika.jpg 240w" sizes="(max-width: 150px) 100vw, 150px"></a></figure>
</div>
<div id="mpc_textblock-6962e243b2b33e1" class="mpc-textblock mpc-init "><h6><a href="/monitoring_transporta">Отслеживание состояния груза<br>
при транспортировке—></a></h6>
</div>
<div id="mpc_textblock-6062e243b2b3504" class="mpc-textblock mpc-init mpc-typography--preset_4 "><p>Логистика</p></div>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-4 mpc-column" data-column-id="mpc_column-8262e243b2b62f7">
<div class="vc_column-inner ">
<div class="wpb_wrapper">
<div class="ult-content-box-container ">
<div class="ult-content-box" style="background-color:#ffffff;box-shadow: 2px 2px 7px 3px rgba(0,0,0,0) none;border-style:none;border-radius:30px;padding-top:10px;padding-bottom:5px;padding-left:25px;margin-bottom:40px;-webkit-transition: all 700ms linear;-moz-transition: all 700ms linear;-ms-transition: all 700ms linear;-o-transition: all 700ms linear;transition: all 700ms linear;" data-hover_box_shadow=" 1px 1px 1px 1px #58a450 " data-normal_margins="margin-bottom:40px;" data-bg="#ffffff" data-border_color="">
<div class="wpb_single_image wpb_content_element vc_align_left vc_custom_1656580073213">
<figure class="wpb_wrapper vc_figure"><a href="/kontrol-temperaturi-i-vlazznosti-apteki" target="_self" class="vc_single_image-wrapper vc_box_rounded vc_box_border_grey"><img width="150" height="150" src="/uploads/2021/08/termoregim_apteka-150x150.jpg" class="vc_single_image-img attachment-thumbnail" alt="цифровые датчики температуры и влажности при перевозках для контроля микроклимата(+опционально, маршрут)" loading="lazy" title="контроль температуры и влажности"></a></figure>
</div>
<div id="mpc_textblock-6762e243b2b48de" class="mpc-textblock mpc-init "><h6><a href="/kontrol-temperaturi-i-vlazznosti-apteki">Контроль температуры и влажности<br>
при перевозках лекарств online —></a></h6>
</div>
<div id="mpc_textblock-8162e243b2b49d9" class="mpc-textblock mpc-init mpc-typography--preset_4 "><p>Фарма</p></div>