[아두이노]  

[TP]정품 아두이노 에스플로라 - 가속도,빛,소리,온도 센서 및 부저,RGB LED 내장 (Arduino Esplora)

상품 정보
판매가
할인판매가 50,000원 (50,000원 할인)
할인금액 총 할인금액 원
(모바일할인금액 원)
적립금

0원(0%)

무통장 결제시 적립금%

카드 결제시 적립금%

실시간 계좌이체시 적립금%

적립금 결제시 적립금%

휴대폰 결제시 적립금%

예치금 결제시 적립금%

에스크로 결제시 적립금%

가상계좌 결제시 적립금%

가상계좌 결제시 적립금%

케이페이 결제시 적립금%

페이나우 결제시 적립금%

페이코 결제시 적립금%

카카오페이 결제시 적립금%

제휴적립금
배송방법 택배
배송비 2,700원 ~ 3,000원
도움말

구매조건에 따라 배송비 차등부과

  • 1.00kg 이상 ~ 2.00kg 미만 2,700원
  • 2.00kg 이상 ~ 80.00kg 미만 3,000원
닫기
상품 추가설명 번역정보
배송
수량 up down  
상품 목록
상품 정보 가격 삭제
총상품금액(수량)0
buy
buy
상품 상세페이지는 손가락으로 확대/축소가 가능합니다.

조이스틱과 버튼기능은 기본!  가속도 센서, 소리 센서, 온도 센서, 광센서, 슬라이드바 , RGB LED, 부저가 내장된 아두이노 보드입니다.   키보드 및 마우스 기기(HID)로 프로그래밍 해주면  마우스와 키보드 역활까지 대체할 수 있는 재주 많은 아두이노 보드입니다.  

 

아두이노 게임기 개발, 로봇 콘트롤러,  PC 게임용 게임패드로 활용 가능합니다!

안내. PC와 연결시 필요한 micro USB 케이블이 포함되어 있습니다.

 


Arduino Esplora Front


Arduino Esplora Rear

Overview

The Arduino Esplora is a microcontroller board derived from theArduino Leonardo. The Esplora differs from all preceding Arduino boards in that it provides a number of built-in, ready-to-use setof onboard sensors for interaction. It's designed for people who want to get up and running with Arduino without having to learn about the electronics first. For a step-by-step introduction to the Esplora, check out the Getting Started with Esplora guide.

The Esplora has onboard sound and light outputs, and several input sensors, including a joystick, a slider, a temperature sensor, an accelerometer, a microphone, and a light sensor. It also has the potential to expand its capabilities with two Tinkerkit input and output connectors, and a socket for a color TFT LCD screen.

Like the Leonardo board, the Esplora uses an Atmega32U4 AVR microcontroller with 16 MHz crystal oscillator and a micro USB connection capable of acting as a USB client device, like a mouse or a keyboard.

In the upper left corner of the board there is a reset pushbutton, that you can use to restart the board. There are four status LEDS :

  • ON [green] indicates whether the board is receiving power supply
  • L [yellow] connected directly to the microcontroller, accessible through pin 13
  • RX and TX [yellow] indicates the data being transmitted or received over the USB communication

The board contains everything needed to support the microcontroller; simply connect it to a computer with a USB cable to get started.

The Esplora has built-in USB communication; it can appear to a connected computer as a mouse or keyboard, in addition to a virtual (CDC) serial / COM port. This has other implications for the behavior of the board; these are detailed on the getting started page.

Summary

Microcontroller ATmega32u4
Operating Voltage 5V
Flash Memory 32 KB of which 4 KB used by bootloader
SRAM 2.5 KB
EEPROM 1 KB
Clock Speed 16 MHz

Schematic & Reference Design

EAGLE files: Attach:arduino-esplora-reference-design.zip
Schematic: Attach:arduino-esplora-schematic.pdf

 


Memory

The ATmega32u4 has 32 KB (with 4 KB used for the bootloader). It also has 2.5 KB of SRAM and 1 KB of EEPROM (which can be read and written with the EEPROM library).

Input and Output:

The design of the Esplora board recalls traditional gamepad design with an analog joystick on the left and four pushbuttons on the right.

The Esplora has the following on-board inputs and outputs :

  • Analog joystick with central push-button two axis (X and Y) and a center pushbutton.
  • 4 push-buttons laid out in a diamond pattern.
  • Linear potentiometer slider near the bottom of the board.
  • Microphone for getting the loudness (amplitude) of the surrounding environment.
  • Light sensor for getting the brightness.
  • Temperature sensor reads the ambient temperature
  • Three-axis accelerometer measures the board's relation to gravity on three axes (X, Y, and Z)
  • Buzzer can produce square-waves.
  • RGB led bright LED with Red Green and Blue elements for color mixing.
  • 2 TinkerKit Inputs to connect the TinkerKit sensor modules with the 3-pin connectors.
  • 2 TinkerKit Outputs to connect the TinkerKit actuator modules with the 3-pin connectors.
  • TFT display connector connector for an optional color LCD screen, SD card, or other devices that use the SPI protocol.

In order to utilize the total number of available sensors, the board uses an analog multiplexer. This means a single analog input of the microcontroller is shared among all the input channels (except the 3-axis accelerometer). Four additional microcontroller pins choose which channel to read.

Communication

The Leonardo the Esplora has a number of facilities for communicating with a computer, another Arduino, or other microcontrollers. The ATmega32U4 provides serial (CDC) communication over USB and appears as a virtual com port to software on the computer. The chip also acts as a full speed USB 2.0 device, using standard USB COM drivers. On Windows, a .inf file is required. The Arduino software includes a serial monitor which allows simple textual data to be sent to and from the Arduino board. The RX and TX LEDs on the board will flash when data is being transmitted via the USB connection to the computer.

The ATmega32U4 also supports SPI communication, that can be accessed through the SPI library.

The Esplora can appear as a generic keyboard and mouse, and can be programmed to control these input devices using the Keyboard and Mouse libraries.

Programming

The Esplora can be programmed with the Arduino software (download). Select "Arduino Esplora" from the Tools > Board menu. For details, see the getting started page.

The ATmega32U4 on the Arduino Esplora comes preburned with a bootloader that allows you to upload new code to it without the use of an external hardware programmer. It communicates using the AVR109 protocol.

You can also bypass the bootloader and program the microcontroller through the ICSP (In-Circuit Serial Programming) header; see these instructions for details.

Esplora Library

To facilitate writing sketches for the Esplora, there is a dedicated library that contains methods for reading the sensors and writing to the outputs on-board.

The library offers high level methods which provide pre-processed data, like degrees Fahrenheit or Celsius from the temperature sensor. It also enables easy access to the outputs, like writing values to the RGB LED.

Visit the Esplora library reference page to see the complete documentation of the library and examples.

Automatic (Software) Reset and Bootloader Initiation

Rather than requiring a physical press of the reset button before an upload, the Esplora is designed in a way that allows it to be reset by software running on a connected computer. The reset is triggered when the Esplora's virtual (CDC) serial / COM port is opened at 1200 baud and then closed. When this happens, the processor will reset, breaking the USB connection to the computer (meaning that the virtual serial / COM port will disappear). After the processor resets, the bootloader starts, remaining active for about 8 seconds. The bootloader can also be initiated by pressing the reset button on the Esplora. Note that when the board first powers up, it will jump straight to the user sketch, if present, rather than initiating the bootloader.

Because of the way the Esplora handles reset it's best to let the Arduino software try to initiate the reset before uploading, especially if you are in the habit of pressing the reset button before uploading on other boards. If the software can't reset the board you can always start the bootloader by pressing the reset button on the board.

USB Overcurrent Protection

The Esplora has a resettable polyfuse that protects your computer's USB ports from shorts and overcurrent. Although most computers provide their own internal protection, the fuse provides an extra layer of protection. If more than 500 mA is applied to the USB port, the fuse will automatically break the connection until the short or overload is removed.

Physical Characteristics

The maximum length and width of the Esplora PCB are 6.5 and 2.4 inches respectively, with the USB and TinkerKit connectors extending beyond the latter dimension. Four screw holes allow the board to be attached to a surface or case.

 

배송정보

  • 배송 방법택배
  • 배송 지역전국지역
  • 배송 비용2,700원 ~ 3,000원
  • 배송 기간1일 ~ 2일

배송에 대해 알려드려요

01. 결제(입금완료)완료 후 2-3일이내에 상품을 수령하실 수 있습니다. 02. 재고가 없거나 다시 재입고 될 경우(예약상품, 구두포함) 5-7일이 소요됩니다. 03. 배송비는 5만원 이상 구매시 무료 5만원 미만 구매시 2500원의 배송료가 있습니다.

교환/반품시 반드시 확인해주세요.

반품은 반드시 정해진 택배사를 이용해주세요. 반드시 고객센터나 게시판을 통해 반품의사를 알려주신 후 제품을 보내주셔야 합니다. 연락없이 보내실경우 반품 및 교환이 불가능합니다. 반품 및 교환에 대한 자세한 사항은 아래의 내용을 참고해주세요.

교환/반품이 불가능한 경우입니다.

제품을 받으신 후 일주일 이내에 교환, 반품신청을 하지 않았을 경우 고객님의 부주의로 인한 상품이 변형, 훼손 또는 파손 된 경우 제품이 오염되었을 경우 (립스틱, 화장품, 음식물 기타 오염물질로 인해) 제품을 착용 및 사용하거나, 제품의 택(라벨)이 제거 했거나, 제품을 수선, 수리, 세탁하였을 경우 반품 불가로 표기 된 상품을 구매한 경우 (니트류, 화이트계열, 세일상품 등) 반품 의사를 통보하지 않고 반품한 경우

ITEM REVIEW

상품후기쓰기 모두보기

게시물이 없습니다

ITEM REVIEW

상품후기쓰기 모두보기

게시물이 없습니다

판매자 정보

follow us