source: rtos_arduino/trunk/arduino_lib/hardware/arduino/samd/libraries/Wire/examples/slave_receiver/slave_receiver.pde@ 136

Last change on this file since 136 was 136, checked in by ertl-honda, 8 years ago

ライブラリとOS及びベーシックなサンプルの追加.

File size: 978 bytes
Line 
1// Wire Slave Receiver
2// by Nicholas Zambetti <http://www.zambetti.com>
3
4// Demonstrates use of the Wire library
5// Receives data as an I2C/TWI slave device
6// Refer to the "Wire Master Writer" example for use with this
7
8// Created 29 March 2006
9
10// This example code is in the public domain.
11
12
13#include <Wire.h>
14
15void setup()
16{
17 Wire.begin(4); // join i2c bus with address #4
18 Wire.onReceive(receiveEvent); // register event
19 Serial.begin(9600); // start serial for output
20}
21
22void loop()
23{
24 delay(100);
25}
26
27// function that executes whenever data is received from master
28// this function is registered as an event, see setup()
29void receiveEvent(int howMany)
30{
31 while(1 < Wire.available()) // loop through all but the last
32 {
33 char c = Wire.read(); // receive byte as a character
34 Serial.print(c); // print the character
35 }
36 int x = Wire.read(); // receive byte as an integer
37 Serial.println(x); // print the integer
38}
Note: See TracBrowser for help on using the repository browser.