블로그 이미지
Leeway is... the freedom that someone has to take the action they want to or to change their plans.
maetel

Notice

Recent Post

Recent Comment

Recent Trackback

Archive

calendar

1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31
  • total
  • today
  • yesterday

Category

'Hardware/mC'에 해당되는 글 8건

  1. 2008.06.29 winAVR
  2. 2008.06.09 what is a microcontroller (student guide)
  3. 2008.03.17 SAM7-H256
  4. 2007.11.17 Arduino board
  5. 2007.07.24 AVR
  6. 2006.12.01 serial ports on Wiring board
  7. 2006.08.16 testing Wiring board
  8. 2006.08.16 Wiring board
2008. 6. 29. 03:04 Hardware/mC

WinAVRTM (pronounced "whenever") is a suite of executable, open source software development tools for the Atmel AVR series of RISC microprocessors hosted on the Windows platform. It includes the GNU GCC compiler for C and C++.
http://winavr.sourceforge.net/

Portable WinAVR is based on the regular WinAVR suite of software development tools for the Atmel AVR microprocessor series and is preconfigured to run directly from any removable medium (e.g. USB memory stick) without prior installation.

http://www.chip45.com/PortableWinAVR


'Hardware > mC' 카테고리의 다른 글

what is a microcontroller (student guide)  (0) 2008.06.09
SAM7-H256  (0) 2008.03.17
Arduino board  (0) 2007.11.17
AVR  (0) 2007.07.24
serial ports on Wiring board  (0) 2006.12.01
posted by maetel
2008. 6. 9. 17:58 Hardware/mC
http://www.parallax.com/

invalid-file

what is a microcontroller (student guide)


'Hardware > mC' 카테고리의 다른 글

winAVR  (0) 2008.06.29
SAM7-H256  (0) 2008.03.17
Arduino board  (0) 2007.11.17
AVR  (0) 2007.07.24
serial ports on Wiring board  (0) 2006.12.01
posted by maetel
2008. 3. 17. 15:59 Hardware/mC
(informed by Noah)
ARM Development Boards
KitKorea 상품
ARM J Tag


'Hardware > mC' 카테고리의 다른 글

winAVR  (0) 2008.06.29
what is a microcontroller (student guide)  (0) 2008.06.09
Arduino board  (0) 2007.11.17
AVR  (0) 2007.07.24
serial ports on Wiring board  (0) 2006.12.01
posted by maetel
2007. 11. 17. 13:31 Hardware/mC
사용자 삽입 이미지

Arduino-Diecimila schematic

'Hardware > mC' 카테고리의 다른 글

what is a microcontroller (student guide)  (0) 2008.06.09
SAM7-H256  (0) 2008.03.17
AVR  (0) 2007.07.24
serial ports on Wiring board  (0) 2006.12.01
testing Wiring board  (0) 2006.08.16
posted by maetel

AVR

2007. 7. 24. 16:52 Hardware/mC
http://en.wikipedia.org/wiki/Atmel_AVR

http://www.atmel.com/products/avr/

http://www.avrfreaks.net/



invalid-file

ATmega128 datasheet (summary)

invalid-file

ATmega128 datasheet



'Hardware > mC' 카테고리의 다른 글

SAM7-H256  (0) 2008.03.17
Arduino board  (0) 2007.11.17
serial ports on Wiring board  (0) 2006.12.01
testing Wiring board  (0) 2006.08.16
Wiring board  (0) 2006.08.16
posted by maetel
2006. 12. 1. 20:51 Hardware/mC
The Wiring I/O board has two built-in (hardware) serial ports called Serial and Serial1. The port Serial is available through the USB connector in the Wiring I/O board. The port Serial1 is available on Wiring I/O pins 2(Rx) and 3(Tx).

ref.
The Wiring Serial library
gone's Wiring workshop: serial

'Hardware > mC' 카테고리의 다른 글

SAM7-H256  (0) 2008.03.17
Arduino board  (0) 2007.11.17
AVR  (0) 2007.07.24
testing Wiring board  (0) 2006.08.16
Wiring board  (0) 2006.08.16
posted by maetel
2006. 8. 16. 16:49 Hardware/mC
To test Wiring board, I did :

1. I/O board installation
2. Trying an example, LED blinks :
// Blinking LED
// by BARRAGAN <http://barraganstudio.com>

int ledPin = 0; // LED connected to the Wiring I/O board pin 0

void setup()
{
pinMode(ledPin, OUTPUT); // sets the digital pin as output
}

void loop()
{
digitalWrite(ledPin, HIGH); // sets the LED on
delay(1000); // waits for a second
digitalWrite(ledPin, LOW); // sets the LED off
delay(1000);
}
3. Uploading a program into I/O board

And the board works!

'Hardware > mC' 카테고리의 다른 글

SAM7-H256  (0) 2008.03.17
Arduino board  (0) 2007.11.17
AVR  (0) 2007.07.24
serial ports on Wiring board  (0) 2006.12.01
Wiring board  (0) 2006.08.16
posted by maetel
2006. 8. 16. 15:24 Hardware/mC
wiring.org.co

Wiring is an open source programming environment and electronics i/o board to explore physical interaction design and tangible media aspects. Wiring builds on Processing.


사용자 삽입 이미지

Wiring board layout


In order to attach sensors and actuators the I/O board provides a set of connectors know as pins. A pin can be set as INPUT or OUTPUT, whether is used to read a sensor or create responses in the physical world through actuators. Sensors can be of different kinds but they may be grouped into digital and analog. Digital refers to signals with two possible states, ON or OFF, HIGH or LOW, like switches for example. Analog refers to signals that can take any value in a continuous range, like luminosity or temperature.

> Power Supply
1) A generic 7-13 Volt 800mA power supply with female, center positive connector
2) A USB Cable (generic USB printer cable) powered from the computer's USB port
(The USB VCP drivers for your PC platform to communicate with the Wiring I/O board.)


사용자 삽입 이미지

Wiring board circuit schematics



'Hardware > mC' 카테고리의 다른 글

SAM7-H256  (0) 2008.03.17
Arduino board  (0) 2007.11.17
AVR  (0) 2007.07.24
serial ports on Wiring board  (0) 2006.12.01
testing Wiring board  (0) 2006.08.16
posted by maetel