CINXE.COM
### 가치창조기술 온라인 쇼핑몰에 오신 것을 환영합니다! ###
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko"><head><script>(function(i, s, o, g, r) { var a = s.createElement(o); var m = s.getElementsByTagName(o)[0]; a.async = true; a.src = g; a.onload = function() { if (i[r].init) { i[r].init('https://js-error-tracer-api.cafe24.com', 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJ2Y3RtYWxsLmNhZmUyNC5jb20iLCJhdWQiOiJqcy1lcnJvci10cmFjZXItYXBpLmNhZmUyNC5jb20iLCJtYWxsX2lkIjoidmN0bWFsbCIsInNob3Bfbm8iOjEsInBhdGhfcm9sZSI6Ik1BSU4iLCJsYW5ndWFnZV9jb2RlIjoia29fS1IiLCJjb3VudHJ5X2NvZGUiOiJLUiIsImlzX3l0cyI6ZmFsc2UsImlzX2NvbnRhaW5lciI6ZmFsc2UsIndvcmtzcGFjZSI6InByb2R1Y3Rpb24ifQ.iAIGGpaU7I-C5vWB8vY-z-Qb_JirEm83lW_Rj9YmNWc', {"errors":{"path":"\/api\/v1\/store","collectWindowErrors":true,"preventDuplicateReports":true,"storageKeyPrefix":"EC_JET.MAIN","samplingEnabled":true,"samplingRate":0.5},"vitals":{"path":"\/api\/v1\/vitals","samplingEnabled":true,"samplingRate":0.3},"resources":{"path":"\/api\/v1\/resources","samplingEnabled":true,"samplingRate":0.5,"durationThreshold":3000}}); } }; m.parentNode.insertBefore(a, m); }(window, document, 'script', '//optimizer.poxo.com/jet/jet.js', 'EC_JET'));</script> <script type="text/javascript">window.CAFE24 = window.CAFE24 || {};CAFE24.ROUTE = {"is_mobile":false,"is_need_route":false,"language_code":"ZZ","path":{"origin":"\/","result":"\/","prefix":""},"shop_no":0,"skin_code":"default","support_language_list":{"ar":"ar_EG","ar-EG":"ar_EG","de":"de_DE","de-DE":"de_DE","en":"en_US","en-IN":"en_IN","en-PH":"en_PH","en-US":"en_US","es":"es_ES","es-ES":"es_ES","hi":"hi_IN","hi-IN":"hi_IN","id":"id_ID","id-ID":"id_ID","it":"it_IT","it-IT":"it_IT","ja":"ja_JP","ja-JP":"ja_JP","ko":"ko_KR","ko-KR":"ko_KR","ms":"ms_MY","ms-MY":"ms_MY","pt":"pt_PT","pt-PT":"pt_PT","ru":"ru_RU","ru-RU":"ru_RU","th":"th_TH","th-TH":"th_TH","tr":"tr_TR","tr-TR":"tr_TR","vi":"vi_VN","vi-VN":"vi_VN","zh":"zh_CN","zh-CN":"zh_CN","zh-HK":"zh_HK","zh-MO":"zh_MO","zh-SG":"zh_SG","zh-TW":"zh_TW"}};</script><script type="text/javascript">if (typeof EC_ROUTE === "undefined") { /** * 프론트용 라우트 플러그인 * @type {{bInit: boolean, init: EC_ROUTE.init}} * CAFE24.ROUTE 참조 */ var EC_ROUTE = { EC_DOMAIN_PATH_INFO: 'EC_DOMAIN_PATH_INFO', bInit: false, aFromList: [], aToList: [], aCleanFilter: null, init: function () { if (this.bInit || typeof CAFE24.ROUTE === 'undefined') { return; } this.bInit = true; this.aCleanFilter = [ /^shop[1-9][0-9]*$/, /^(m|p)$/, new RegExp('^(' + Object.keys(CAFE24.ROUTE.support_language_list).join('|') + ')$'), /^skin-(base|skin[1-9][0-9]*|mobile[0-9]*)$/, ]; }, isNeedRoute: function () { return CAFE24.ROUTE.is_need_route; }, /** * * @param iShopNo * @param bMobile * @param sFrontLanguage * @param sSkinCode * @returns {*|string} */ getUrlDomain: function (iShopNo, bMobile, sFrontLanguage, sSkinCode) { var oRouteConfig = {}; if (typeof iShopNo == 'undefined') { oRouteConfig.shop_no = CAFE24.SDE_SHOP_NUM; } else { oRouteConfig.shop_no = iShopNo; } if (typeof bMobile == 'undefined') { oRouteConfig.is_mobile = false; } else { oRouteConfig.is_mobile = bMobile; } if (typeof sFrontLanguage == 'undefined') { oRouteConfig.language_code = ''; }else { oRouteConfig.language_code = sFrontLanguage; // 내부에서 로직으로 동작할땐 언어_지역 형태의 로케일 형태를 따른다. } if (typeof sSkinCode == 'undefined') { oRouteConfig.skin_code = ''; }else { oRouteConfig.skin_code = sSkinCode; } var sDomain = ''; if (oRouteConfig.shop_no != CAFE24.SDE_SHOP_NUM) { // 접근된 다른 멀티샵 도메인 정보는 primary domain 를 조회해야함으로 ajax 를 통해 정보를 얻는다. sDomain = this._getUrlDomainMultishop(oRouteConfig); } else { // 샵이 동일할 경우에는 접근된 domain 에 path 정보만 정리하여 반환함. sDomain = this._getUrlDomain(oRouteConfig); } return sDomain; }, _getUrlDomainMultishop: function (oRouteConfig) { var sDomain = ''; EC$.ajax({ type: 'GET', url: '/exec/front/Shop/Domain', data: { '_shop_no' : oRouteConfig.shop_no, 'is_mobile' : oRouteConfig.is_mobile, 'language_code' : oRouteConfig.language_code, 'skin_code' : oRouteConfig.skin_code, }, async: false, dataType: 'json', cache: true, success: function(oResult) { switch (oResult.code) { case '0000' : sDomain = oResult.data; break; default : break; } return false; } }); return sDomain; }, _getUrlDomain: function (oRouteConfig) { oRouteConfig.domain = this._getCreateHost(oRouteConfig); return location.protocol + '//' + oRouteConfig.domain + this._getCreateUri(oRouteConfig); }, _getCreateHost : function (oRouteConfig) { var sHost = location.host; var aHost = sHost.split('.'); if (this.isBaseDomain(sHost)) { if (aHost.length > 3) { aHost[0] = ''; } } else if (oRouteConfig.is_mobile) { if (this.isMobileDomain()) { oRouteConfig.is_mobile = false; } } return aHost.filter(Boolean).join('.'); }, _getCreateUri: function (oRouteInfo) { var aUrl = []; if (this.isBaseDomain() && oRouteInfo.shop_no > 1) { aUrl.push('shop' + oRouteInfo.shop_no); } if (oRouteInfo.is_mobile) { aUrl.push('m'); } if (oRouteInfo.language_code != 'ZZ' && oRouteInfo.language_code != '') { var iIndex = Object.values(CAFE24.ROUTE.support_language_list).indexOf(oRouteInfo.language_code); if (iIndex !== -1) { aUrl.push(Object.keys(CAFE24.ROUTE.support_language_list)[iIndex]); } } if (this.isBaseDomain() && oRouteInfo.skin_code != 'default' && oRouteInfo.skin_code != '') { aUrl.push('skin-' + oRouteInfo.skin_code); } var sUrl= '/'; if (aUrl.length > 0) { sUrl= '/' + aUrl.join('/'); sUrl = this.rtrim(sUrl, '/'); } return sUrl; }, /** * en, en-US => en_US */ convertValidLanguageCode: function (sUrlLanguageCode) { if (typeof CAFE24.ROUTE.support_language_list[sUrlLanguageCode] != 'undefined') { return CAFE24.ROUTE.support_language_list[sUrlLanguageCode]; } return false; }, isMobileDomain: function (sHost) { if (typeof sHost == 'undefined') { sHost = location.host; } var aMatched = sHost.match(/^(m|mobile|skin\-mobile|skin\-mobile[0-9]+[\-]{2}shop[0-9]+|skin\-mobile[0-9]+|mobile[\-]{2}shop[0-9]+)\./i); return aMatched != null; }, isBaseDomain: function (sHost) { if (typeof sHost == 'undefined') { sHost = location.host; } return sHost.indexOf(CAFE24.GLOBAL_INFO.getRootDomain()) !== -1; }, removePrefixUrl: function (sUrl) { if (this.isNeedRoute()) { sUrl = sUrl.replace(this.getPrefixUrl('/'), '/'); // 자동으로 prefix 붙은 영역을 제거해준다. } return sUrl; }, getPrefixUrl: function (sUrl) { if (this.isNeedRoute() === false) { return sUrl; } if (sUrl.indexOf('/') !== 0) { return sUrl; } if (sUrl.match(/^\/{2,}/) !== null) { return sUrl; } var iCachedPosition = this.aFromList.indexOf(sUrl); if (iCachedPosition > -1) { return this.aToList[iCachedPosition]; } var bTailSlash = (sCleanUrl !== '/' && sUrl.substr(-1) === '/'); var sCleanUrl = this.getCleanUrl(sUrl); var aPrefixPart = CAFE24.ROUTE.path.prefix.split('/'); var aUrlPart = sCleanUrl.split('/'); var bMatched = true; var sReturnUrl = sCleanUrl; if (aUrlPart.length < aPrefixPart.length) { bMatched = false; } else { for (var i = 0; i < aPrefixPart.length ; i++) { if (aPrefixPart[i] != aUrlPart[i]) { bMatched = false; break; } } } if (bMatched === false) { if (sCleanUrl == '/') { sReturnUrl = CAFE24.ROUTE.path.prefix; } else { sReturnUrl = CAFE24.ROUTE.path.prefix + sCleanUrl; } sReturnUrl = bTailSlash ? sReturnUrl : this.rtrim(sReturnUrl, '/') this.aFromList.push(sUrl); this.aToList.push(sReturnUrl); } return sReturnUrl; }, /** * document.location.pathname 이 필요할 경우 사용한다. * @returns {*} */ getPathName: function() { if (typeof CAFE24.ROUTE.path.result == 'undefined') { return document.location.pathname; } return CAFE24.ROUTE.path.result; }, rtrim: function (str, chr) { var rgxtrim = (!chr) ? new RegExp('\\s+$') : new RegExp(chr+'+$'); return str.replace(rgxtrim, ''); }, getShopNo: function () { return CAFE24.ROUTE.shop_no; }, getSkinCode: function () { return CAFE24.ROUTE.skin_code; }, getLanguageCode: function () { return CAFE24.ROUTE.language_code; }, getMobile: function () { return CAFE24.ROUTE.is_mobile; }, getIsMobile: function () { return CAFE24.ROUTE.is_mobile || CAFE24.ROUTE.skin_code.match(/^mobile[0-9]*$/); }, getCleanUrl: function (sUrl) { if (sUrl === '/') { return sUrl; } var aUrl = sUrl.split('/'); aUrl.shift(); if (aUrl.length < 1) { return sUrl; } // 현재 4 depth 까지 미리보기 기능이 구현되어있음 var iPos = 0; var bFind = false; for (var i = 0; i < aUrl.length ; i++) { bFind = false; for (var iSub = iPos, iSubCount = this.aCleanFilter.length; iSub < iSubCount ; iSub++) { if (aUrl[i].match(this.aCleanFilter[iSub]) !== null) { bFind = true; iPos = iSub + 1; aUrl.splice(i, 1); i--; // aUrl 을 삭제해 주었으니 검색 조건을 -1 제거하여 초기화 한다. 다음 for i++ 로 증감 조회됨. break; } } if (bFind === false) { break; } } return '/' + aUrl.join('/'); }, getIsEasyUrl : function () { return !window.location.pathname.match(/^[\w\/\-\.]+(php|html|htm)$/i); } }; EC_ROUTE.init(); } </script> <meta name="path_role" content="MAIN" /> <meta name="description" content="아두이노/아두이노 관련 모듈 및 MCU 개발용 보드/컴파일러, 임베디드 및 프로토타이핑 부품 전문 쇼핑몰" /> <meta name="keywords" content="마이크로컨트롤러,마이컴,PIC, AVR, ARM, 8051, PSoC, 개발용 보드, 컴파일러,산업용 통신장비,산업용 블루투스, 지그비, 블루투스, 시리얼통신, 안테나, 무선 통신, 임베디드시스템, 블루투스 어댑터, 마이크로칩, Atmel, mikrochip, AVR개발보드pic12, pic18,pic24,pic32,dspic,dspic33, pic 컴파일러, arm컴파일러, avr컴파일러, 프로그래머,아두이노, arduino, 아두이노 쉴드,sparkfun,프로토타이핑, 부품, 모듈" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><!--PG크로스브라우징필수내용 시작--><meta http-equiv="Cache-Control" content="no-cache"/><meta http-equiv="Expires" content="0"/><meta http-equiv="Pragma" content="no-cache"/><!--PG크로스브라우징필수내용 끝--><!--해당 CSS는 쇼핑몰 전체 페이지에 영향을 줍니다. 삭제와 수정에 주의해주세요.--><!-- 스마트디자인에서는 JQuery 1.4.4 버전이 내장되어있습니다. 추가로 호출하면 충돌이 생길 수 있습니다. --><script type="text/javascript" src="/ec-js/common.js"></script><!-- 해당 JS는 플래시를 사용하기 위한 스크립트입니다. --> <!-- Google Channel Site Verification --> <meta name="google-site-verification" content="XLhJ0Mf1iz2n3LLzyhi6vrB86lNez0rD61kBKIDAF3w" /> <!-- Google Channel Site Verification --> <link rel="canonical" href="https://vctec.co.kr" /> <link rel="alternate" href="https://m.vctec.co.kr" /> <meta property="og:url" content="https://vctec.co.kr" /> <meta property="og:site_name" content="가치창조기술" /> <meta property="og:type" content="website" /> <link rel="shortcut icon" href="/web/upload/fabicon.ico" /> <script type="text/javascript" src="//wcs.naver.net/wcslog.js"></script> <script type="text/javascript"> window.CAFE24 = window.CAFE24 || {}; CAFE24.MANIFEST_CACHE_REVISION = '2503251390'; CAFE24.getDeprecatedNamespace = function(sDeprecatedNamespace, sSupersededNamespace) { var sNamespace = sSupersededNamespace ? sSupersededNamespace : sDeprecatedNamespace.replace(/^EC_/, ''); return CAFE24[sNamespace]; } CAFE24.FRONT_LANGUAGE_CODE = "ko_KR"; CAFE24.MOBILE = false; CAFE24.MOBILE_DEVICE = false; CAFE24.MOBILE_USE = true; var EC_MOBILE = CAFE24.MOBILE; var EC_MOBILE_DEVICE = CAFE24.MOBILE_DEVICE; var EC_MOBILE_USE = CAFE24.MOBILE_USE; CAFE24.SKIN_CODE = "skin10"; CAFE24.FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA = {"common_member_id_crypt":""}; var EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA = CAFE24.getDeprecatedNamespace('EC_FRONT_EXTERNAL_SCRIPT_VARIABLE_DATA'); CAFE24.SDE_SHOP_NUM = 1;CAFE24.SHOP = {getLanguage : function() { return "ko_KR"; },getCurrency : function() { return "KRW"; },getFlagCode : function() { return "KR"; },getTimezone: function() { return "Asia/Seoul" },getDateFormat: function() { return "Y-m-d" },isMultiShop : function() { return false; },isDefaultShop : function() { return true; },isDefaultLanguageShop : function(sLanguageCode) { return SHOP.isDefaultShop() && SHOP.isLanguageShop(sLanguageCode); },isKR : function() { return true; },isUS : function() { return false; },isJP : function() { return false; },isCN : function() { return false; },isTW : function() { return false; },isES : function() { return false; },isPT : function() { return false; },isVN : function() { return false; },isPH : function() { return false; },getCountryAndLangMap : function() { return { "KR": "ko_KR", "US": "en_US", "JP": "ja_JP", "CN": "zh_CN", "TW": "zh_TW", "VN": "vi_VN", "PH": "en_PH" }},isLanguageShop : function(sLanguageCode) { return sLanguageCode === "ko_KR"; },getDefaultShopNo : function() { return 1; },getProductVer : function() { return 2; },isSDE : function() { return true; },isMode : function() {return false; },getModeName : function() {return false; },isMobileAdmin : function() {return false; },isNewProMode : function() {return true; },isExperienceMall : function() { return false; },isDcollection : function() {return false; },isYoutubeShops : function() {return false; },getYtShopsShopNo : function() {return 0; },getAdminID : function() {return ''},getMallID : function() {return 'vctmall'},getCurrencyFormat : function(sPriceTxt, bIsNumberFormat) { sPriceTxt = String(sPriceTxt); var aCurrencySymbol = ["","\uc6d0",false]; if (typeof CAFE24.SHOP_PRICE !== 'undefined' && isNaN(sPriceTxt.replace(/[,]/gi, '')) === false && bIsNumberFormat === true) { // bIsNumberFormat 사용하려면 Ui(':libUipackCurrency')->plugin('Currency') 화폐 라이브러리 추가 필요 sPriceTxt = CAFE24.SHOP_PRICE.toShopPrice(sPriceTxt.replace(/[,]/gi, ''), true, CAFE24.SDE_SHOP_NUM); } try { var sPlusMinusSign = (sPriceTxt.toString()).substr(0, 1); if (sPlusMinusSign === '-' || sPlusMinusSign === '+') { sPriceTxt = (sPriceTxt.toString()).substr(1); return sPlusMinusSign + aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1]; } else { return aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1]; } } catch (e) { return aCurrencySymbol[0] + sPriceTxt + aCurrencySymbol[1]; } }};CAFE24.CURRENCY_INFO = {getOriginReferenceCurrency : function() {return 'SGD'},getCurrencyList : function(sCurrencyCode) { var aCurrencyList = {"JPY":{"currency_symbol":"¥","decimal_place":0,"round_method_type":"F"},"VND":{"currency_symbol":"₫","decimal_place":0,"round_method_type":"F"},"PHP":{"currency_symbol":"₱","decimal_place":2,"round_method_type":"R"},"USD":{"currency_symbol":"$","decimal_place":2,"round_method_type":"R"},"CNY":{"currency_symbol":"¥","decimal_place":2,"round_method_type":"R"},"TWD":{"currency_symbol":"NT$","decimal_place":0,"round_method_type":"F"},"BRL":{"currency_symbol":"R$","decimal_place":2,"round_method_type":"R"},"EUR":{"currency_symbol":"\u20ac","decimal_place":2,"round_method_type":"R"},"AUD":{"currency_symbol":"A$","decimal_place":2,"round_method_type":"R"},"BHD":{"currency_symbol":".د.ب","decimal_place":3,"round_method_type":"R"},"BDT":{"currency_symbol":"৳","decimal_place":2,"round_method_type":"R"},"GBP":{"currency_symbol":"£","decimal_place":2,"round_method_type":"R"},"CAD":{"currency_symbol":"C$","decimal_place":2,"round_method_type":"R"},"CZK":{"currency_symbol":"Kč","decimal_place":2,"round_method_type":"R"},"DKK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"HKD":{"currency_symbol":"HK$","decimal_place":2,"round_method_type":"R"},"HUF":{"currency_symbol":"Ft","decimal_place":2,"round_method_type":"R"},"INR":{"currency_symbol":"₹","decimal_place":2,"round_method_type":"R"},"IDR":{"currency_symbol":"Rp","decimal_place":0,"round_method_type":"F"},"ILS":{"currency_symbol":"₪","decimal_place":2,"round_method_type":"R"},"JOD":{"currency_symbol":" دينار","decimal_place":3,"round_method_type":"R"},"KWD":{"currency_symbol":"دينار","decimal_place":3,"round_method_type":"R"},"MYR":{"currency_symbol":"RM","decimal_place":2,"round_method_type":"R"},"MXN":{"currency_symbol":"Mex$","decimal_place":2,"round_method_type":"R"},"NZD":{"currency_symbol":"NZ$","decimal_place":2,"round_method_type":"R"},"NOK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"PKR":{"currency_symbol":"₨","decimal_place":2,"round_method_type":"R"},"PLN":{"currency_symbol":"z\u0142","decimal_place":2,"round_method_type":"R"},"RUB":{"currency_symbol":"\u0440\u0443\u0431","decimal_place":2,"round_method_type":"R"},"SAR":{"currency_symbol":"﷼","decimal_place":2,"round_method_type":"R"},"SGD":{"currency_symbol":"S$","decimal_place":2,"round_method_type":"R"},"ZAR":{"currency_symbol":"R","decimal_place":2,"round_method_type":"R"},"SEK":{"currency_symbol":"kr","decimal_place":2,"round_method_type":"R"},"CHF":{"currency_symbol":"Fr","decimal_place":2,"round_method_type":"R"},"THB":{"currency_symbol":"฿","decimal_place":2,"round_method_type":"R"},"TRY":{"currency_symbol":"TL","decimal_place":2,"round_method_type":"R"},"AED":{"currency_symbol":"فلس","decimal_place":2,"round_method_type":"R"}}; return aCurrencyList[sCurrencyCode] },isUseReferenceCurrency : function() {return false }};CAFE24.COMMON_UTIL = {convertSslForString : function(sString) { return sString.replace(/http:/gi, '');},convertSslForHtml : function(sHtml) { return sHtml.replace(/((?:src|href)\s*=\s*['"])http:(\/\/(?:[a-z0-9\-_\.]+)\/)/ig, '$1$2');},getProtocol : function() { return 'https'; },moveSsl : function() { if (CAFE24.COMMON_UTIL.getProtocol() === 'http') { var oLocation = jQuery(window.location); var sUrl = 'https://' + oLocation.attr('host') + oLocation.attr('pathname') + oLocation.attr('search'); window.location.replace(sUrl); } },setEcCookie : function(sKey, sValue, iExpire) {var exdate = new Date();exdate.setDate(exdate.getDate() + iExpire);var setValue = escape(sValue) + "; domain=." + CAFE24.GLOBAL_INFO.getBaseDomain() + "; path=/;expires=" + exdate.toUTCString();document.cookie = sKey + "=" + setValue;}};CAFE24.SHOP_LIB_INFO = {getBankInfo : function() { var oBankInfo = ""; $.ajax({ type: "GET", url: "/exec/front/Shop/Bankinfo", dataType: "json", async: false, success: function(oResponse) { oBankInfo = oResponse; } }); return oBankInfo; }}; var EC_SDE_SHOP_NUM = CAFE24.SDE_SHOP_NUM; var SHOP = CAFE24.getDeprecatedNamespace('SHOP'); var EC_COMMON_UTIL = CAFE24.getDeprecatedNamespace('EC_COMMON_UTIL'); var EC_SHOP_LIB_INFO = CAFE24.getDeprecatedNamespace('EC_SHOP_LIB_INFO'); var EC_CURRENCY_INFO = CAFE24.getDeprecatedNamespace('EC_CURRENCY_INFO'); CAFE24.ROOT_DOMAIN = "cafe24.com"; CAFE24.API_DOMAIN = "cafe24api.com"; CAFE24.TRANSLATE_LOG_STATUS = "F"; CAFE24.GLOBAL_INFO = (function() { var oData = {"base_domain":"vctmall.cafe24.com","root_domain":"cafe24.com","api_domain":"cafe24api.com","is_global":false,"is_global_standard":false,"country_code":"KR","language_code":"ko_KR","admin_language_code":"ko_KR"}; return { getBaseDomain: function() { return oData['base_domain']; }, getRootDomain: function() { return oData['root_domain']; }, getApiDomain: function() { return oData['api_domain']; }, isGlobal: function() { return oData['is_global']; }, isGlobalStandard: function() { return oData['is_global_standard']; }, getCountryCode: function() { return oData['country_code']; }, getLanguageCode: function() { return oData['language_code']; }, getAdminLanguageCode: function() { return oData['admin_language_code']; } }; })(); var EC_ROOT_DOMAIN = CAFE24.ROOT_DOMAIN; var EC_API_DOMAIN = CAFE24.API_DOMAIN; var EC_TRANSLATE_LOG_STATUS = CAFE24.TRANSLATE_LOG_STATUS; var EC_GLOBAL_INFO = CAFE24.getDeprecatedNamespace('EC_GLOBAL_INFO'); CAFE24.AVAILABLE_LANGUAGE = ["ko_KR","zh_CN","en_US","zh_TW","es_ES","pt_PT","vi_VN","ja_JP","en_PH"]; CAFE24.AVAILABLE_LANGUAGE_CODES = {"ko_KR":"KOR","zh_CN":"CHN","en_US":"ENG","zh_TW":"TWN","es_ES":"ESP","pt_PT":"PRT","vi_VN":"VNM","ja_JP":"JPN","en_PH":"PHL"}; var EC_AVAILABLE_LANGUAGE = CAFE24.AVAILABLE_LANGUAGE; var EC_AVAILABLE_LANGUAGE_CODES = CAFE24.AVAILABLE_LANGUAGE_CODES; CAFE24.GLOBAL_PRODUCT_LANGUAGE_CODES = { sClearanceCategoryCode: '', sManualLink: '//support.cafe24.com/hc/ko/articles/7739013909529', sHsCodePopupLink: 'https://www.wcotradetools.org/en/harmonized-system', aCustomRegex: '"PHL" : "^[0-9]{8}[A-Z]?$"', sCountryCodeData: 'kor', sEnglishExampleURlForGlobal: '', aReverseAddressCountryCode: ["VNM","PHL"], aSizeGuideCountryAlign: '["US","UK","EU","KR","JP","CN"]', aIsSupportTran: ["ja_JP","zh_CN","zh_TW","en_US","vi_VN","en_PH","pt_PT","es_ES"] }; var EC_GLOBAL_PRODUCT_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_PRODUCT_LANGUAGE_CODES'); CAFE24.GLOBAL_ORDER_LANGUAGE_CODES = { aModifyOrderLanguage: {"KR":"ko_KR","JP":"ja_JP","CN":"zh_CN","TW":"zh_TW","VN":"vi_VN","PH":"en_PH"}, aUseIdCardKeyCountry: ["CN","TW"], aLanguageWithCountryCode: {"zh_CN":["CN","CHN","HK","HNK"],"ja_JP":["JP","JPN"],"zh_TW":["TW","TWN"],"ko_KR":["KR","KOR"],"vi_VN":["VN","VNM"],"en_PH":["PH","PHL"]}, aCheckDisplayRequiredIcon: ["ja_JP","zh_CN","zh_TW","en_US","vi_VN","en_PH"], aSetReceiverName: {"zh_CN":{"sCountry":"CN","bUseLastName":true},"zh_TW":{"sCountry":"TW","bUseLastName":false},"ja_JP":{"sCountry":"JP","bUseLastName":true}}, aSetDeferPaymethodLanguage: {"ja_JP":"\uc77c\ubcf8","zh_CN":"\uc911\uad6d"}, aUseDeferPaymethod: ["ja_JP","zh_CN"], aCheckShippingCompanyAndPaymethod: ["ja_JP","zh_CN"], aSetDeferPaymethodLanguageForShipping: {"ja_JP":"\u65e5\u672c","zh_CN":"\uc911\uad6d"}, aCheckStoreByPaymethod: ["ja_JP","zh_CN"], aCheckIsEmailRequiredForJs: ["en_US","zh_CN","zh_TW","ja_JP","vi_VN","en_PH"], aSetIdCardKeyCountryLanguage: {"CN":"\uc911\uad6d\uc758","TW":"\ub300\ub9cc\uc758"}, aReverseGlobalAddress: ["en_PH","vi_VN","PHL","VNM","VN","PH"], aNoCheckZipCode: ["KOR","JPN"], aNotPostCodeAPICountryList: ["en_US","es_ES","pt_PT","en_PH"], aEnableSearchExchangeAddr: ["KR","JP","CN","VN","TW","PH"], aDuplicatedBaseAddr: ["TW","JP"], aReverseAddressCountryCode: ["VN","PH"], aCheckZipCode: ["PHL","en_PH","PH"] }; var EC_GLOBAL_ORDER_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_ORDER_LANGUAGE_CODES'); CAFE24.GLOBAL_MEMBER_LANGUAGE_CODES = { sAdminWebEditorLanguageCode: 'ko' , oNotAvailDecimalPointLanguages: ["ko_KR","ja_JP","zh_TW","vi_VN"], oAddressCountryCode: {"KOR":"ko_KR","JPN":"ja_JP","CHN":"zh_CN","TWN":"zh_TW","VNM":"vi_VN","PHL":"en_PH"}, }; var EC_GLOBAL_MEMBER_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_MEMBER_LANGUAGE_CODES'); CAFE24.GLOBAL_BOARD_LANGUAGE_CODES = { bUseLegacyBoard: true }; var EC_GLOBAL_BOARD_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_BOARD_LANGUAGE_CODES'); CAFE24.GLOBAL_MALL_LANGUAGE_CODES = { oDesign: { oDesignAddReplaceInfo: {"group_id":"SKIN.ADD.ADMIN.DESIGNDETAIL","replacement":{"KR":"KOREAN","US":"ENGLISH","JP":"JAPANESE","CN":"SIMPLIFIED.CHINESE","TW":"TRADITIONAL.CHINESE","ES":"SPANISH","PT":"PORTUGUESE","PH":"ENGLISH"}}, oDesignDetailLanguageCountryMap: {"KR":"ko_KR","JP":"ja_JP","CN":"zh_CN","TW":"zh_TW","US":"en_US","ES":"es_ES","PT":"pt_PT","PH":"en_PH"}, oSmartDesignSwitchTipLink: {"edibot":{"img":"\/\/img.echosting.cafe24.com\/smartAdmin\/img\/design\/img_editor_dnd.png","link":"\/\/ecsupport.cafe24.com\/board\/free\/list.html?board_act=list&board_no=12&category_no=9&cate_no=9"},"smart":{"img":"\/\/img.echosting.cafe24.com\/smartAdmin\/img\/design\/ko_KR\/img_editor_smart.png","link":"\/\/sdsupport.cafe24.com"}}, oSmartDesignDecoShopList: ["ko_KR","ja_JP","zh_CN","en_US","zh_TW","es_ES","pt_PT"], oSmartDesignDecoMultilingual: {"list":{"ko_KR":"KOREAN","en_US":"ENGLISH","ja_JP":"JAPANESE","zh_CN":"SIMPLIFIED.CHINESE","zh_TW":"TRADITIONAL.CHINESE","es_ES":"SPANISH","pt_PT":"PORTUGUESE","vi_VN":"VIETNAMESE"},"group_id":"EDITOR.LAYER.EDITING.DECO"}, aSmartDesignModuleShopList: ["ko_KR","ja_JP","zh_CN","en_US","zh_TW","es_ES","pt_PT"] }, oStore: { oMultiShopCurrencyInfo: {"en_US":{"currency":"USD"},"zh_CN":{"currency":"USD","sub_currency":"CNY"},"ja_JP":{"currency":"JPY"},"zh_TW":{"currency":"TWD"},"es_ES":{"currency":"EUR"},"pt_PT":{"currency":"EUR"},"ko_KR":{"currency":"KRW"},"vi_VN":{"currency":"VND"},"en_PH":{"currency":"PHP"}}, oBrowserRedirectLanguage: {"ko":{"primary":"ko_KR","secondary":"en_US"},"en":{"detail":{"en-ph":{"primary":"en_PH","secondary":"en_US"},"en-us":{"primary":"en_US","secondary":"es_ES"},"default":{"primary":"en_US","secondary":"es_ES"}}},"ja":{"primary":"ja_JP","secondary":"en_US"},"zh":{"detail":{"zh-cn":{"primary":"zh_CN","secondary":"en_US"},"zh-tw":{"primary":"zh_TW","secondary":"zh_CN"},"default":{"primary":"en_US","secondary":"ko_KR"}}},"es":{"primary":"es_ES","secondary":"en_US"},"pt":{"primary":"pt_PT","secondary":"en_US"},"vi":{"primary":"vi_VN","secondary":"en_US"},"default":{"primary":"en_US","secondary":"ko_KR"}}, aChangeableLanguages: ["en_US","ja_JP","ko_KR"], aNoZipCodeLanguage: ["ko_KR","ja_JP"] }, oMobile: { sSmartWebAppFaqUrl: "https://support.cafe24.com/hc/ko/articles/8466586607641", sAmpFaqUrl: "https://ecsupport.cafe24.com/board/free/read.html?no=1864&board_no=5&category_no=13&cate_no=13&category_no=13&category_no=13", }, oPromotion: { bQrCodeAvailable: true, bSnsMarketingAvailable: true }, oShippingReverseAddressLanguage: ["vi_VN","en_PH"] , oGlobalStandardSwitchHelpCodeLink: {"SH.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/SH.DS.html"},"PR.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/PR.DS.html"},"OR.SM.BO":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/OR.SM.BO.html"},"DE.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/DE.DS.html"},"MB.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/MB.DS.html"},"PM.DS":{"link":"\/\/serviceguide.cafe24shop.com\/en_PH\/PM.DS.html"}}, getAdminMainLocaleLanguage: function(sSkinLocaleCode) { var oLocaleData = []; var locale = ""; var shopLangName = ""; if (sSkinLocaleCode == "US") { locale = "en_US"; shopLangName = "ENGLISH"; } else if (sSkinLocaleCode == "JP") { locale = "ja_JP"; shopLangName = "JAPANESE"; } else if (sSkinLocaleCode == "CN") { locale = "zh_CN"; shopLangName = "SIMPLIFIED.CHINESE"; } else if (sSkinLocaleCode == "TW") { locale = "zh_TW"; shopLangName = "TRADITIONAL.CHINESE"; } else if (sSkinLocaleCode == "ES") { locale = "es_ES"; shopLangName = "SPANISH"; } else if (sSkinLocaleCode == "PT") { locale = "pt_PT"; shopLangName = "PORTUGUESE"; } else if (sSkinLocaleCode == "VN") { locale = "vi_VN"; shopLangName = "VIETNAMESE"; } else if(sSkinLocaleCode == "PH") { locale = "en_PH"; shopLangName = "ENGLISH.PH"; } oLocaleData["locale"] = locale; oLocaleData["shopLangName"] = shopLangName; return oLocaleData; } }; var EC_GLOBAL_MALL_LANGUAGE_CODES = CAFE24.getDeprecatedNamespace('EC_GLOBAL_MALL_LANGUAGE_CODES'); CAFE24.GLOBAL_DATETIME_INFO = { oConstants: {"STANDARD_DATE_REGEX":"\/([12]\\d{3}-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01]))\/","IN_ZONE":"inZone","OUT_ZONE":"outZone","IN_FORMAT":"inFormat","OUT_FORMAT":"outFormat","IN_DATE_FORMAT":"inDateFormat","IN_TIME_FORMAT":"inTimeFormat","OUT_DATE_FORMAT":"outDateFormat","OUT_TIME_FORMAT":"outTimeFormat","IN_FORMAT_DATE_ONLY":1,"IN_FORMAT_TIME_ONLY":2,"IN_FORMAT_ALL":3,"OUT_FORMAT_DATE_ONLY":1,"OUT_FORMAT_TIME_ONLY":2,"OUT_FORMAT_ALL":3,"DATE_ONLY":"YYYY-MM-DD","TIME_ONLY":"HH:mm:ss","FULL_TIME":"YYYY-MM-DD HH:mm:ss","ISO_8601":"YYYY-MM-DD[T]HH:mm:ssZ","YEAR_ONLY":"YYYY","MONTH_ONLY":"MM","DAY_ONLY":"DD","WEEK_ONLY":"e","TIME_H_I_ONLY":"HH:mm","TIME_HOUR_ONLY":"HH","TIME_MINUTE_ONLY":"mm","POSTGRE_FULL_TIME":"YYYY-MM-DD HH24:MI:SS","POSTGRE_TIME_ONLY":" HH24:MI:SS","MICRO_SECOND_ONLY":"u","SEOUL":"Asia\/Seoul","TOKYO":"Asia\/Tokyo","SHANGHAI":"Asia\/Shanghai","TAIPEI":"Asia\/Taipei","HANOI":"Asia\/Bangkok","LOS_ANGELES":"America\/Los_Angeles","LISBON":"Europe\/Lisbon","MADRID":"Europe\/Madrid","SINGAPORE":"Asia\/Singapore","UTC":"Etc\/UTC","MAX_DATETIME":"9999-12-31 23:59:59"}, oOptions: {"inZone":"Asia\/Seoul","inFormat":"YYYY-MM-DD HH:mm:ss","inDateFormat":"YYYY-MM-DD","inTimeFormat":"HH:mm:ss","outZone":"Asia\/Seoul","outFormat":"YYYY-MM-DD HH:mm:ss","outDateFormat":"YYYY-MM-DD","outTimeFormat":"HH:mm:ss"}, oPolicies: {"shop":{"outZone":"Asia\/Seoul","outFormat":"YYYY-MM-DD HH:mm:ss","outDateFormat":"YYYY-MM-DD","outTimeFormat":"HH:mm:ss"}}, sOverrideTimezone: '', sMomentNamespace: 'EC_GLOBAL_MOMENT' }; CAFE24.FRONT_JS_CONFIG_MANAGE = {"sSmartBannerScriptUrl":"https:\/\/app4you.cafe24.com\/SmartBanner\/tunnel\/scriptTags?vs=1563164396689206","sMallId":"vctmall","sDefaultAppDomain":"https:\/\/app4you.cafe24.com","sWebLogOffFlag":"F"}; var EC_FRONT_JS_CONFIG_MANAGE = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_MANAGE'); CAFE24.FRONT_JS_CONFIG_MEMBER = {"sAuthUrl":"https:\/\/ipin-ec.cafe24.com\/certify\/v1\/?action=auth"}; var EC_FRONT_JS_CONFIG_MEMBER = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_MEMBER'); CAFE24.FRONT_JS_CONFIG_SHOP = {"search_period":[],"calendar_config":{"maxDate":"2027-03-29","locale":"ko"},"aProductPurchaseInfo_12864":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_768":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_770":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_771":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_775":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_5039":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_1794":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_8801":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_608":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_402":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_444":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_442":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_441":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_11978":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_13322":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_4257":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_849":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_839":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_5279":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_1628":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_10143":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_6653":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_6637":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_632":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_603":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_658":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_599":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_13464":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_7786":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_898":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_14377":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_14378":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_1241":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_15330":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_1003":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_5276":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_16543":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_1428":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_2368":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_1423":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12440":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12106":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_5187":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_1014":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_927":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_5259":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_1509":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_14985":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_14989":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_5401":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_5366":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_465":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_2383":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_814":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_4821":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_1733":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_23857":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_12162":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_5970":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"aProductPurchaseInfo_764":{"bIsSuccess":true,"sMessage":"","bReplaceLoginPage":false,"bIsDisplayPurchaseButton":true},"recent_count":2,"adult19BaseTinyImage":"vctmall_adult.png","adult19Warning":"F","cdnUrl":""}; var EC_FRONT_JS_CONFIG_SHOP = CAFE24.getDeprecatedNamespace('EC_FRONT_JS_CONFIG_SHOP'); typeof window.CAFE24 === "undefined" && (window.CAFE24 = {}); CAFE24.BOARD = {"config_1":{"board_no":1,"use_block":"F","use_report":"F"}}; CAFE24.FRONTEND = {"FW_MANIFEST_CACHE_REVISION":2503251390,"IS_WEB_VIEW":"F"}; CAFE24.ROUTE = {"is_mobile":false,"is_need_route":false,"language_code":"ZZ","path":{"origin":"\/","result":"\/","prefix":""},"shop_no":0,"skin_code":"default","support_language_list":{"ar":"ar_EG","ar-EG":"ar_EG","de":"de_DE","de-DE":"de_DE","en":"en_US","en-IN":"en_IN","en-PH":"en_PH","en-US":"en_US","es":"es_ES","es-ES":"es_ES","hi":"hi_IN","hi-IN":"hi_IN","id":"id_ID","id-ID":"id_ID","it":"it_IT","it-IT":"it_IT","ja":"ja_JP","ja-JP":"ja_JP","ko":"ko_KR","ko-KR":"ko_KR","ms":"ms_MY","ms-MY":"ms_MY","pt":"pt_PT","pt-PT":"pt_PT","ru":"ru_RU","ru-RU":"ru_RU","th":"th_TH","th-TH":"th_TH","tr":"tr_TR","tr-TR":"tr_TR","vi":"vi_VN","vi-VN":"vi_VN","zh":"zh_CN","zh-CN":"zh_CN","zh-HK":"zh_HK","zh-MO":"zh_MO","zh-SG":"zh_SG","zh-TW":"zh_TW"}}; </script> <link rel="stylesheet" type="text/css" href="//img.echosting.cafe24.com/editors/froala/css/froala_style_ec.min.css?vs=2503251390" charset="utf-8"/> <link rel="stylesheet" type="text/css" href="/ind-script/optimizer.php?filename=nZKxDQIxDEX7KC1zGBAsABsgMYDjMxCdE0dOToLtOSqgOAnSPvm93xhumhg2W4NiejVMYFx1MmKgWuFimhuQpqTZz2AFv9wzuaoytajZBb13ilNrvaOCD7Y-tWEQ7lS1OImZXcCcF_clBjjHgjTC6bN3ROE8oMHO7_0aLoKtRBqXMlgKHBRt-K7M2IcX9kGUxl7ZuKi1_-z3lzwB&type=css&k=180ea7d06ac06d42f6c8c3e2f844b8c8624af294&t=1726130154" /><link rel="stylesheet" type="text/css" href="/ind-script/optimizer_user.php?filename=tdSxbsQgDADQvXTtd_iSVFXnqkOH_oRx3AQFcIoh0v19c9dTh44HmUBIPIxtgFkCA5MpyklhoxzQe1iL9Y7MnIMHHdmMrG6KoIuL3QlIFQK6-LhPnuBe4f3NZLRDb7oWTm-GasZijJye65wgY_EMa9pHyuCd5kuuzMsxbHcM2x_DDsewlSWbGUdOTULzeJayRyaTZFmrOzLi5obXBi-EM3WnRs1yu2MoPjudZf3cy9ASVsZE80eDovxlsGV4hJknSec687s4WuqIL5HcIEPXz7PyBVmk5aG64f_lWeK273cSV7rfvWEW1dH1EJIQJDYEfxcu4A8&type=css&k=74412110e908783190814c915a37320aa563e966&t=1432613187&user=T" /> <style type="text/css"> </style> <title>### 가치창조기술 온라인 쇼핑몰에 오신 것을 환영합니다! ###</title></head><body id="main"><div id="skipNavigation"> <p><a href="#category">전체상품목록 바로가기</a></p> <p><a href="#contents">본문 바로가기</a></p> </div> <!-- 최상단 숨김 배너 --> <!-------------------------------------------------------------------------------------------------------------------------------------- %%% 최상단 숨김배너 %%% " 9번째줄에서 배경색상 변경이 가능합니다. ---------------------------------------------------------------------------------------------------------------------------------------> <!-- 최상단 숨김배너 --> <style type="text/css"> .DB_etc15 { position:relative; width:100%; z-index:1; text-align:center; background:url('/SkinImg/topNotice_bg.gif') repeat-x center #aed9ec/* 배경색상코드변경 #aed9ec */; } .DB_etc15 .DB_closeBtn { position:absolute; top:20px; right:10px; cursor:pointer; } .DB_etc15 .DB_checkBox { position:absolute; bottom:5px; right:10px; font:11px 돋움; color:#555555; } </style> <div class="DB_etc15"> <!-- 배너이미지 --> <a href="#none"><img src="/SkinImg/topNotice.jpg" alt=""/></a> <span class="DB_checkBox"><input id="d_topBanner_check" type="checkbox" style="vertical-align:-2px"/> 오늘하루 열지않기</span> <span class="DB_closeBtn"><img src="/SkinImg/topNotice_close.png" alt="" title="닫기"/></span> </div><!-- //최상단 숨김배너 --> <!-- 좌측하단 팝업 배너(메인페이지에만 노출됩니다.) 골뱅이 제어하여 주석처리 --> <!-- import(/popup_bnr.html)--> <div id="wrap_bg"> <div id="wrap"> <div id="header"> <h1 class="xans-element- xans-layout xans-layout-logotop "><a href="/index.html"><img src="/web/upload/logo/f60441369c54f738143ad722a6f37eed_14_top.jpg" alt="가치창조기술"/></a> </h1> <!-- 백설햄 비엔나 --> <div class="header_bnr"> <a href="/product/detail.html?product_no=540"><img src="/SkinImg/header_bnr_01.jpg" alt=""/></a> </div><!-- //백설햄 비엔나 --> <div class="inner"> <div id="DB_navi38_1"> <ul><!-- 로그인전 --><li class="xans-element- xans-layout xans-layout-statelogoff DB_main "><a href="/member/login.html" class="log"><strong>로그인</strong></a> </li> <li id="DB_etc10" class="xans-element- xans-layout xans-layout-statelogoff DB_main "><a href="/member/join.html">회원가입<!-- 움직이는 적립금 아이콘 --><div class="DB_etc10_1"><img src="/SkinImg/moveing_ico.png" alt=""/></div> <!-- //움직이는 적립금 아이콘 --></a> </li> <!-- //로그인전 --> <!-- 로그인후 --> <!-- //로그인후 --> <li class="DB_main"><a href="/order/basket.html?page=1">장바구니 </a></li> <li class="DB_main"><a href="/myshop/order/list.html">주문조회</a> <div class="DB_sub s4"> <ul><li><a href="/myshop/order/list.html">주문내역</a></li> <li><a href="https://www.doortodoor.co.kr/parcel/pa_004.jsp" target="_blank">배송조회</a></li> </ul></div> </li> <li class="DB_main"><a href="/member/modify.html"><strong>마이샵</strong></a> <div class="DB_sub s5"> <ul><li><a href="/myshop/mileage/historyList.html">적립금</a></li> <li><a href="/myshop/coupon/coupon.html">쿠폰관리</a></li> <li><a href="/myshop/board_list.html">내게시물</a></li> </ul></div> </li> <li class="DB_main"><a href="/board/free/customer_center.html">고객센터</a> <div class="DB_sub s6"> <ul><li><a href="/board/product/list.html?board_no=6">제품문의</a></li> <li><a href="/board/product/list.html?board_no=4">제품리뷰</a></li> <li><a href="mailto:cs@vctec.co.kr">메일쓰기</a></li> <li><a href="/board/free/list.html?board_no=1">공지사항</a></li> <li><a href="/board/gallery/list.html?board_no=2">이벤트</a></li> </ul></div> </li> </ul></div> <!-------------------------------------------------------------------------------------------------------------------------------------- %%% 즐겨찾기 / 바로가기 설정 %%% " 디자인관리 > 디자인 기능설정 > 쇼핑몰 알리미 ---------------------------------------------------------------------------------------------------------------------------------------> <div class="link"> <a href="/link/bookmark.html" target="_blank" onclick="winPop(this.href); return false;" class="xans-element- xans-layout xans-layout-bookmark first "><span>즐겨찾기</span> </a> <a href="/link/shortcut.html" target="_blank" onclick="winPop(this.href); return false;" class="xans-element- xans-layout xans-layout-shortcut ">바로가기 </a> </div> <!-------------------------------------------------------------------------------------------------------------------------------------- %%% 검색키워드 / 인기검색어 설정 %%% " 검색키워드 - 프로모션 > 홍보배너/문구관리 > 상품검색 키워드 설정 " 인기검색어 - 상점관리 > 운영관리 > 상품검색조건 설정 > 인기검색어 ---------------------------------------------------------------------------------------------------------------------------------------> <form id="searchBarForm" name="" action="/product/search.html" method="get" target="_self" enctype="multipart/form-data" > <input id="banner_action" name="banner_action" value="" type="hidden" /><div class="xans-element- xans-layout xans-layout-searchheader "><!-- $product_page=/product/detail.html $category_page=/product/list.html --> <div class="xans-element- xans-search xans-search-hotkeyword"><ul> <li class="first"><img src="/SkinImg/search_tit.gif"/></li> <li class="first xans-record-"><a href="/product/search.html?keyword=Click">Click</a></li> <li class="xans-record-"><a href="/product/search.html?keyword=FTDI">FTDI</a></li> <li class="xans-record-"><a href="/product/search.html?keyword=BLE">BLE</a></li> <li class="xans-record-"><a href="/product/search.html?keyword=GPIO">GPIO</a></li> <li class="xans-record-"><a href="/product/search.html?keyword=센서">센서</a></li> </ul> </div> <fieldset> <legend>검색</legend> <input id="keyword" name="keyword" fw-filter="" fw-label="검색어" fw-msg="" class="inputTypeText" placeholder="" onmousedown="SEARCH_BANNER.clickSearchForm(this)" value="" type="text" /><input type="image" src="/SkinImg/main_search_btn.gif" alt="검색" onclick="SEARCH_BANNER.submitSearchBanner(this); return false;"/> </fieldset> </div> </form> </div> <!-------------------------------------------------------------------------------------------------------------------------------------- %%% DB_navi38_2 메인 메뉴 %%% " 수정방법 ( 링크참조 - http://blog.naver.com/webgood77/220167192534 ) " 해당 디자인은 HTML구조로 되어있어 수정전 반드시 백업을 해놓으시기 바랍니다. ---------------------------------------------------------------------------------------------------------------------------------------> <div id="DB_navi38"> <ul><li class="DB_main first"><a href="#none"><img src="/SkinImg/nav_01_off.png" alt="전체카테고리"/></a> <!-- 전체 카테고리 --> <div class="DB_sub s1"> <div class="menu_section"> <h4><a href="/product/list.html?cate_no=60">개발보드/개발툴</a></h4> <ul><li><a href="/product/list.html?cate_no=74">오픈소스하드웨어</a></li> <li><a href="/product/list.html?cate_no=70">MCU 개발보드</a></li> <li><a href="/product/list.html?cate_no=65">오픈소스 쉴드/모듈</a></li> <li><a href="/product/list.html?cate_no=68">라즈베리파이/인공지능</a></li> <li><a href="/product/list.html?cate_no=69">오픈소스 개발플랫폼</a></li> <li><a href="/product/list.html?cate_no=67">컴파일러/소프트웨어</a></li> <li><a href="/product/list.html?cate_no=73">프로그래머/디버거</a></li> <li><a href="/product/list.html?cate_no=71">개발키트</a></li> <li><a href="/product/list.html?cate_no=157">FPGA 개발보드</a></li> </ul></div> <div class="menu_section"> <h4><a href="/product/list.html?cate_no=140">센서/통신/사운드</a></h4> <ul><li><a href="/product/list.html?cate_no=145">센서류</a></li> <li><a href="/product/list.html?cate_no=161">통신모듈/안테나</a></li> <li><a href="/product/list.html?cate_no=164">사운드/버저/스피커</a></li> </ul></div> <div class="menu_section"> <h4><a href="/product/list.html?cate_no=63">제어/전원/기타</a></h4> <ul><li><a href="/product/list.html?cate_no=117">IO제어/RTC/릴레이</a></li> <li><a href="/product/list.html?cate_no=95">전원/배터리/어댑터</a></li> <li><a href="/product/list.html?cate_no=101">저장모듈/메모리카드</a></li> <li><a href="/product/list.html?cate_no=241">기타모듈</a></li> </ul></div> <div class="menu_section"> <h4><a href="/product/list.html?cate_no=61">부품/프로토타이핑</a></h4> <ul><li><a href="/product/list.html?cate_no=78">부품/브레드보드</a></li> <li><a href="/product/list.html?cate_no=81">핀헤더/점퍼/케이블</a></li> <li><a href="/product/list.html?cate_no=82">커넥터/마운팅/케이스</a></li> <li><a href="/product/list.html?cate_no=83">방열판/기타</a></li> <li><a href="/product/list.html?cate_no=242">전도성 펜/실/천</a></li> </ul></div> <div class="menu_section"> <h4><a href="/product/list.html?cate_no=156">디스플레이/LED</a></h4> <ul><li><a href="/product/list.html?cate_no=200">LED 제품류</a></li> <li><a href="/product/list.html?cate_no=201">LCD 제품류</a></li> <li><a href="/product/list.html?cate_no=202">TFT LCD 제품류</a></li> <li><a href="/product/list.html?cate_no=199">스마트 디스플레이</a></li> <li><a href="/product/list.html?cate_no=231">그래픽 컨트롤러</a></li> <li><a href="/product/list.html?cate_no=210">EL Wire 제품류</a></li> </ul></div> <div class="menu_section"> <h4><a href="/product/list.html?cate_no=125">모션/로보틱스</a></h4> <ul><li><a href="/product/list.html?cate_no=204">모터 컨트롤/드라이버</a></li> <li><a href="/product/list.html?cate_no=203">모터/서보/액추에이터</a></li> <li><a href="/product/list.html?cate_no=205">근육 와이어</a></li> <li><a href="/product/list.html?cate_no=206">인코더 </a></li> <li><a href="/product/list.html?cate_no=207">로보틱스</a></li> <li><a href="/product/list.html?cate_no=208">솔레노이드/펌프</a></li> </ul></div> <div class="menu_section"> <h4><a href="/product/list.html?cate_no=120">계측기/분석기/전원</a></h4> <ul><li><a href="/product/list.html?cate_no=153">로직/프로토콜 분석기</a></li> <li><a href="/product/list.html?cate_no=239">멀티미터 </a></li> <li><a href="/product/list.html?cate_no=152">부품분석/테스터기</a></li> <li><a href="/product/list.html?cate_no=193">아날로그 측정툴</a></li> <li><a href="/product/list.html?cate_no=194">신호생성기</a></li> <li><a href="/product/list.html?cate_no=196">측정기/메터기</a></li> <li><a href="/product/list.html?cate_no=198">오실로스코프</a></li> <li><a href="/product/list.html?cate_no=189">전원공급장치</a></li> <li><a href="/product/list.html?cate_no=226">컨버터/프로브/기타</a></li> </ul></div> <div class="menu_section"> <h4><a href="/product/list.html?cate_no=116">전자 공구류</a></h4> <ul><li><a href="/product/list.html?cate_no=184">인두기</a></li> <li><a href="/product/list.html?cate_no=186">인두기/실납 거치대</a></li> <li><a href="/product/list.html?cate_no=185">납땜제거기/클리너</a></li> <li><a href="/product/list.html?cate_no=187">실납/납땜용 화학제</a></li> <li><a href="/product/list.html?cate_no=190">니퍼/핀셋/확대경</a></li> <li><a href="/product/list.html?cate_no=191">IC 제거기/보안경/기타</a></li> <li><a href="/product/list.html?cate_no=188">정전기 방지기</a></li> <li><a href="/product/list.html?cate_no=238">공구가방</a></li> <li><a href="/product/list.html?cate_no=234">측정/캘리퍼</a></li> </ul></div> <div class="menu_section"> <h4><a href="/product/list.html?cate_no=45">개인결제</a></h4> <ul><li>결제전 반드시 고객센터와 상담해주세요</li> </ul></div> <div class="menu_section"> <h4><a href="/board/free/customer_center.html?board_no=3">고객센터</a></h4> <ul><li><a href="/order/basket.html">장바구니</a></li> <li><a href="/myshop/wish_list.html">관심상품</a></li> <li><a href="/myshop/order/list.html">주문내역조회</a></li> <li><a href="/myshop/mileage/historyList.html">적립금</a></li> <li><a href="/myshop/deposits/historyList.html">예치금</a></li> <li><a href="/myshop/coupon/coupon.html">쿠폰관리</a></li> <li><a href="/myshop/addr/list.html">배송 주소록 관리</a></li> <li><a href="/myshop/board_list.html">게시물 관리</a></li> <li><a href="/member/modify.html">회원정보수정</a></li> </ul></div> <div class="menu_section"> <h4><a href="/board/free/customer_center.html?board_no=3">게시판</a></h4> <ul><li><a href="/board/free/list.html?board_no=1">공지사항</a></li> <li><a href="/board/free/list.html?board_no=2">이벤트</a></li> <li><a href="/board/free/list.html?board_no=3">FAQ-자주하는질문</a></li> <li><a href="/board/product/list.html?board_no=4">제품리뷰</a></li> <li><a href="/board/product/list.html?board_no=6">제품문의</a></li> <li><a href="/board/gallery/list.html?board_no=8">자료실</a></li> </ul></div> <div class="menu_section"> <h4><a href="/board/free/customer_center.html?board_no=3">쇼핑몰메뉴</a></h4> <ul><li><a href="/shopinfo/company.html">회사소개</a></li> <li><a href="/member/agreement.html">이용약관</a></li> <li><a href="/shopinfo/guide.html">쇼핑몰 이용안내</a></li> <li><a href="/member/privacy.html">개인정보취급방침</a></li> <li><a href="/board/free/customer_center.html?board_no=3">고객센터</a></li> </ul></div> </div> </li> <!-------------- <li class="DB_main"><a href="/product/list.html?cate_no=174">베스트상품</a></li> <li class="DB_main"><a href="/product/list.html?cate_no=175">신상품</a></li> <li class="DB_main"><a href="/board/free/read.html?no=18&board_no=1">회원등급제</a></li> <li class="DB_main"><a href="/product/list.html?cate_no=176">소셜코딩 GitHub</a></li> <li class="DB_main"><a href="/board/product/list.html?board_no=6">제품문의</a></li> <li class="DB_main"><a href="/board/product/list.html?board_no=4">임베디드 이야기</a></li> -----------------> <!----가치창조기술에 맞게 링크 수정 ----> <li class="DB_main"><a href="#none">-</a></li> <li class="DB_main"><a href="#none">-</a></li> <li class="DB_main"><a href="#none">-</a></li> <li class="DB_main"><a href="https://github.com/search?utf8=%E2%9C%93&q=arduino" target="_new"> GitHub</a></li> <li class="DB_main"><a href="/board/product/list.html?board_no=6">제품문의</a></li> <li class="DB_main"> <!-- 240125 코멘트처리 <a href="https://blog.naver.com/ubicomputing" target="_new">임베디드 이야기</a> --> <!-- 240125 아래 라인추가 --> <a href="#none">-</a> </li> </ul></div> <div id="category" class="xans-element- xans-layout xans-layout-category"><!-- 상품분류메뉴 --> <div class="postion"> <ul> <li class="xans-record-"><a href="/product/list.html?cate_no=60">개발보드/개발툴</a></li> <li class="xans-record-"><a href="/product/list.html?cate_no=140">센서/통신/사운드</a></li> <li class="xans-record-"><a href="/product/list.html?cate_no=63">제어/전원/기타</a></li> <li class="xans-record-"><a href="/product/list.html?cate_no=61">부품/프로토타이핑</a></li> <li class="xans-record-"><a href="/product/list.html?cate_no=156">디스플레이/LED</a></li> <li class="xans-record-"><a href="/product/list.html?cate_no=125">모션/로보틱스</a></li> <li class="xans-record-"><a href="/product/list.html?cate_no=120">계측기/분석기/전원</a></li> <li class="xans-record-"><a href="/product/list.html?cate_no=116">전자 공구류</a></li> <li class="xans-record-"><a href="/product/list.html?cate_no=167">개인결제</a></li> </ul> </div> <!-- //상품분류메뉴 --> </div> </div><hr class="layout"/><div id="container"> <div id="contents_main"> <!------------------------------------------------------------------------------------------------------------------------------------------ %%%%%%%%%%%%%%%%%%%%%%%% 아래의 글을 꼭 읽어주셔야 쇼핑몰 사용이 가능합니다 %%%%%%%%%%%%%%%%%%%%%%%%% %%% 필독사항!! 꼭 링크확인해주세요!! - http://blog.naver.com/webgood77/220164851068 %%% 스킨 제작에 사용된 모든 소스의 저작권은 [[ 디자인웹굿 ]] 에 있고 프로그램 자작권법을 따릅니다. %%% 버젼 20150107v2.5 -------------------------------------------------------------------------------------------------------------------------------------------> <div class="divClear"> <!-------------------------------------------------------------------------------------------------------------------------------------- %%% DB_tab32_1 메인슬라이드배너 %%% " 배너 이미지의 기본 사이즈는 620x400 픽셀입니다. ---------------------------------------------------------------------------------------------------------------------------------------> <div id="DB_tab32_1" class="DB_tab32_1"> <ul class="DB_imgSet"><li><a href="/product/detail.html?product_no=22309"><img src="/SkinImg/DB_tab32_1/01.jpg" alt=""/></a></li> <li><a href="/product/detail.html?product_no=658"><img src="/SkinImg/DB_tab32_1/02.jpg" alt=""/></a></li> <li><a href="/product/detail.html?product_no=5036"><img src="/SkinImg/DB_tab32_1/03.jpg" alt=""/></a></li> <li><a href="/product/search.html?banner_action=&keyword=%B8%AE%B4%CF%BE%EE+%BC%AD%BA%B8"><img src="/SkinImg/DB_tab32_1/04.jpg" alt=""/></a></li> <li><a href="/product/detail.html?product_no=7637"><img src="/SkinImg/DB_tab32_1/05.jpg" alt=""/></a></li> </ul><div class="DB_arrow"></div> <ul class="DB_menuSet"><li>아두이노 키트</li> <li>EasyPIC Fusion</li> <li>로직 분석기</li> <li>리니어 서보</li> <li>RGB LED 체인</li> </ul><span class="DB_prevBtn"><img src="/SkinImg/arrow_prev.png" alt="이전"/></span> <span class="DB_nextBtn"><img src="/SkinImg/arrow_next.png" alt="다음"/></span> </div> <!-- 전라도 김치 --> <div class="section" style="float:right; margin:0 0 10px;"> <a href="/product/detail.html?product_no=23218"><img src="/SkinImg/main_bnr_01_240508.jpg"/></a> </div><!-- //전라도 김치 --> <!-- 원형 가로 4개 배너 --> <div class="section"> <ul><li><a href="/board/free/list.html?board_no=1"><img src="/SkinImg/main_bnr_0201.gif" alt="공지사항"/></a></li> <li><a href="/board/product/list.html?board_no=4"><img src="/SkinImg/main_bnr_0202.gif" alt="제품리뷰"/></a></li> <li><a href="/board/product/list.html?board_no=6"><img src="/SkinImg/main_bnr_0203.gif" alt="제품문의"/></a></li> <li><a href="/board/free/list.html?board_no=2"><img src="/SkinImg/main_bnr_0204.gif" alt="이벤트"/></a></li> </ul></div> <!-- 삼다수 배너 --> <div class="section"> <a href="/product/detail.html?product_no=1194"><img src="/SkinImg/main_bnr_03.jpg" alt="삼다수"/></a> </div><!-- //삼다수 배너 --> <!-------------------------------------------------------------------------------------------------------------------------------------- %%% DB_tab2_3 탭상품롤링 %%% " 진열타이틀관리 - 상품관리 > 상품표시관리 > 상품진열관리 > 메인분류관리 에서 수정가능합니다. 디자인상 수정은 아래의 HTML상에서 수정해주세요. ---------------------------------------------------------------------------------------------------------------------------------------> <div id="DB_tab2_3" class="DB_tab2_3"> <h4>즐거운 프로토타이핑!</h4> <ul class="DB_menu"><li>아두이노</li> <li>개발툴</li> <li>센서</li> <li>개발보드</li> <li>계측기</li> <li>디스플레이</li> <li>로보틱스</li> </ul><ul class="DB_img"><li> <!-- 추가분류관리7 --> <div class="xans-element- xans-product xans-product-listmain-7 xans-product-listmain xans-product-7 item_list"><!-- $count = 8 --> <ul class="prdList column4"> <li id="anchorBoxId_14411" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="38380"></div> <div class="box"> <a href="/product/detail.html?product_no=14411&cate_no=1&display_group=8" name="anchorBoxName_14411"><img src="//www.vctec.co.kr/web/product/medium/201901/d821cbd5993ba5a432e6fab382963f10.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=14411&cate_no=1&display_group=8"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">LoRa SAMD21 아두이노 IoT 보드 -915MHz (SparkFun Pro RF - LoRa, 915MHz (SAMD21))</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-7 xans-product-listitem xans-product-7"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">38,380원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">LoRa SAMD21 아두이노 IoT 보드입니다.</span></li> </ul> <div class="status"> <div class="icon"><img src="//img.echosting.cafe24.com/design/common/icon_sellout.gif" class="icon_img" alt="품절" /> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_12864" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="14900"></div> <div class="box"> <a href="/product/detail.html?product_no=12864&cate_no=1&display_group=8" name="anchorBoxName_12864"><img src="//www.vctec.co.kr/web/product/medium/201804/12864_shop1_404503.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=12864&cate_no=1&display_group=8"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">아두이노 프로 미니 5V -16Mhz (Arduino Pro Mini 5V -16Mhz)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-7 xans-product-listitem xans-product-7"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">14,900원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">아두이노 프로 미니입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_768" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="35000"></div> <div class="box"> <a href="/product/detail.html?product_no=768&cate_no=1&display_group=8" name="anchorBoxName_768"><img src="//www.vctec.co.kr/web/product/medium/202008/340ffad6df705cc1b26d7479e056416e.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=768&cate_no=1&display_group=8"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">아두이노 우노 Rev3 (Arduino Uno Rev3)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-7 xans-product-listitem xans-product-7"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">35,000원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">방대한 개발자 리소스를 가진 Must-Have 아이템</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_770" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="105000"></div> <div class="box"> <a href="/product/detail.html?product_no=770&cate_no=1&display_group=8" name="anchorBoxName_770"><img src="//www.vctec.co.kr/web/product/medium/202008/86fde4e96e66d715f5670ae74d162d35.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=770&cate_no=1&display_group=8"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">아두이노 두에 (Arduino Due)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-7 xans-product-listitem xans-product-7"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">105,000원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">우노의 8비트 컴퓨팅 파워에 지치셨다면 두에의 32비트 파워를 경험하여 보세요</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_771" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="80900"></div> <div class="box"> <a href="/product/detail.html?product_no=771&cate_no=1&display_group=8" name="anchorBoxName_771"><img src="//www.vctec.co.kr/web/product/medium/202008/e981f2fd98da35ae54469bfea8401c5e.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=771&cate_no=1&display_group=8"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">아두이노 메가2560 R3 (Arduino Mega 2560 R3 )</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-7 xans-product-listitem xans-product-7"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">80,900원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">아두이노 우노의 Super Set 버전. 더 많은 입출력 핀과 기능을 제공합니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_775" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="199000"></div> <div class="box"> <a href="/product/detail.html?product_no=775&cate_no=1&display_group=8" name="anchorBoxName_775"><img src="//www.vctec.co.kr/web/product/medium/vctmall_775.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=775&cate_no=1&display_group=8"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">아두이노 스타터 킷 (Arduino Starter Kit)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-7 xans-product-listitem xans-product-7"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">199,000원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">아두이노사에서 제작한 아두이노 입문 키트로 아두이노 IDE예제와 바로 동작합니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_5039" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="78400"></div> <div class="box"> <a href="/product/detail.html?product_no=5039&cate_no=1&display_group=8" name="anchorBoxName_5039"><img src="//www.vctec.co.kr/web/product/medium/vctmall_5039.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=5039&cate_no=1&display_group=8"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">아두이노 메가 ADK R3 클론 -USB 케이블 포함(Arduino Mega ADK R3 Clone with USB cable)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-7 xans-product-listitem xans-product-7"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">78,400원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">클론보드로 로고와 가격을 제외한 정품과 동일한 보드입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_1794" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="36900"></div> <div class="box"> <a href="/product/detail.html?product_no=1794&cate_no=1&display_group=8" name="anchorBoxName_1794"><img src="//www.vctec.co.kr/web/product/medium/vctmall_1794.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=1794&cate_no=1&display_group=8"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">Bluno - 블루투스4.0 내장 아두이노 (Bluno - BLE with Arduino Uno)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-7 xans-product-listitem xans-product-7"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">36,900원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">블루투스 4.0 BLE 기능이 내장된 아두이노 우노 보드입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> </ul> </div> <!-- //추가분류관리7--> </li> <li> <!-- 추가분류관리8 --> <div class="xans-element- xans-product xans-product-listmain-8 xans-product-listmain xans-product-8 item_list"><!-- $count = 8 --> <ul class="prdList column4"> <li id="anchorBoxId_8801" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="799800"></div> <div class="box"> <a href="/product/detail.html?product_no=8801&cate_no=1&display_group=9" name="anchorBoxName_8801"><img src="//www.vctec.co.kr/web/product/medium/201602/8797_shop1_727185.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=8801&cate_no=1&display_group=9"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">CCS-C PCWHD IDE 컴파일러 -매뉴얼/CD포함 패키지 (CCS-C PCWHD IDE Compiler for Microchip PIC10/12/16/18/24/dsPIC Devices with Manual/CD)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-8 xans-product-listitem xans-product-8"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">799,800원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">CCS 사의 C 컴파일러입니다. PCWHD IDE 버전입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_608" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="603400"></div> <div class="box"> <a href="/product/detail.html?product_no=608&cate_no=1&display_group=9" name="anchorBoxName_608"><img src="//www.vctec.co.kr/web/product/medium/vctmall_608.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=608&cate_no=1&display_group=9"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">mikroC PRO for ARM 컴파일러(마이크로일렉트로니카)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-8 xans-product-listitem xans-product-8"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">603,400원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">STM32/Stellaris/Tiva를 지원하는 사용하기 편리한 C 컴파일러입니다</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_402" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="338000"></div> <div class="box"> <a href="/product/detail.html?product_no=402&cate_no=1&display_group=9" name="anchorBoxName_402"><img src="//www.vctec.co.kr/web/product/medium/vctmall_402.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=402&cate_no=1&display_group=9"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">Visual TFT GUI 개발 프로그램(마이크로일렉트로니카)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-8 xans-product-listitem xans-product-8"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">338,000원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">고달픈 GUI작업을 Drag & Drop식으로 개발할 수 있는 제품입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_444" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="348690"></div> <div class="box"> <a href="/product/detail.html?product_no=444&cate_no=1&display_group=9" name="anchorBoxName_444"><img src="//www.vctec.co.kr/web/product/medium/vctmall_444.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=444&cate_no=1&display_group=9"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">PIC용 컴파일러 mikroC PRO (마이크로일렉트로니카)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-8 xans-product-listitem xans-product-8"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">348,690원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">8비트 PIC 계열의 펌웨어를 작성할 수 있는 소프트웨어입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_442" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="389000"></div> <div class="box"> <a href="/product/detail.html?product_no=442&cate_no=1&display_group=9" name="anchorBoxName_442"><img src="//www.vctec.co.kr/web/product/medium/vctmall_442.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=442&cate_no=1&display_group=9"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">AVR용 컴파일러 mikroC PRO (마이크로일렉트로니카)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-8 xans-product-listitem xans-product-8"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">389,000원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">186개가 넘는 AVR 마이크로컨트롤러를 지원하는 컴파일러입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_441" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="348700"></div> <div class="box"> <a href="/product/detail.html?product_no=441&cate_no=1&display_group=9" name="anchorBoxName_441"><img src="//www.vctec.co.kr/web/product/medium/vctmall_441.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=441&cate_no=1&display_group=9"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">8051용 컴파일러 mikroC PRO (마이크로일렉트로니카)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-8 xans-product-listitem xans-product-8"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">348,700원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">8051기반의 임베디드 어플리케이션 개발에 필요한 8051용 컴파일러</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_10568" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="14920"></div> <div class="box"> <a href="/product/detail.html?product_no=10568&cate_no=1&display_group=9" name="anchorBoxName_10568"><img src="//www.vctec.co.kr/web/product/medium/201611/10568_shop1_456208.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=10568&cate_no=1&display_group=9"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">J-Link SWD 디버거 -STM32F 용 (J-Link SWD Debugger for STM32F)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-8 xans-product-listitem xans-product-8"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">14,920원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">STM32F 계열 마이크로컨트롤러를 위한 J-Link SWD 디버거입니다.</span></li> </ul> <div class="status"> <div class="icon"><img src="//img.echosting.cafe24.com/design/common/icon_sellout.gif" class="icon_img" alt="품절" /> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_11978" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="118000"></div> <div class="box"> <a href="/product/detail.html?product_no=11978&cate_no=1&display_group=9" name="anchorBoxName_11978"><img src="//www.vctec.co.kr/web/product/medium/202311/59cda3ad2cdfc1cb1cccf4dc2970352f.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=11978&cate_no=1&display_group=9"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">SEGGER J-Link EDU 미니 -JTAG/SWD 디버거 (SEGGER J-Link EDU Mini - JTAG/SWD Debugger)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-8 xans-product-listitem xans-product-8"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">118,000원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">Seggar J-Link EDU 미니 JTAG/SWD 디버거입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> </ul> </div> <!-- //추가분류관리8 --> </li> <li> <!-- 추가분류관리9 --> <div class="xans-element- xans-product xans-product-listmain-9 xans-product-listmain xans-product-9 item_list"><!-- $count = 8 --> <ul class="prdList column4"> <li id="anchorBoxId_7562" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="48500"></div> <div class="box"> <a href="/product/detail.html?product_no=7562&cate_no=1&display_group=10" name="anchorBoxName_7562"><img src="//www.vctec.co.kr/web/product/medium/201512/7562_shop1_463469.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=7562&cate_no=1&display_group=10"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">MyoWare 근육 센서 (MyoWare Muscle Sensor)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-9 xans-product-listitem xans-product-9"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">48,500원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">근육의 전기적인 신호를 측정하여 아날로그 전압으로 출력하여 주는 센서입니다.</span></li> </ul> <div class="status"> <div class="icon"><img src="//img.echosting.cafe24.com/design/common/icon_sellout.gif" class="icon_img" alt="품절" /> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_13322" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="118000"></div> <div class="box"> <a href="/product/detail.html?product_no=13322&cate_no=1&display_group=10" name="anchorBoxName_13322"><img src="//www.vctec.co.kr/web/product/medium/201805/13322_shop1_15277352229353.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=13322&cate_no=1&display_group=10"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">Pixy2 스마트 비전 센서 CMUcam5 -물체 트래킹, 픽시2 (Pixy2 Smart Vision Sensor - Object Tracking Camera for Arduino, Raspberry Pi, BeagleBone Black)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-9 xans-product-listitem xans-product-9"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">118,000원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">스마트 비전 센서 Pixy의 두번째 버전인 Pixy2입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_4257" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="79945"></div> <div class="box"> <a href="/product/detail.html?product_no=4257&cate_no=1&display_group=10" name="anchorBoxName_4257"><img src="//www.vctec.co.kr/web/product/medium/201506/4257_shop1_740410.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=4257&cate_no=1&display_group=10"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">이산화탄소 센서 모듈 - MG-811 (CO2 Sensor (Arduino compatiable))</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-9 xans-product-listitem xans-product-9"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">79,945원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">MQ811 이산화탄소 센서를 탑재한 모듈입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_849" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="33940"></div> <div class="box"> <a href="/product/detail.html?product_no=849&cate_no=1&display_group=10" name="anchorBoxName_849"><img src="//www.vctec.co.kr/web/product/medium/vctmall_849.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=849&cate_no=1&display_group=10"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">펄스센서 키트(Pulse Sensor)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-9 xans-product-listitem xans-product-9"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">33,940원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">손가락을 센서에 대면 간단하게 심박을 측정할 수 있습니다</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_839" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="17200"></div> <div class="box"> <a href="/product/detail.html?product_no=839&cate_no=1&display_group=10" name="anchorBoxName_839"><img src="//www.vctec.co.kr/web/product/medium/vctmall_839.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=839&cate_no=1&display_group=10"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">휘어짐 검출센서 - 2.2' (Flex Sensor 2.2 )</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-9 xans-product-listitem xans-product-9"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">17,200원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">휘어짐에 따라 저항값이 변하는 센서로 닌텐도 글러브에 사용되는 센서입니다</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_945" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="15330"></div> <div class="box"> <a href="/product/detail.html?product_no=945&cate_no=1&display_group=10" name="anchorBoxName_945"><img src="//www.vctec.co.kr/web/product/medium/vctmall_945.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=945&cate_no=1&display_group=10"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">RGB 컬러 센서- IR 필터지원 (RGB Color Sensor with IR filter - TCS34725)[1334]</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-9 xans-product-listitem xans-product-9"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">15,330원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">최고성능을 보여주는 컬러 센서중에 하나입니다.</span></li> </ul> <div class="status"> <div class="icon"><img src="//img.echosting.cafe24.com/design/common/icon_sellout.gif" class="icon_img" alt="품절" /> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_5279" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="18436"></div> <div class="box"> <a href="/product/detail.html?product_no=5279&cate_no=1&display_group=10" name="anchorBoxName_5279"><img src="//www.vctec.co.kr/web/product/medium/vctmall_5279.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=5279&cate_no=1&display_group=10"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">도플러 모션 센서 -HB100 (Doppler Motion Sensor -HB100)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-9 xans-product-listitem xans-product-9"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">18,436원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">도플러효과를 이용하여 움직임 검출이나 속도측정 등에 사용되는 센서입니다</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_1628" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="32500"></div> <div class="box"> <a href="/product/detail.html?product_no=1628&cate_no=1&display_group=10" name="anchorBoxName_1628"><img src="//www.vctec.co.kr/web/product/medium/vctmall_1628.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=1628&cate_no=1&display_group=10"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">동전투입기 - 프로그래밍 가능(3 coin types) (Coin Acceptor - Programmable (3 coin types))</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-9 xans-product-listitem xans-product-9"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">32,500원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">투입되는 동전의 종류를 감지하여 내는 제품입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> </ul> </div> <!-- //추가분류관리9 --> </li> <li> <!-- 추가분류관리10 --> <div class="xans-element- xans-product xans-product-listmain-10 xans-product-listmain xans-product-10 item_list"><!-- $count = 8 --> <ul class="prdList column4"> <li id="anchorBoxId_10143" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="285150"></div> <div class="box"> <a href="/product/detail.html?product_no=10143&cate_no=1&display_group=11" name="anchorBoxName_10143"><img src="//www.vctec.co.kr/web/product/medium/201609/10143_shop1_755396.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=10143&cate_no=1&display_group=11"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">FT90X용 4.3 마이크로미디어 플러스 개발보드 (mikromedia Plus for FT90X)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-10 xans-product-listitem xans-product-10"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">285,150원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">FT900 마이크로컨트롤러와 4.3인치 터치 디스플레이를 장착한 FT90x 용 개발보드입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_6653" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="373182"></div> <div class="box"> <a href="/product/detail.html?product_no=6653&cate_no=1&display_group=11" name="anchorBoxName_6653"><img src="//www.vctec.co.kr/web/product/medium/201508/6653_shop1_152295.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=6653&cate_no=1&display_group=11"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">7 마이크로미디어 개발보드 -STM32F4,터치 (mikromedia 7 for STM32F4)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-10 xans-product-listitem xans-product-10"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">373,182원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">7인치 TFT 터치 스크린, STM32F 마이크로컨트롤러 및 다양한 모듈을 탑재한 개발보드입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_6637" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="242164"></div> <div class="box"> <a href="/product/detail.html?product_no=6637&cate_no=1&display_group=11" name="anchorBoxName_6637"><img src="//www.vctec.co.kr/web/product/medium/201508/6637_shop1_120353.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=6637&cate_no=1&display_group=11"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">EasyFT90x v7 개발보드 -FT900 탑재 (EasyFT90x v7 Development System)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-10 xans-product-listitem xans-product-10"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">242,164원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">FTDI사의 32비트 MCU FT90x 계열을 개발할 수 있는 풀 피쳐 개발보드입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_632" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="523700"></div> <div class="box"> <a href="/product/detail.html?product_no=632&cate_no=1&display_group=11" name="anchorBoxName_632"><img src="//www.vctec.co.kr/web/product/medium/vctmall_632.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=632&cate_no=1&display_group=11"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">EasyMx PRO™ v7 for STM32 개발보드(마이크로일렉트로니카)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-10 xans-product-listitem xans-product-10"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">523,700원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">다양한 모듈을 탑재한 STM32개발보드로 디버거가 내장되어 있습니다</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_603" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="277900"></div> <div class="box"> <a href="/product/detail.html?product_no=603&cate_no=1&display_group=11" name="anchorBoxName_603"><img src="//www.vctec.co.kr/web/product/medium/vctmall_603.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=603&cate_no=1&display_group=11"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">EasyPIC v7 PIC용 개발보드(마이크로일렉트로니카)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-10 xans-product-listitem xans-product-10"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">277,900원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">다양한 모듈을 탑재한 PIC 개발보드로 디버거가 내장되어 있습니다</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_777" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="76000"></div> <div class="box"> <a href="/product/detail.html?product_no=777&cate_no=1&display_group=11" name="anchorBoxName_777"><img src="//www.vctec.co.kr/web/product/medium/vctmall_777.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=777&cate_no=1&display_group=11"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">mbed - LPC1768 (Cortex-M3) 엠베드 개발보드 - ARM mbed NXP LPC1768 Development Board</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-10 xans-product-listitem xans-product-10"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">76,000원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">ARM사의 Rapid prototyping 플랫폼입니다. 훌륭한 커뮤니티를 가진 제품입니다.</span></li> </ul> <div class="status"> <div class="icon"><img src="//img.echosting.cafe24.com/design/common/icon_sellout.gif" class="icon_img" alt="품절" /> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_658" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="426230"></div> <div class="box"> <a href="/product/detail.html?product_no=658&cate_no=1&display_group=11" name="anchorBoxName_658"><img src="//www.vctec.co.kr/web/product/medium/vctmall_658.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=658&cate_no=1&display_group=11"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">EasyPIC Fusion v7 개발보드 - dsPIC33용 (dsPIC33EP512MU810 MCU 추가 포함 품)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-10 xans-product-listitem xans-product-10"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">426,230원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">임베디드 어워드 베스트 툴을 수상한 개발보드입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_599" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="444100"></div> <div class="box"> <a href="/product/detail.html?product_no=599&cate_no=1&display_group=11" name="anchorBoxName_599"><img src="//www.vctec.co.kr/web/product/medium/vctmall_599.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=599&cate_no=1&display_group=11"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">Analog System Lab Kit PRO(마이크로일렉트로니카)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-10 xans-product-listitem xans-product-10"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">444,100원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">대학이나 아날로그 실험을 하고자 하시는 분에게 추천하여 드립니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> </ul> </div> <!-- //추가분류관리10 --> </li> <li> <!-- 추가분류관리11 --> <div class="xans-element- xans-product xans-product-listmain-11 xans-product-listmain xans-product-11 item_list"><!-- $count = 8 --> <ul class="prdList column4"> <li id="anchorBoxId_13464" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="18900"></div> <div class="box"> <a href="/product/detail.html?product_no=13464&cate_no=1&display_group=12" name="anchorBoxName_13464"><img src="//www.vctec.co.kr/web/product/medium/201806/13464_shop1_15302515279873.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=13464&cate_no=1&display_group=12"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">VC835 True RMS 오토 레인지 디지털 멀티미터 (VC835 True RMS Auto Range Digital Multimeter)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">18,900원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">가격대비 우수한 성능을 자랑하는 VC835 True RMS 오토 레인지 디지털 멀티미터입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_7786" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="78100"></div> <div class="box"> <a href="/product/detail.html?product_no=7786&cate_no=1&display_group=12" name="anchorBoxName_7786"><img src="//www.vctec.co.kr/web/product/medium/201601/7786_shop1_582455.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=7786&cate_no=1&display_group=12"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">[해외]스카나쿼드 SQ25 로직 분석기 및 신호 생성기 (ScanaQuad SQ25 Logic Analyzers and Signal Generator)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">78,100원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">스카나쿼드 SQ25 로직분석기/신호생성기입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_898" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="38980"></div> <div class="box"> <a href="/product/detail.html?product_no=898&cate_no=1&display_group=12" name="anchorBoxName_898"><img src="//www.vctec.co.kr/web/product/medium/vctmall_898.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=898&cate_no=1&display_group=12"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">시리얼 버스 하이재킹Sparkfun Bus Pirate</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">38,980원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_14377" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="48480"></div> <div class="box"> <a href="/product/detail.html?product_no=14377&cate_no=1&display_group=12" name="anchorBoxName_14377"><img src="//www.vctec.co.kr/web/product/medium/201901/bcade6c53c85b7aa5290bd990ff874a1.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=14377&cate_no=1&display_group=12"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">SPI 제어 프로토콜 분석 디버깅 및 프로그래머 (SPIDriver -SPI Controlling Multi-tool and SPI Flash Programmer) beagle</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">48,480원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">SPI 장치들을 제어하는데 사용하는 SPIDriver 프로토콜 분석기 멀티툴입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_14378" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="48480"></div> <div class="box"> <a href="/product/detail.html?product_no=14378&cate_no=1&display_group=12" name="anchorBoxName_14378"><img src="//www.vctec.co.kr/web/product/medium/201902/be5defee12121a2d39138118338abe18.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=14378&cate_no=1&display_group=12"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">I2C 제어 프로토콜 분석 멀티툴 I2C-Driver (I2CDriver -I2C Controlling Multi-tool) beagle</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">48,480원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">I2C 장치들을 제어하고 분석 디버깅하는데 사용하는 I2CDriver 멀티툴입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_14744" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="178000"></div> <div class="box"> <a href="/product/detail.html?product_no=14744&cate_no=1&display_group=12" name="anchorBoxName_14744"><img src="//www.vctec.co.kr/web/product/medium/201904/25cc38ec7c683176620b3cebf8b90ceb.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=14744&cate_no=1&display_group=12"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">USB-I2C/SPI/GPIO/PWM/ADC 프로토콜 변환/디버깅 어답터 DLN-2 (USB-I2C/SPI/GPIO ADAPTER - DLN-2)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">178,000원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">USB-I2C/SPI/GPIO/PWM/ADC 프로토콜 변환 분석 디버깅 어답터 DLN-2 입니다.</span></li> </ul> <div class="status"> <div class="icon"><img src="//img.echosting.cafe24.com/design/common/icon_sellout.gif" class="icon_img" alt="품절" /> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_5120" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="39900"></div> <div class="box"> <a href="/product/detail.html?product_no=5120&cate_no=1&display_group=12" name="anchorBoxName_5120"><img src="//www.vctec.co.kr/web/product/medium/vctmall_5120.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=5120&cate_no=1&display_group=12"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">미니젠 신호 생성기 -프로 미니용 쉴드 (SparkFun MiniGen - Pro Mini Signal Generator Shield)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">39,900원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">아두이노 프로 미니와 같이 사용하는 신호 생성 모듈입니다.</span></li> </ul> <div class="status"> <div class="icon"><img src="//img.echosting.cafe24.com/design/common/icon_sellout.gif" class="icon_img" alt="품절" /> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_1241" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="59700"></div> <div class="box"> <a href="/product/detail.html?product_no=1241&cate_no=1&display_group=12" name="anchorBoxName_1241"><img src="//www.vctec.co.kr/web/product/medium/vctmall_1241.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=1241&cate_no=1&display_group=12"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">주파수 생성기 키트 -FG085(Frequency Generator Kit - FG085)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-11 xans-product-listitem xans-product-11"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">59,700원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">주파수를 생성할 수 있는 주파수 생성기로 조립이 필요한 제품입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> </ul> </div> <!-- //추가분류관리11 --> </li> <!-- 추가분류관리12 추가 20150219--> <li> <!-- 추가분류관리12 --> <div class="xans-element- xans-product xans-product-listmain-12 xans-product-listmain xans-product-12 item_list"><!-- $count = 8 --> <ul class="prdList column4"> <li id="anchorBoxId_15330" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="348700"></div> <div class="box"> <a href="/product/detail.html?product_no=15330&cate_no=1&display_group=14" name="anchorBoxName_15330"><img src="//www.vctec.co.kr/web/product/medium/201907/144e19d571c6e6176339863202a3c284.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=15330&cate_no=1&display_group=14"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">mikromedia 7 CAPACITIVE 7 정전식 디스플레이 (Mikromedia 7 CAPACITIVE)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-12 xans-product-listitem xans-product-12"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">348,700원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">mikromedia 7 CAPACITIVE 7인치 정전식 디스플레이입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_1003" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="128900"></div> <div class="box"> <a href="/product/detail.html?product_no=1003&cate_no=1&display_group=14" name="anchorBoxName_1003"><img src="//www.vctec.co.kr/web/product/medium/vctmall_1003.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=1003&cate_no=1&display_group=14"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">ConnectEVE, FT800 그래픽 컨트롤러 LCD - 오디오, 터치지원</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-12 xans-product-listitem xans-product-12"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">128,900원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">8비트 MCU에서도 놀라운 그래픽을 가능하게 하는 FT800를 탑재한 제품입니다</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_5276" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="16500"></div> <div class="box"> <a href="/product/detail.html?product_no=5276&cate_no=1&display_group=14" name="anchorBoxName_5276"><img src="//www.vctec.co.kr/web/product/medium/vctmall_5276.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=5276&cate_no=1&display_group=14"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">0.96 I2C 128x64 OLED 디스플레이 모듈 -흰색 (0.96 I2C 128x64 OLED display Module -White)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-12 xans-product-listitem xans-product-12"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">16,500원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">I2C를 통해 간단히 아두이노와 연결할 수 있는 미니 OLED 모듈입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_16543" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="53800"></div> <div class="box"> <a href="/product/detail.html?product_no=16543&cate_no=1&display_group=14" name="anchorBoxName_16543"><img src="//www.vctec.co.kr/web/product/medium/20200227/28a2e2442a58b6a8386689a94dee3dd8.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=16543&cate_no=1&display_group=14"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">3.12 256 x 64 OLED 디스플레이 -초록, SPI, SSD1322 (3.12 256 x 64 OLED Module -Blue, SPI)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-12 xans-product-listitem xans-product-12"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">53,800원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">3.12 인치 256 x 64 OLED 디스플레이입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_1428" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="29800"></div> <div class="box"> <a href="/product/detail.html?product_no=1428&cate_no=1&display_group=14" name="anchorBoxName_1428"><img src="//www.vctec.co.kr/web/product/medium/vctmall_1428.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=1428&cate_no=1&display_group=14"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">시리얼 LCD 키트 (Sparkfun Serial Enabled LCD Kit)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-12 xans-product-listitem xans-product-12"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">29,800원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">16x2 LCD를 많은 결선없이 시리얼 통신을 통해 제어 할수있는 제품입니다</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_2368" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="373190"></div> <div class="box"> <a href="/product/detail.html?product_no=2368&cate_no=1&display_group=14" name="anchorBoxName_2368"><img src="//www.vctec.co.kr/web/product/medium/vctmall_2368.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=2368&cate_no=1&display_group=14"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">TIVA용 5 멀티미디어 개발플랫폼 (mikromedia 5 for Tiva)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-12 xans-product-listitem xans-product-12"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">373,190원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">5인치 크기의 놀랍게 디자인된 TIVA개발보드 종결자입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_1423" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="17936"></div> <div class="box"> <a href="/product/detail.html?product_no=1423&cate_no=1&display_group=14" name="anchorBoxName_1423"><img src="//www.vctec.co.kr/web/product/medium/vctmall_1423.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=1423&cate_no=1&display_group=14"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">EL 와이어 -빨강 3m (EL Wire - Red 3m)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-12 xans-product-listitem xans-product-12"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">17,936원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">멋지게 발광하는 EL 와이어 빨강색입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_710" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="58510"></div> <div class="box"> <a href="/product/detail.html?product_no=710&cate_no=1&display_group=14" name="anchorBoxName_710"><img src="//www.vctec.co.kr/web/product/medium/vctmall_710.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=710&cate_no=1&display_group=14"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">OSD Click 모듈 (마이크로일렉트로니카)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-12 xans-product-listitem xans-product-12"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">58,510원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">스크린에 오버레이된 문자 등을 만들때 사용하는 제품입니다</span></li> </ul> <div class="status"> <div class="icon"><img src="//img.echosting.cafe24.com/design/common/icon_sellout.gif" class="icon_img" alt="품절" /> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> </ul> </div> <!-- //추가분류관리7--> </li> <!-- 추가분류관리13 추가 20150219--> <li> <!-- 추가분류관리13 --> <div class="xans-element- xans-product xans-product-listmain-13 xans-product-listmain xans-product-13 item_list"><!-- $count = 8 --> <ul class="prdList column4"> <li id="anchorBoxId_12440" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="80900"></div> <div class="box"> <a href="/product/detail.html?product_no=12440&cate_no=1&display_group=15" name="anchorBoxName_12440"><img src="//www.vctec.co.kr/web/product/medium/201801/12440_shop1_971691.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=12440&cate_no=1&display_group=15"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">라즈베리용 고출력 모터 드라이버 애드온 - 6.5V-36V, 18A (Pololu Dual G2 High-Power Motor Driver 24v18 for Raspberry Pi)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-13 xans-product-listitem xans-product-13"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">80,900원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">라즈베리 파이용 고출력 DC 모터 드라이버 애드온 보드입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_12106" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="42500"></div> <div class="box"> <a href="/product/detail.html?product_no=12106&cate_no=1&display_group=15" name="anchorBoxName_12106"><img src="//www.vctec.co.kr/web/product/medium/201711/12106_shop1_455711.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=12106&cate_no=1&display_group=15"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">로메오 BLE 쿼드 -BLE 로봇컨트롤러, 모터드라이버 (Romeo BLE Quad - A STM32 Robot Controller with Quad DC Motor Driver/Encoder/BLE)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-13 xans-product-listitem xans-product-13"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">42,500원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">아두이노 호환 로봇 컨트롤러로 무선 프로그래밍, iOS/Android 앱과의 무선통신 등을 지원합니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_12270" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="29980"></div> <div class="box"> <a href="/product/detail.html?product_no=12270&cate_no=1&display_group=15" name="anchorBoxName_12270"><img src="//www.vctec.co.kr/web/product/medium/201712/12270_shop1_347198.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=12270&cate_no=1&display_group=15"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">원형 로봇 샤시 키트 -3층 구조 (Circular Robotics Chassis Kit (Three-Layer))</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-13 xans-product-listitem xans-product-13"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">29,980원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">3층 구조 원형 로봇 샤시 키트입니다.</span></li> </ul> <div class="status"> <div class="icon"><img src="//img.echosting.cafe24.com/design/common/icon_sellout.gif" class="icon_img" alt="품절" /> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_5187" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="53920"></div> <div class="box"> <a href="/product/detail.html?product_no=5187&cate_no=1&display_group=15" name="anchorBoxName_5187"><img src="//www.vctec.co.kr/web/product/medium/vctmall_5187.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=5187&cate_no=1&display_group=15"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">로메오 BLE -아두이노 + 블루투스4.0 + DC모터 드라이버 (Romeo BLE (Arduino Compatible Atmega 328))</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-13 xans-product-listitem xans-product-13"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">53,920원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">아두이노 + 모터 드라이버 + 블루투스 BLE 기능의 로봇 컨트롤러입니다</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_1014" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="19400"></div> <div class="box"> <a href="/product/detail.html?product_no=1014&cate_no=1&display_group=15" name="anchorBoxName_1014"><img src="//www.vctec.co.kr/web/product/medium/vctmall_1014.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=1014&cate_no=1&display_group=15"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">A4988 스텝 모터 드라이버 -블랙 에디션(A4988 Stepper Motor Driver Carrier, black edition)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-13 xans-product-listitem xans-product-13"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">19,400원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">3D 프린터, 스텝모터 동작에 많이 사용되는 스텝모터 드라이버입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_927" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="49500"></div> <div class="box"> <a href="/product/detail.html?product_no=927&cate_no=1&display_group=15" name="anchorBoxName_927"><img src="//www.vctec.co.kr/web/product/medium/vctmall_927.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=927&cate_no=1&display_group=15"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">마이크로 마에스트로 6채널 USB 서보 컨트롤러 (Micro Maestro 6-Channel USB Servo Controller)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-13 xans-product-listitem xans-product-13"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">49,500원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">6개의 서보를 PC나 시리얼 명령을 통해 제어할 수 있는 제품입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_5259" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="15973"></div> <div class="box"> <a href="/product/detail.html?product_no=5259&cate_no=1&display_group=15" name="anchorBoxName_5259"><img src="//www.vctec.co.kr/web/product/medium/vctmall_5259.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=5259&cate_no=1&display_group=15"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">4상 5선 스텝모터 및 ULN2003 드라이버 (Stepper Motor With ULN2003 Driver -5V, 4 Phase 5 Wire )</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-13 xans-product-listitem xans-product-13"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">15,973원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">스텝모터 입문자에게 추천합니다. 모터의 동작을 이해할 수 있습니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_1509" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="15900"></div> <div class="box"> <a href="/product/detail.html?product_no=1509&cate_no=1&display_group=15" name="anchorBoxName_1509"><img src="//www.vctec.co.kr/web/product/medium/vctmall_1509.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=1509&cate_no=1&display_group=15"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">360도 회전 표준크기 서보 -하이토크 (Servo - Generic High Torque Full Rotation (Standard Size))[09347]</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-13 xans-product-listitem xans-product-13"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">15,900원</span><span id="span_product_tax_type_text" style=""> </span></li> <li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:11px;color:#ba5b1c;">상품요약정보</span> :</strong> <span style="font-size:11px;color:#ba5b1c;">360도 회전이 가능한 하이토크 서보 모터입니다.</span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> </ul> </div> <!-- //추가분류관리7--> </li> </ul></div> <!-- 햇반 배너 --> <div class="section"> <a href="/product/detail.html?product_no=13322"><img src="/SkinImg/main_bnr_04.jpg"/></a> </div><!-- //햇반 배너 --> </div> <!-------------------------------------------------------------------------------------------------------------------------------------- %%% DB_banner4 MD's CHOICE 가로롤링아이템 %%% ---------------------------------------------------------------------------------------------------------------------------------------> <div class="xans-element- xans-product xans-product-listmain-14 xans-product-listmain xans-product-14 DB_banner4"><!-- $count = 20 --> <h4>KIT COLLECTION <span>키트 상품</span> </h4> <div class="DB_mask"> <ul class="DB_imgSet"> <li id="anchorBoxId_14985" class="xans-record-"> <div class="discount_rate" data-price="" data-sale="40900"></div> <div class="box"> <a href="/product/detail.html?product_no=14985&cate_no=1&display_group=13" name="anchorBoxName_14985"><span class="mask"><img src="//www.vctec.co.kr/web/product/medium/201906/2f40ab185651830e227d0880589fd676.jpg" alt="" class="thumb"/></span></a> <p class="name"><span style="font-size:12px;color:#555555;">스파크펀 ESP8266 Thing IoT 스터터 키트 (SparkFun ESP8266 Thing Starter Kit)</span></p> <p class="price">40900원 <span></span></p> </div> </li> <li id="anchorBoxId_14989" class="xans-record-"> <div class="discount_rate" data-price="" data-sale="71980"></div> <div class="box"> <a href="/product/detail.html?product_no=14989&cate_no=1&display_group=13" name="anchorBoxName_14989"><span class="mask"><img src="//www.vctec.co.kr/web/product/medium/201906/828f3eff2613d9005a37881f2510a7f5.jpg" alt="" class="thumb"/></span></a> <p class="name"><span style="font-size:12px;color:#555555;">스파크펀 마이크로빗 인벤터스 키트 (SparkFun Inventor's Kit for micro:bit)</span></p> <p class="price">71980원 <span></span></p> </div> </li> <li id="anchorBoxId_816" class="xans-record-"> <div class="discount_rate" data-price="" data-sale="107000"></div> <div class="box"> <a href="/product/detail.html?product_no=816&cate_no=1&display_group=13" name="anchorBoxName_816"><span class="mask"><img src="//www.vctec.co.kr/web/product/medium/201704/816_shop1_427471.jpg" alt="" class="thumb"/></span></a> <p class="name"><span style="font-size:12px;color:#555555;">스파크펀 인벤터스 키트 (SparkFun Inventor's Kit - V3.3)</span></p> <p class="price">107000원 <span></span></p> </div> </li> <li id="anchorBoxId_5401" class="xans-record-"> <div class="discount_rate" data-price="" data-sale="214000"></div> <div class="box"> <a href="/product/detail.html?product_no=5401&cate_no=1&display_group=13" name="anchorBoxName_5401"><span class="mask"><img src="//www.vctec.co.kr/web/product/medium/vctmall_5401.jpg" alt="" class="thumb"/></span></a> <p class="name"><span style="font-size:12px;color:#555555;">mbed 스타터 키트 (mbed Starter Kit)</span></p> <p class="price">214000원 <span></span></p> </div> </li> <li id="anchorBoxId_5366" class="xans-record-"> <div class="discount_rate" data-price="" data-sale="124000"></div> <div class="box"> <a href="/product/detail.html?product_no=5366&cate_no=1&display_group=13" name="anchorBoxName_5366"><span class="mask"><img src="//www.vctec.co.kr/web/product/medium/vctmall_5366.jpg" alt="" class="thumb"/></span></a> <p class="name"><span style="font-size:12px;color:#555555;">회로 그리기 메이커 키트 -전도성 펜 (Circuit Scribe Maker Kit)</span></p> <p class="price">124000원 <span></span></p> </div> </li> <li id="anchorBoxId_465" class="xans-record-"> <div class="discount_rate" data-price="" data-sale="803112"></div> <div class="box"> <a href="/product/detail.html?product_no=465&cate_no=1&display_group=13" name="anchorBoxName_465"><span class="mask"><img src="//www.vctec.co.kr/web/product/medium/vctmall_465.jpg" alt="" class="thumb"/></span></a> <p class="name"><span style="font-size:12px;color:#555555;">STM32 ARM용 Easy Start 3 Kit (마이크로일렉트로니카)</span></p> <p class="price">803112원 <span></span></p> </div> </li> <li id="anchorBoxId_1636" class="xans-record-"> <div class="discount_rate" data-price="" data-sale="129500"></div> <div class="box"> <a href="/product/detail.html?product_no=1636&cate_no=1&display_group=13" name="anchorBoxName_1636"><span class="mask"><img src="//www.vctec.co.kr/web/product/medium/vctmall_1636.jpg" alt="" class="thumb"/></span></a> <p class="name"><span style="font-size:12px;color:#555555;">전도성 페인트 학습용 팩 ((Bare Conductive Classroom Pack - Flashing Card Activity Pack -Robot Parade)</span></p> <p class="price">129500원 <span></span></p> </div> </li> <li id="anchorBoxId_2383" class="xans-record-"> <div class="discount_rate" data-price="" data-sale="112555"></div> <div class="box"> <a href="/product/detail.html?product_no=2383&cate_no=1&display_group=13" name="anchorBoxName_2383"><span class="mask"><img src="//www.vctec.co.kr/web/product/medium/vctmall_2383.jpg" alt="" class="thumb"/></span></a> <p class="name"><span style="font-size:12px;color:#555555;">ARDX - 아두이노 스타터 키트 (ARDX - The starter kit for Arduino)</span></p> <p class="price">112555원 <span></span></p> </div> </li> <li id="anchorBoxId_2412" class="xans-record-"> <div class="discount_rate" data-price="" data-sale="30127"></div> <div class="box"> <a href="/product/detail.html?product_no=2412&cate_no=1&display_group=13" name="anchorBoxName_2412"><span class="mask"><img src="//www.vctec.co.kr/web/product/medium/vctmall_2412.jpg" alt="" class="thumb"/></span></a> <p class="name"><span style="font-size:12px;color:#555555;">BBAC - 아두이노 호환 브레드보드 키트 (BBAC - Breadboard Based Arduino Compatible)</span></p> <p class="price">30127원 <span></span></p> </div> </li> <li id="anchorBoxId_814" class="xans-record-"> <div class="discount_rate" data-price="" data-sale="145000"></div> <div class="box"> <a href="/product/detail.html?product_no=814&cate_no=1&display_group=13" name="anchorBoxName_814"><span class="mask"><img src="//www.vctec.co.kr/web/product/medium/201505/814_shop1_931918.jpg" alt="" class="thumb"/></span></a> <p class="name"><span style="font-size:12px;color:#555555;">XBee 무선 통신 키트(Sparkfun XBee Wireless Kit Retail)</span></p> <p class="price">145000원 <span></span></p> </div> </li> <li id="anchorBoxId_5396" class="xans-record-"> <div class="discount_rate" data-price="" data-sale="67980"></div> <div class="box"> <a href="/product/detail.html?product_no=5396&cate_no=1&display_group=13" name="anchorBoxName_5396"><span class="mask"><img src="//www.vctec.co.kr/web/product/medium/vctmall_5396.jpg" alt="" class="thumb"/></span></a> <p class="name"><span style="font-size:12px;color:#555555;">RFduino 개발키트 (RFduino - Dev Kit)</span></p> <p class="price">67980원 <span></span></p> </div> </li> <li id="anchorBoxId_5080" class="xans-record-"> <div class="discount_rate" data-price="" data-sale="49980"></div> <div class="box"> <a href="/product/detail.html?product_no=5080&cate_no=1&display_group=13" name="anchorBoxName_5080"><span class="mask"><img src="//www.vctec.co.kr/web/product/medium/vctmall_5080.jpg" alt="" class="thumb"/></span></a> <p class="name"><span style="font-size:12px;color:#555555;">공구 키트 및 가방(Tool Bag Kit)</span></p> <p class="price">49980원 <span></span></p> </div> </li> <li id="anchorBoxId_4821" class="xans-record-"> <div class="discount_rate" data-price="" data-sale="164240"></div> <div class="box"> <a href="/product/detail.html?product_no=4821&cate_no=1&display_group=13" name="anchorBoxName_4821"><span class="mask"><img src="//www.vctec.co.kr/web/product/medium/vctmall_4821.JPG" alt="" class="thumb"/></span></a> <p class="name"><span style="font-size:12px;color:#555555;">아두이노용 RGB LED 스트립 키트 -아이폰/안드로이드 지원(RGB LED Strip Kit for Arduino (support iPhone & Android))</span></p> <p class="price">164240원 <span></span></p> </div> </li> <li id="anchorBoxId_3774" class="xans-record-"> <div class="discount_rate" data-price="" data-sale="59230"></div> <div class="box"> <a href="/product/detail.html?product_no=3774&cate_no=1&display_group=13" name="anchorBoxName_3774"><span class="mask"><img src="//www.vctec.co.kr/web/product/medium/vctmall_3774.jpg" alt="" class="thumb"/></span></a> <p class="name"><span style="font-size:12px;color:#555555;">아두이노 센서 학습 키트 (Sparkfun Qtechknow ArduSensor Learning Kit)</span></p> <p class="price">59230원 <span></span></p> </div> </li> <li id="anchorBoxId_1733" class="xans-record-"> <div class="discount_rate" data-price="" data-sale="14900"></div> <div class="box"> <a href="/product/detail.html?product_no=1733&cate_no=1&display_group=13" name="anchorBoxName_1733"><span class="mask"><img src="//www.vctec.co.kr/web/product/medium/vctmall_1733.jpg" alt="" class="thumb"/></span></a> <p class="name"><span style="font-size:12px;color:#555555;">마운팅 키트(나사 및 너트) (Mounting Kit (Screws and Nuts))</span></p> <p class="price">14900원 <span></span></p> </div> </li> </ul> </div> <span class="DB_prevBtn"><img src="/SkinImg/btn_prev2_off.png" onmouseover="this.src='/SkinImg/btn_prev2_on.png'" onmouseout="this.src='/SkinImg/btn_prev2_off.png'" alt="prev"/></span> <span class="DB_nextBtn"><img src="/SkinImg/btn_next2_off.png" onmouseover="this.src='/SkinImg/btn_next2_on.png'" onmouseout="this.src='/SkinImg/btn_next2_off.png'" alt="next"/></span> </div> <!-------------------------------------------------------------------------------------------------------------------------------------- %%% SALE %%% " 카테고리 디자인은 상품을 등록하셔야 노출이 됩니다. ---------------------------------------------------------------------------------------------------------------------------------------> <!-- 추가분류관리6 --> <!-- //추가분류관리6 --> <!-- 추천상품 --> <div class="xans-element- xans-product xans-product-listmain-1 xans-product-listmain xans-product-1"><!-- $count = 30 $basket_result = /product/add_basket.html $basket_option = /product/basket_option.html --> <h2>BEST ITEMS <span>이달의 추천상품</span> </h2> <ul class="prdList column5"> <li id="anchorBoxId_23857" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="91600"></div> <div class="box"> <a href="/product/detail.html?product_no=23857&cate_no=1&display_group=2" name="anchorBoxName_23857"><img src="//www.vctec.co.kr/web/product/medium/202411/5a8c08a3452db0489f3239eca6fa4a06.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=23857&cate_no=1&display_group=2"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">근전도 EMG 센서 번들 키트(EMG click bundle)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">91,600원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_12162" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="49000"></div> <div class="box"> <a href="/product/detail.html?product_no=12162&cate_no=1&display_group=2" name="anchorBoxName_12162"><img src="//www.vctec.co.kr/web/product/medium/201712/12162_shop1_442905.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=12162&cate_no=1&display_group=2"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">TF 미니-S 라이다 거리 측정센서 -12미터 (TF Mini-S LiDAR)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">49,000원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_14378" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="48480"></div> <div class="box"> <a href="/product/detail.html?product_no=14378&cate_no=1&display_group=2" name="anchorBoxName_14378"><img src="//www.vctec.co.kr/web/product/medium/201902/be5defee12121a2d39138118338abe18.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=14378&cate_no=1&display_group=2"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">I2C 제어 프로토콜 분석 멀티툴 I2C-Driver (I2CDriver -I2C Controlling Multi-tool) beagle</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">48,480원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_5970" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="99700"></div> <div class="box"> <a href="/product/detail.html?product_no=5970&cate_no=1&display_group=2" name="anchorBoxName_5970"><img src="//www.vctec.co.kr/web/product/medium/201504/5970_shop1_952397.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=5970&cate_no=1&display_group=2"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">미마스 V2 스파르탄6 FPGA 개발보드 (Mimas V2 Spartan 6 FPGA Development Board with DDR SDRAM)</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">99,700원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> <li id="anchorBoxId_764" class="item xans-record-"> <div class="discount_rate" data-price="" data-sale="114000"></div> <div class="box"> <a href="/product/detail.html?product_no=764&cate_no=1&display_group=2" name="anchorBoxName_764"><img src="//www.vctec.co.kr/web/product/medium/vctmall_764.jpg" alt="" class="thumb"/></a> <p class="name"> <a href="/product/detail.html?product_no=764&cate_no=1&display_group=2"><strong class="title displaynone"><span style="font-size:12px;color:#555555;">상품명</span> :</strong> <span style="font-size:12px;color:#555555;">리니어 서보 액추에이터 L12-R, 50mm(최대확장거리), 100:1(기어변환비율), 6V용 Actuonix</span></a> </p> <ul class="xans-element- xans-product xans-product-listitem-1 xans-product-listitem xans-product-1"><li class=" xans-record-"> <strong class="title displaynone"><span style="font-size:12px;color:#333333;font-weight:bold;">판매가</span> :</strong> <span style="font-size:12px;color:#333333;font-weight:bold;">114,000원</span><span id="span_product_tax_type_text" style=""> </span></li> </ul> <div class="status"> <div class="icon"> </div> <div class="button"> <div class="option"></div> </div> </div> </div> </li> </ul> </div> <!-- //추천상품 --> <!-- 신상품 --> <!-- //신상품 --> <!-- 추가카테고리1 --> <!-- //추가카테고리1 --> <!-- 추가카테고리2 --> <!-- //추가카테고리2 --> </div> </div> <!-- 좌측 날개배너 --> <div id="banner"> <p><a href="/product/detail.html?product_no=3998"><img src="/SkinImg/left_bnr_01.png" alt=""/></a></p> </div><!-- //좌측 날개배너 --> <!-- 우측 날개배너 및 최근본상품 --> <div id="quick"> <p><img id="right_bnr_01" src="/SkinImg/right_bnr_01.png" border="0" usemap="#Map_right_bnr_01"/> <map name="Map_right_bnr_01"><area shape="rect" coords="3,5,77,86" href="/product/detail.html?product_no=5036"/><area shape="rect" coords="5,125,76,206" href="/product/detail.html?product_no=5035"/></map></p> <div class="xans-element- xans-layout xans-layout-productrecent"><img src="/SkinImg/btn_recent_prev.png" alt="이전 제품" class="prev"/> <ul> <li class="displaynone xans-record-"> <a href="/product/detail.html##param##"><img src="about:blank" alt=""/></a> </li> <li class="displaynone xans-record-"> <a href="/product/detail.html##param##"><img src="about:blank" alt=""/></a> </li> </ul> <img src="/SkinImg/btn_recent_next.png" alt="다음 제품" class="next"/> </div> </div><!-- //우측 날개배너 및 최근본상품 --> </div> </div> <!-------------------------------------------------------------------------------------------------------------------------------------- %%% footer 하단정보 %%% " 상점관리 > 기본정보관리 > 내쇼핑몰 정보 에 회사정보를 기재해주세요. 기재한 사항은 사이트 하단에 노출됩니다. " 은행정보는 직접 입력해주셔야됩니다. ---------------------------------------------------------------------------------------------------------------------------------------> <div id="footer"> <div class="xans-element- xans-layout xans-layout-footer divClear "><ul> <li class="footer_section"> <h4>고객센터</h4> <p class="more"><a href="/board/free/customer_center.html"><img src="/SkinImg/footer_btn_more.gif" alt="고객센터"/></a></p> <ul> <li><b>기술문의는 게시판으로 요청드립니다</b></li> <li><span>Fax : 031-696-6258</span></li> <li>E-Mail : <a href="mailto:cs@vctec.co.kr"><strong>cs@vctec.co.kr</strong></a> </li> <li><a href="https://talk.naver.com/ct/wc0443" target="_blank"><img src="http://vctec.co.kr/web/malldesign/talktalk.jpg" alt="네이버톡톡 채팅상담"/></a></li> </ul> <p class="phone">070-7770-6256</p> </li> <li class="footer_section"> <h4>무통장입금안내</h4> <ul> <li>국민은행</li> <li>계좌번호: 663301-01-483745</li> <li>예금주 : 가치창조기술</li> </ul> <p> <select style="margin:5px 0 0; font-size:11px; color:#333; background:#ffffff; width:150px; border:1px solid #ccc;" onchange="window.open(this.value);" name="select"><option value=""> 인터넷뱅킹 바로가기 </option> <option value="http://www.kbstar.com"> 국민은행 </option> <option value="http://www.scfirstbank.com"> 제일은행 </option> <option value="http://www.wooribank.com"> 우리은행 </option> <option value="http://www.kiupbank.co.kr"> 기업은행 </option> <option value="http://www.kjbank.com"> 광주은행 </option> <option value="http://www.daegubank.co.kr"> 대구은행 </option> <option value="http://www.hanabank.com"> 하나은행 </option> <option value="http://www.shinhan.com"> 신한은행 </option> <option value="http://www.keb.co.kr"> 외환은행 </option> <option value="http://www.jbbank.co.kr"> 전북은행 </option> <option value="http://www.pusanbank.co.kr"> 부산은행 </option> <option value="http://www.chb.co.kr"> 조흥은행 </option> <option value="http://www.goodbank.com"> 한미은행 </option> <option value="http://www.chejubank.co.kr"> 제주은행 </option> <option value="http://www.kyongnambank.co.kr"> 경남은행</option> <option value="http://www.epostbank.go.kr"> 우체국 </option> <option value="http://banking.nonghyup.com"> 농협 </option></select></p> </li> <li class="footer_section"> <h4>공지사항</h4> <p class="more2"><a href="/board/free/list.html?board_no=1"><img src="/SkinImg/footer_btn_more.gif" alt="공지사항"/></a></p> <div class="xans-element- xans-board xans-board-listpackage-1 xans-board-listpackage xans-board-1 footer_board "><table border="1" summary=""><tbody class="xans-element- xans-board xans-board-list-1 xans-board-list xans-board-1"><!-- $count = 5 $main_list = yes --><tr class="xans-record-"> <td class="title"><a href="/board/product/read.html?no=6688&board_no=1">사업자등록증 및 통장사본</a></td> </tr> <tr class="xans-record-"> <td class="title"><a href="/board/product/read.html?no=2913&board_no=1">쇼핑몰 리뉴얼 안내</a></td> </tr> </tbody> </table> </div> </li> <!-------------------------------------------------------------------------------------------------------------------------------------- %%% DB_tab2_4 메인슬라이드배너 %%% " 배너 이미지의 기본 사이즈는 240x140 픽셀입니다. ---------------------------------------------------------------------------------------------------------------------------------------> <li class="footer_section"> <div id="DB_tab2_4" class="DB_tab2_4"> <ul class="DB_img"> <li><a href="#1"><img src="/SkinImg/DB_tab2_4/01.jpg" alt=""/></a></li> <li><a href="#1"><img src="/SkinImg/DB_tab2_4/02.jpg" alt=""/></a></li> </ul> <ul class="DB_menu"> <li><img src="/SkinImg/btn_off.png" alt=""/></li> <li><img src="/SkinImg/btn_off.png" alt=""/></li> </ul> <span class="DB_dir DB_prev"><img src="/SkinImg/btn_prev_off.png" alt=""/></span> <span class="DB_dir DB_next"><img src="/SkinImg/btn_next_off.png" alt=""/></span> </div> </li> </ul> </div> <div class="xans-element- xans-layout xans-layout-footer divClear "><ul class="utilMenu"> <li class="home"><a href="/index.html">홈</a></li> <li><a href="/shopinfo/company.html">회사소개</a></li> <li><a href="/member/agreement.html">이용약관 </a></li> <li><a href="/shopinfo/guide.html">쇼핑몰 이용안내</a></li> <li><a href="/member/privacy.html">개인정보취급방침</a></li> <li><a href="/board/free/customer_center.html">고객센터</a></li> <li><a href="mailto:cs@vctec.co.kr?Subject=%EC%A0%9C%ED%9C%B4%EB%AC%B8%EC%9D%98%20-">제휴문의</a></li> <li><a href="mailto:recruit@vctec.co.kr?Subject=%EC%9E%85%EC%82%AC%EC%A7%80%EC%9B%90(%EC%83%81%EC%8B%9C%EB%AA%A8%EC%A7%91)%20-">인재를 모십니다</a></li> </ul> <div class="footer_info"> <h4> 가치창조기술</h4> <ul> <li>13938 경기도 안양시 동안구 관악대로 351 (관양동) 6층 (유정빌딩)</li> <li>사업자 등록번호 : 123-31-95779 | 통신판매업 신고 : 2008-경기안양-00543 <a href="#none" onclick="window.open('http://www.ftc.go.kr/bizCommPop.do?wrkr_no=1233195779', 'bizCommPop', 'width=750, height=950;');return false;">[사업자정보확인]</a></li> <li>대표이사 : 설득수 | 개인정보관리책임자 : <a href="mailto:cs@vctec.co.kr">고객지원팀장(cs@vctec.co.kr)</a> </li> <li>Contact : <strong><a href="mailto:cs@vctec.co.kr">cs@vctec.co.kr</a></strong> for more information.</li> </ul> <ul class="copyright"> <span><strong>가치창조기술</strong>의 허가없이 사이트 내의 컨텐츠 및 이미지를 무단 사용할 수 없습니다.</span> Copyright © 2015 <strong>가치창조기술</strong>. All rights reserved. </ul> </div> <!-------------------------------------------------------------------------------------------------------------------------------------- %%% 하단 아이콘 셋팅 %%% " 택배사 지정 및 링크설정 ( 사용중이신 택배사로 아래소스에서 교체해주시면 되겠습니다. ) <li><a href="parcel.epost.go.kr" target="_blank"><img src="/SkinImg/footer_ico_20.gif" alt="우체국택배" /></a></li> <li><a href="https://www.doortodoor.co.kr/parcel/pa_004.jsp" target="_blank"><img src="/SkinImg/footer_ico_17.gif" alt="CJ대한통운" /></a></li> <li><a href="http://www.ilogen.com/d2d/delivery/invoice_search.jsp" target="_blank"><img src="/SkinImg/footer_ico_18.gif" alt="로젠택배" /></a></li> <li><a href="http://www.hlc.co.kr/personalService/tracking/06/tracking_goods.jsp" target="_blank"><img src="/SkinImg/footer_ico_28.gif" alt="현대택배" /></a></li> <li><a href="https://www.kgyellowcap.co.kr/delivery/waybill.html" target="_blank"><img src="/SkinImg/footer_ico_19.gif" alt="옐로우캡" /></a></li> <li><a href="http://www.hanjin.co.kr/Delivery_html/inquiry/personal_inquiry.jsp" target="_blank"><img src="/SkinImg/footer_ico_21.gif" alt="한진택배" /></a></li> <li><a href="http://www.kgbls.co.kr/sub5/sub5_1.asp" target="_blank"><img src="/SkinImg/footer_ico_16.gif" alt="KGB택배" /></a></li> ---------------------------------------------------------------------------------------------------------------------------------------> <div class="icon"> <ul> <!-- 카페24로고를 SSL결제보안 인증사이트로 변경 --><!-- <li><a href="http://cafe24.com" target="_blank"><img src="/SkinImg/footer_ico_01.gif" alt="카페24" /></a></li> --><li><img src="/SkinImg/footer_ico_25.gif" alt="SSL결제보안인증사이트"/></li> <li><a href="http://www.allatpay.com/" target="_blank"><img src="/SkinImg/footer_ico_06.gif" alt="올앳페이"/></a></li> <li><a href="http://www.naver.com" target="_blank"><img src="/SkinImg/footer_ico_07.gif" alt="네이버"/></a></li> <li><a href="http://kbstar.com" target="_blank"><img src="/SkinImg/footer_ico_12.gif" alt="국민은행"/></a></li> </ul> <ul> <li><a href="https://www.doortodoor.co.kr/parcel/pa_004.jsp" target="_blank"><img src="/SkinImg/footer_ico_17.gif" alt="CJ대한통운"/></a></li> <li><a href="http://www.ftc.go.kr/"><img src="/SkinImg/footer_ico_22.gif" alt="공정거래위원회"/></a></li> <li><a href="#none"><img src="/SkinImg/footer_ico_23.gif" alt=""/></a></li> <li><a href="https://www.allatpay.com/servlet/AllatBizV2/support/SupportMainCL?menu_id=m040106" target="_blank"><img src="/SkinImg/footer_ico_24.gif" alt="현금영수증"/></a></li> </ul> </div> </div> </div> <!-- 스크롤시 나타나는 TOP버튼 --> <div id="back-top"></div> <!-- 참고: 결제를 위한 필수 영역 --> <div id="progressPaybar" style="display:none;"> <div id="progressPaybarBackground" class="layerProgress"></div> <div id="progressPaybarView"> <div class="box"> <p class="graph"> <span><img src="http://img.echosting.cafe24.com/skin/base_ko_KR/layout/txt_progress.gif" alt="현재 결제가 진행중입니다."/></span> <span><img src="http://img.echosting.cafe24.com/skin/base_ko_KR/layout/img_loading.gif" alt=""/></span> </p> <p class="txt"> 본 결제 창은 결제완료 후 자동으로 닫히며,결제 진행 중에 본 결제 창을 닫으시면<br/> 주문이 되지 않으니 결제 완료 될 때 까지 닫지 마시기 바랍니다. </p> </div> </div> </div> <!-- //참고 --> <span itemscope="" itemtype="https://schema.org/Organization"> <link itemprop="url" href="https://www.vctec.co.kr"> </span> <script type="text/javascript" src="/app/Eclog/js/cid.generate.js?vs=5d6862fd16f084e5e852f7679fe3f829&u=vctmall.1"></script> <script> (function (i, s, o, g) { a = s.createElement(o), m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g + '?v=' + new Date().getTime(); a.setAttribute('crossorigin', 'anonymous'); m.parentNode.insertBefore(a, m); a.onload = function() { if (typeof window.initCaWebAnalytics === 'function') { window.initCaWebAnalytics({"mid":"vctmall","stype":"e","domain":"","shop_no":1,"lang":"ko_KR","mobile_flag":"F","send_endpoint":"https://ca-log.cafe24data.com"}); } }; })(window, document, 'script', '//ca.cafe24data.com/analytics.js');</script> <script> try { // Account ID 적용 if (!wcs_add) var wcs_add = {}; wcs_add["wa"] = "s_18af321f64b1"; // 네이버 페이 White list가 있을 경우 wcs.checkoutWhitelist = ["vctmall.cafe24.com", "www.vctmall.cafe24.com", "m.vctmall.cafe24.com", "ubiquitics.co.kr", "www.ubiquitics.co.kr", "m.ubiquitics.co.kr", "vctec.co.kr", "www.vctec.co.kr", "m.vctec.co.kr"]; // 레퍼러 wcs.setReferer(""); // 유입 추적 함수 호출 wcs.inflow("vctec.co.kr"); // 로그수집 wcs_do(); } catch (e) {}; </script> <!-- External Script Start --> <!-- gcs --> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=AW-949301340"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'AW-949301340'); </script> <script> gtag('event', 'conversion', { 'send_to': 'AW-949301340/TwwaCImut5YZENzg1MQD', 'value': 0.0, }); </script> <!-- External Script End --> <script type="text/javascript" src="/ind-script/i18n.php?lang=ko_KR&domain=front&v=2503251390" charset="utf-8"></script> <script src="/ind-script/optimizer.php?filename=zVlbU-M2FH4Hv-7vMLTbTl9JKFtmSWEIW55l-TgRlnRUXRK8v77HTlhgwTc5zHQYEkfR9-lY5_YpTteoID39xaaFZQq2aMvUgsNgOaQPLhWnf-jkwX1Ku-YFYRgv04d_A9hq__Zr8ntyMhIJjx6sZtLtBxKOWAqYyhKsjLqFBHhS6GioRo66kIL7KIrT5DP9RS1O33q0P-2bsbgi_Cvv5syDFzRB0SztU-CL5uJe-PXd93PmWaKEHsEjRUYouKPrfpQzVmhfDKBHHmqzLtCqOWpvUUqw_bgbGdyZMTMr8tUAe4IXsn9WYbHZqSOHkhCojzyaIyk0HGVM6yF27Sg4KoV66OxHpikbNYW2seCHr9LgPCgjyS_vg5gx6QIzISG9fYHf2dexKy04hXmgIbcVZtyCRdC83tB6Xh4obVRrEA9l6DCCQjX9tsuelxSSfa8ksnwUSAXP6nWvMwd20-acFrBBWRVCDg69HAoWpK-3wClm_eydqBtfJLOVaED_j5KdUwHRjnbUTWUC5oReTWVR4Flel8PWaFyu0bxy60XjrK-sZJiW9euNeATZVYs6aOZNLn7rTMUW6DlkYTUadQsFWNAc5sHW79WNFXy83Q6Y5etR6eBZUVRv206vz4wMK0G1bsOkIFehffLdj4GELpibTFsHh87dW3piMBSx8HErrEEa-PD7WDOdy9EVZcQCVCEF-fjD-Kma-oNtk0TOqM2U2F-fny0YE_Bzotc5s-nn5LfkJC2oURvBy0gSeXqiW43tyNRlk6n1F9TBmmb2RDm-WJHSWKGtroTzo8F_w_bJoQ-uTR6NwL8TBANZ6P9a6jIKe20aGfLno7esIWo-Nx-XKHMM_tC0cfW5h_RSsdXBSc-FIzFaCRKlB6S-JLoldXoJS5DQqMDDG26JeMZcCQd330XQ-RudMp32XrkplD_I5h1nldFU-jA2zYTOD0J0HiPs3iP6Z1f_W0OvrXbvJVbqaKlj057Ig_B8_-m4oNMy81MtORRNiNGu-zJ8szvNRfeTZ4qz-MLwTLL0yOPawpUoIZ1Z3FKTnTO-hniWCRn5Ar-_o9E0exwdLjwTMp2FWjHSoMLo_b2FjYCtZ7LcX84x6A7LZshs_oqLRpOsHo0DVdSVQwZx4MB5HDCTncHUBbVg0EbukKxzSTW_oLQT3KAJ5qffKmgkQQMdPl4wTarhFWwLdJurfgG99oo0pxdegOufPbeV8fgVqlG2MFdpvnuNxilQGdho-LXNwfKu4O4h2GmQ6QymWzQO4ugtIT0slOZ0ap5yLwsK4k6d2oM_pzxyIn79e-HW3b1pAAHvrnY9DCRMYQL8toGXUNHROJ_IcodUw-eT7qbJj_iwBA2FmJoaV6yaYMMXy_L4gDwLHklzCd7QUM_cxudGkF40dTw-QYMjc8BSom_EFMcsqlp57OvFtAh5RTUp95pY-0vUD8yqA0TtnumOZaN4NqBztM-PAlqfuo20oz4VT9-encq71AXGB5FkQrFMwgSLDPNrixKOe35nG2DOVesTnhawiehyO5VwTMpnpDfdNuFs2CNOS6IVLsQjzfwP&type=js&k=d7a7056278effe7e9a3d89a529b883edc0d290be&t=1742547173" ></script><script src="/ind-script/optimizer_user.php?filename=rdJNDoMgEIbhfXHbc0x_TlDTNOmiK0-AOEEUGMuAxtuXxp6gsmP1zJc3QE8OAZVIjIFhVtFJa2FKrTVK9NFZ4A5Fh2y0Bx6NP59gYBjeCcNa3WsRZVtL7zFcL5Uzvhr4CPtQlGy8LoRtC28h0NJY0-GLZixH85dsIk5bgoKbaXpYkrFoCO5peTr9Qp8KolPII0tkddQli2DlSimCkhE15Rs7xFaq8ZBT_m38trT5R6oNzI89ixQ5RyXKK6LRYIY-&type=js&k=b174f144242364c1e55b3fe19f0122853257fbdc&t=1424912743&user=T" ></script> <script type="text/javascript"> var sIsChannelUi = 'F'; var sChRef = ''; var sUseShoppingpayPg = 'F'; var sOwnMallLanding = 'F'; var sShoppingPayCookie = ''; var sYtshopping = 'F'; if (sIsChannelUi === 'T') { sessionStorage.setItem('ch_ref', sChRef); } CAFE24.getChRefData = function() { if (sIsChannelUi === 'T') { return sessionStorage.getItem('ch_ref'); } } // 자사몰랜딩/유튜브랜딩 공용 CAFE24.checkChannelUI = function() { if ((sIsChannelUi === 'T' && sessionStorage.getItem('ch_ref') || (sUseShoppingpayPg === 'T' && sOwnMallLanding === 'T')) || sYtshopping === 'T') { return true; } else { return false; } } // 자사몰랜딩 UI확인 CAFE24.isOwnMallLandingUI = function() { return sUseShoppingpayPg === 'T' && sOwnMallLanding === 'T'; } CAFE24.attachShoppingpayParam = function(sUrl) { if (sUrl) { var sChRef = CAFE24.getChRefData(); if (sChRef) { var sSeparator = (sUrl.includes('?')) ? '&' : '?'; sUrl += sSeparator + 'ch_ref=' + sChRef; } else if (sUseShoppingpayPg === 'T' && sOwnMallLanding === 'T') { var sSeparator = (sUrl.includes('?')) ? '&' : '?'; sUrl += sSeparator + 'co_servicetype=shoppingpay'; } } return sUrl; } CAFE24.attachChRef = function(sUrl) { if (sUrl) { var sChRef = CAFE24.getChRefData(); if (sChRef) { var sSeparator = (sUrl.includes('?')) ? '&' : '?'; sUrl += sSeparator + 'ch_ref=' + sChRef; } } return sUrl; } var sIsCheckout = 'F'; var sCheckoutToken = ''; if (sIsCheckout === 'T') { sessionStorage.setItem('checkoutToken', sCheckoutToken); } else { sessionStorage.removeItem('checkoutToken'); } CAFE24.getCheckoutToken = function() { if (sIsCheckout === 'T') { return sessionStorage.getItem('checkoutToken'); } } CAFE24.attachCheckoutParam = function(sUrl) { if (sUrl) { var sCheckoutToken = CAFE24.getCheckoutToken(); if (sCheckoutToken) { var sSeparator = (sUrl.includes('?')) ? '&' : '?'; sUrl += sSeparator + 'checkoutToken=' + sCheckoutToken; } } return sUrl; } CAFE24.MOBILE_WEB = false; var mobileWeb = CAFE24.MOBILE_WEB; try { var isUseLoginKeepingSubmit = false; // isSeqNoKeyExpiretime function isSeqNoKeyExpiretime(iExpiretime) { var sDate = new Date(); var iNow = Math.floor(sDate.getTime() / 1000); // 유효시간 확인 if (iExpiretime > iNow) { return false; } return true; } function isUseLoginKeeping() { // 디바이스 확인 if (EC_MOBILE_DEVICE === false) { return; } // 로그인 여부 var isLogin = document.cookie.match(/(?:^| |;)iscache=F/) ? true : false if (isLogin) { return; } var sLoginKeepingInfo = localStorage.getItem('use_login_keeping_info'); var iSeqnoExpiretime; var iSeqNoKey; if (sLoginKeepingInfo == null) { iSeqnoExpiretime = localStorage.getItem('seq_no_key_expiretime'); iSeqNoKey = localStorage.getItem('seq_no_key'); // 유효시간, key 값 확인 if (iSeqnoExpiretime === null || iSeqNoKey === null) { return; } } else { var oLoginKeepingInfo = JSON.parse(sLoginKeepingInfo); iSeqNoKey = oLoginKeepingInfo.seq_no_key; iSeqnoExpiretime = oLoginKeepingInfo.seq_no_key_expiretime; if (isNaN(iSeqNoKey) === true || isNaN(iSeqnoExpiretime) === true) { return; } } if (isSeqNoKeyExpiretime(iSeqnoExpiretime) === false) { return; } useLoginKeepingSubmit(); } function findGetParamValue(paramKey) { var result = null, tmp = []; location.search.substr(1).split('&').forEach(function (item) { tmp = item.split('='); if (tmp[0] === paramKey) result = decodeURIComponent(tmp[1]); }); return result; } function useLoginKeepingSubmit() { var iSeqnoExpiretime; var iSeqNoKey; var sUseLoginKeepingIp; var sLoginKeepingInfo = localStorage.getItem('use_login_keeping_info'); if (sLoginKeepingInfo == null) { iSeqnoExpiretime = localStorage.getItem('seq_no_key_expiretime'); iSeqNoKey = localStorage.getItem('seq_no_key'); } else { var oLoginKeepingInfo = JSON.parse(sLoginKeepingInfo); iSeqNoKey = oLoginKeepingInfo.seq_no_key; iSeqnoExpiretime = oLoginKeepingInfo.seq_no_key_expiretime; sUseLoginKeepingIp = oLoginKeepingInfo.use_login_keeping_ip; } var oForm = document.createElement('form'); oForm.method = 'post'; oForm.action = '/exec/front/member/LoginKeeping'; document.body.appendChild(oForm); var oSeqNoObj = document.createElement('input'); oSeqNoObj.name = 'seq_no_key'; oSeqNoObj.type = 'hidden'; oSeqNoObj.value = iSeqNoKey; oForm.appendChild(oSeqNoObj); oSeqNoObj = document.createElement('input'); oSeqNoObj.name = 'seq_no_key_expiretime'; oSeqNoObj.type = 'hidden'; oSeqNoObj.value = iSeqnoExpiretime; oForm.appendChild(oSeqNoObj); var returnUrl = findGetParamValue('returnUrl'); if (returnUrl == '' || returnUrl == null) { returnUrl = location.pathname + location.search; } oSeqNoObj = document.createElement('input'); oSeqNoObj.name = 'returnUrl'; oSeqNoObj.type = 'hidden'; oSeqNoObj.value = returnUrl; oForm.appendChild(oSeqNoObj); if (sUseLoginKeepingIp != undefined) { oSeqNoObj = document.createElement('input'); oSeqNoObj.name = 'use_login_keeping_ip'; oSeqNoObj.type = 'hidden'; oSeqNoObj.value = sUseLoginKeepingIp; oForm.appendChild(oSeqNoObj); } oForm.submit(); isUseLoginKeepingSubmit = true; } isUseLoginKeeping(); } catch(e) { } var bUseElastic = false; var sSearchBannerUseFlag = 'F'; CAFE24.SHOP_CURRENCY_INFO = {"1":{"aShopCurrencyInfo":{"currency_code":"KRW","currency_no":"410","currency_symbol":"\uffe6","currency_name":"South Korean won","currency_desc":"\uffe6 \uc6d0 (\ud55c\uad6d)","decimal_place":0,"round_method_type":"F"},"aShopSubCurrencyInfo":null,"aBaseCurrencyInfo":{"currency_code":"KRW","currency_no":"410","currency_symbol":"\uffe6","currency_name":"South Korean won","currency_desc":"\uffe6 \uc6d0 (\ud55c\uad6d)","decimal_place":0,"round_method_type":"F"},"fExchangeRate":1,"fExchangeSubRate":null,"aFrontCurrencyFormat":{"head":"","tail":"\uc6d0"},"aFrontSubCurrencyFormat":{"head":"","tail":""}}}; var SHOP_CURRENCY_INFO = CAFE24.SHOP_CURRENCY_INFO; if (typeof CAFE24.SHOP_FRONT_NEW_OPTION_COMMON !== "undefined") {CAFE24.SHOP_FRONT_NEW_OPTION_COMMON.initObject();} if (typeof CAFE24.SHOP_FRONT_NEW_OPTION_BIND !== "undefined") {CAFE24.SHOP_FRONT_NEW_OPTION_BIND.initChooseBox();} if (typeof CAFE24.SHOP_FRONT_NEW_OPTION_DATA !== "undefined") {CAFE24.SHOP_FRONT_NEW_OPTION_DATA.initData();} if (typeof CAFE24.SHOP_FRONT_NEW_LIKE_COMMON !== "undefined") {CAFE24.SHOP_FRONT_NEW_LIKE_COMMON.init({"bIsUseLikeProduct":false,"bIsUseLikeCategory":false});} if (typeof CAFE24.SHOP_FRONT_REVIEW_TALK_REVIEW_COUNT !== "undefined") {CAFE24.SHOP_FRONT_REVIEW_TALK_REVIEW_COUNT.bIsReviewTalk = 'F';} var basket_result = '/product/add_basket.html'; var basket_option = '/product/basket_option.html'; var bIsUseSpread = false; var sIsSecret = false; var iBoardNo = "1"; var aPopupListData = {"aPopupList":"[{\"type\":\"L\",\"child_type\":\"W\",\"idx\":4,\"file\":\"\\\/popup\\\/popup_4.html\",\"size\":\"400*350\",\"position\":\"400*500\",\"title\":\"8\\uc6d4 16\\uc77c \\ud734\\ubb34\\uc77c \\uc548\\ub0b4\",\"open\":false}]","aPopupCouponList":[],"sIsAuthGuidePopup":"","sIsUpdateEventGuidePopup":"","sIsLifetimeEventGuidePopup":"","sPopupPage":"F"}; var aLogData = {"log_server1":"eclog2-259.cafe24.com","log_server2":"elg-db-svcm-213.cafe24.com","mid":"vctmall","stype":"e","domain":"","shop_no":1,"lang":"ko_KR","ver":2,"hash":"","ca":"cfa-js.cafe24.com\/cfa.js","etc":"","mobile_flag":"F"}; var sMileageName = '적립금'; var sMileageUnit = '[:PRICE:]원'; var sDepositName = '예치금'; var sDepositUnit = '원'; </script></body></html>