'embeded/arduino(genuino)'에 해당되는 글 79건

  1. 2017.07.17 hoverlabs 사의 hover 제품
  2. 2017.02.11 아두이노 스켈레톤 코드 및 부트로더
  3. 2016.12.02 avrdude arduino
  4. 2016.11.28 pwm ppm decode
  5. 2016.11.25 arduino clcd
  6. 2016.11.25 arduino nano 스펙(PWM)
  7. 2016.05.09 아두이노 프로세싱(언어)
  8. 2016.04.27 arduino firmata
  9. 2016.04.19 attiny2313 usb client
  10. 2016.04.19 arduino usb joystic / atmega32u4
embeded/arduino(genuino)2017. 7. 17. 17:12

신기한 제품을 중고나라에서 팔고 있길래 찾아봄


[링크 : http://www.hoverlabs.co/products/hover/]

[링크 : http://chipkit.net/tag/hover-labs/]


The MGC3130 is the world’s first electrical-field (E-field) based three-dimensional (3D) tracking and gesture controller.

[링크 : http://www.microchip.com/wwwproducts/en/MGC3130]



간단하게 저 칩이 핵심이고

전기장을 이용해서 터치뿐만 아니라 0~20cm 이내의 x,y,z 축에 대한 포인팅을 집어내고

그걸 기반으로 제스쳐 데이터를 빼내는 듯(아래로,위로,좌,우 이런식 + 앞,뒤)

'embeded > arduino(genuino)' 카테고리의 다른 글

간만에 지름신  (0) 2017.10.26
릴레이로 AC전원 스위치하기  (0) 2017.10.26
아두이노 스켈레톤 코드 및 부트로더  (0) 2017.02.11
avrdude arduino  (0) 2016.12.02
pwm ppm decode  (0) 2016.11.28
Posted by 구차니
embeded/arduino(genuino)2017. 2. 11. 12:54

그렇게 궁금해 하던 오리지널 소스 발견!


int main(void)
{
init();
initVariant();
#if defined(USBCON)
USBDevice.attach();
#endif
setup();
for (;;) {
loop();

if (serialEventRun) serialEventRun();

}
return 0;
}



[링크 : https://github.com/arduino/Arduino/blob/master/hardware/arduino/avr/cores/arduino/main.cpp]

    [링크 : https://github.com/arduino/Arduino/tree/master/hardware/arduino/avr/cores/arduino]


[링크 : https://github.com/arduino/Arduino/tree/master/hardware/arduino/avr/bootloaders] AVR기반

[링크 : https://github.com/arduino/ArduinoCore-samd/tree/master/bootloaders/zero] ARM기반


2016/03/28 - [embeded/arduino(genuino)] - 아두이노 빌드 프로세스 & c/cpp



+

간단하게 말해서.. FT232 USB to RS232 칩에서 DTR를 감지하면 자동으로 리셋을 걸어버린다.

그런 이유로 아두이노 부트로더에만 업로드 하는 것이 있고,

아두이노 sketch쪽 스켈레톤 코드에는 특정 코드에서 리부팅 하는 부분이 없다.


Since the DTR signal goes from 5V to 0 at the moment a new connection to the Arduino is started, if you send this signal to the reset line of the Arduino's processor, it resets. 

[링크 : http://www.instructables.com/id/Overview-the-Arduino-sketch-uploading-process-and-/]


Data Terminal Ready (DTR) is a control signal in RS-232 serial communications, transmitted from data terminal equipment (DTE), such as a computer, to data communications equipment (DCE), for example a modem, to indicate that the terminal is ready for communications and the modem may initiate a communications channel.

[링크 : https://en.wikipedia.org/wiki/Data_Terminal_Ready]

[링크 : https://www.arduino.cc/en/uploads/Main/ArduinoNano30Schematic.pdf]


대충보면.. Makefile에서 sketch를 c로 변경해서 빌드할때 .text 섹션을 BOOT_START 주소로 옮기고 링킹하는 듯?


$ vi /usr/share/arduino/hardware/arduino/bootloaders/caterina/Makefile

#---------------- Linker Options ---------------- # -Wl,...: tell GCC to pass this to linker. # -Map: create map file # --cref: add cross reference to map file LDFLAGS = -Wl,-Map=$(TARGET).map,--cref LDFLAGS += -Wl,--section-start=.text=$(BOOT_START) LDFLAGS += -Wl,--relax LDFLAGS += -Wl,--gc-sections LDFLAGS += $(EXTMEMOPTS) LDFLAGS += $(patsubst %,-L%,$(EXTRALIBDIRS)) LDFLAGS += $(PRINTF_LIB) $(SCANF_LIB) $(MATH_LIB) #LDFLAGS += -T linker_script.x








-Wl,--section-start=.bootloader=0x1E000 

[링크 : http://www.atmel.com/webdoc/AVRLibcReferenceManual/FAQ_1faq_reloc_code.html]

'embeded > arduino(genuino)' 카테고리의 다른 글

릴레이로 AC전원 스위치하기  (0) 2017.10.26
hoverlabs 사의 hover 제품  (0) 2017.07.17
avrdude arduino  (0) 2016.12.02
pwm ppm decode  (0) 2016.11.28
arduino clcd  (0) 2016.11.25
Posted by 구차니
embeded/arduino(genuino)2016. 12. 2. 21:46

아두이노에서 아두이노 부트로더를 통해 시리얼로 업로드 하는데

avrdude를 통해 사용할떄는 프로그래머 타입을 arduino로 설정을 한다.

avrdude: Version 6.0.1, compiled on Apr 15 2015 at 19:59:58

         Copyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/

         Copyright (c) 2007-2009 Joerg Wunsch


         System wide configuration file is "C:\Program Files (x86)\Arduino\hardware\tools\avr/etc/avrdude.conf"


         Using Port                    : COM6

         Using Programmer              : arduino

         Overriding Baud Rate          : 57600

         AVR Part                      : ATmega328P 

2016/03/27 - [embeded/arduino(genuino)] - 아두이노 나노 - 시리얼 테스트


Binary sketch size: 1,084 bytes (of a 30,720 byte maximum)

D:/arduino-1.0.4/hardware/tools/avr/bin/avrdude -CD:/arduino-1.0.4/hardware/tools/avr/etc/avrdude.conf -v -v -v -v -patmega328p -carduino -P.COM22 -b57600 -D -Uflash:w:C:/Users/aSensar/AppData/Local/Tempbuild1227546797508918322.tmpBlink.cpp.hex:i 

[링크 : http://asensar.com/article/program-arduino-with-avrdude.html]


라즈베리의 GPIO를 통해서 spi 통신을 하는건지 

라즈베리의 spi로 avrisp를 흉내내는건진 잘 모르겠다.

[링크 : https://learn.adafruit.com/program-an-avr-or-arduino-using-raspberry-pi-gpio-pins/installation]


[링크 : https://www.arduino.cc/en/Hacking/Bootloader?from=Tutorial.Bootloader]

[링크 : http://svn.savannah.nongnu.org/viewvc/trunk/avrdude/arduino.c?revision=1321...p]

'embeded > arduino(genuino)' 카테고리의 다른 글

hoverlabs 사의 hover 제품  (0) 2017.07.17
아두이노 스켈레톤 코드 및 부트로더  (0) 2017.02.11
pwm ppm decode  (0) 2016.11.28
arduino clcd  (0) 2016.11.25
arduino nano 스펙(PWM)  (0) 2016.11.25
Posted by 구차니
embeded/arduino(genuino)2016. 11. 28. 18:30

'embeded > arduino(genuino)' 카테고리의 다른 글

아두이노 스켈레톤 코드 및 부트로더  (0) 2017.02.11
avrdude arduino  (0) 2016.12.02
arduino clcd  (0) 2016.11.25
arduino nano 스펙(PWM)  (0) 2016.11.25
아두이노 프로세싱(언어)  (0) 2016.05.09
Posted by 구차니
embeded/arduino(genuino)2016. 11. 25. 20:46

4bit 8bit hd44780


[링크 : https://www.arduino.cc/en/Reference/LiquidCrystal]]

[링크 : https://www.arduino.cc/en/Tutorial/LiquidCrystalDisplay]

[링크 : http://playground.arduino.cc/Code/LCD]


근데 내가 가진건. hd44780 계열이 아니네...

sed1520 - cm04075

[링크 : https://www.devicemart.co.kr/1077090]

+ 2020.03.08

[링크 : https://blog.naver.com/ssw152003/220694366332]


s6a0069 / ks0066u - lc1628

[링크 : https://www.devicemart.co.kr/1075057]

'embeded > arduino(genuino)' 카테고리의 다른 글

avrdude arduino  (0) 2016.12.02
pwm ppm decode  (0) 2016.11.28
arduino nano 스펙(PWM)  (0) 2016.11.25
아두이노 프로세싱(언어)  (0) 2016.05.09
arduino firmata  (0) 2016.04.27
Posted by 구차니
embeded/arduino(genuino)2016. 11. 25. 10:04

6채널까지 가능

흐음..


조금 더 많았으면 좋았을텐데 조금 아쉽네


Microcontroller Atmel ATmega168 or ATmega328

Operating Voltage (logic level) 5 V

Input Voltage (recommended) 7-12 V

Input Voltage (limits) 6-20 V

Digital I/O Pins 14 (of which 6 provide PWM output)

Analog Input Pins 8

[링크 : https://www.arduino.cc/en/Main/ArduinoBoardNano]


아두이노 마이크로는 7채널이네

Microcontroller ATmega32U4

Operating Voltage 5V

Input Voltage (recommended) 7-12V

Input Voltage (limit) 6-20V

Digital I/O Pins 20

PWM Channels 7

Analog Input Channels 12

[링크 : https://www.arduino.cc/en/Main/ArduinoBoardMicro]


3,5,6,9,10,11 번이 PWM 이라고 했는데

아두이노 핀 번호라고 해야하나 어떻게 매핑되는진 매번 찾아야 할지도...


[링크 : https://forum.arduino.cc/index.php?topic=147582.0]

    [링크 : http://www.pighixxx.com/test/pinouts/boards/nano.pdf]

'embeded > arduino(genuino)' 카테고리의 다른 글

pwm ppm decode  (0) 2016.11.28
arduino clcd  (0) 2016.11.25
아두이노 프로세싱(언어)  (0) 2016.05.09
arduino firmata  (0) 2016.04.27
attiny2313 usb client  (0) 2016.04.19
Posted by 구차니
embeded/arduino(genuino)2016. 5. 9. 09:36

아두이노를 프로세싱으로 하려면..

jar 받아서 추가해주면 되는 듯?


[링크 : http://playground.arduino.cc/Interfacing/Processing]

[링크 : https://www.arduino.cc/en/Reference/Comparison]

'embeded > arduino(genuino)' 카테고리의 다른 글

arduino clcd  (0) 2016.11.25
arduino nano 스펙(PWM)  (0) 2016.11.25
arduino firmata  (0) 2016.04.27
attiny2313 usb client  (0) 2016.04.19
arduino usb joystic / atmega32u4  (0) 2016.04.19
Posted by 구차니
embeded/arduino(genuino)2016. 4. 27. 09:08

아두이노 예제에 있는데 머하는 넘인지 찾아 봐야지




[링크 : https://www.arduino.cc/en/Reference/Firmata]

[링크 : https://github.com/firmata/protocol]

[링크 : http://www.firmata.org/wiki/Main_Page]

'embeded > arduino(genuino)' 카테고리의 다른 글

arduino nano 스펙(PWM)  (0) 2016.11.25
아두이노 프로세싱(언어)  (0) 2016.05.09
attiny2313 usb client  (0) 2016.04.19
arduino usb joystic / atmega32u4  (0) 2016.04.19
processing / arduino / mpu-6050  (0) 2016.04.14
Posted by 구차니
embeded/arduino(genuino)2016. 4. 19. 22:07

attiny 12MHz로 일반 gpio를 이용 저속 usb 통신하는 녀석..

int0 / int1 인가.. gpio로 pd2 / pd3 일려나..


[링크 : http://codeandlife.com/2012/01/22/avr-attiny-usb-tutorial-part-1/]

[링크 : http://codeandlife.com/2012/01/25/avr-attiny-usb-tutorial-part-2/]

[링크 : http://codeandlife.com/2012/01/29/avr-attiny-usb-tutorial-part-3/]

[링크 : http://codeandlife.com/2012/02/04/avr-attiny-usb-tutorial-part-4/]



USBtiny is a software implementation of the USB low-speed protocol for the Atmel ATtiny microcontrollers.

[링크 : http://dicks.home.xs4all.nl/avr/usbtiny/]


V-USB is a software-only implementation of a low-speed USB device for Atmel’s AVR® microcontrollers, making it possible to build USB hardware with almost any AVR® microcontroller, not requiring any additional chip.




[링크 : https://www.obdev.at/products/vusb/index.html]

'embeded > arduino(genuino)' 카테고리의 다른 글

아두이노 프로세싱(언어)  (0) 2016.05.09
arduino firmata  (0) 2016.04.27
arduino usb joystic / atmega32u4  (0) 2016.04.19
processing / arduino / mpu-6050  (0) 2016.04.14
아두이노.. gpio로 pwm 신호 출력  (0) 2016.04.13
Posted by 구차니
embeded/arduino(genuino)2016. 4. 19. 21:59

아두이노로 조이스틱이나 키보드 만드는게 보여서 검색을 해보니

특정 버전의 아두이노에서만 되는 이유가

ATmega??U4 시리즈에는 USB 컨트롤러가 내장되어 있어서 였군 -_-


ATmega16U4/ATmega32U4

8-bit Microcontroller with 16/32K bytes of ISP Flash and USB Controller

[링크 : http://www.atmel.com/images/atmel-7766-8-bit-avr-atmega16u4-32u4_datasheet.pdf]


[링크 : http://www.instructables.com/id/Add-USB-Game-Controller-to-Arduino-LeonardoMicro/]

[링크 : https://github.com/MHeironimus/ArduinoJoystickLibrary]




'embeded > arduino(genuino)' 카테고리의 다른 글

arduino firmata  (0) 2016.04.27
attiny2313 usb client  (0) 2016.04.19
processing / arduino / mpu-6050  (0) 2016.04.14
아두이노.. gpio로 pwm 신호 출력  (0) 2016.04.13
아두이노 스테핑 모터..  (0) 2016.04.13
Posted by 구차니