LEDx8個点灯キット [K-8LED1210]

LEDx8個点灯キット [K-8LED1210]
在庫切れ
●概要

LED、8個、5V

●仕様・機能

LEDx8個を使用したLED点灯キット、部品を基板に半田付けして使用する、詳細マニュアルがついていないので基板シルクや部品配置図を見ながら作成できる方にお勧め、動作電源:5V、接続:2.54mmピッチ9P、表記価格:1

●構成部品一覧

1206表面実装抵抗:220Ω~330Ω(x8)
1210表面実装LED:1210(x8)
ピンヘッダ(2.54mm/単列/L型):10P(x1)
基板:(x1)



●バリエーション:付属LEDの発光色

赤色
緑色
青色

●動作について

LEDx8シールド(I2C) [K-IFB8574]と連携して、びんぼうでいいのにて表示してみます。

・参考スケッチ

#include 【Wire.h】
// address of PCF8574 IC on TWI bus
#define IO_ADDR (0x70 >> 1)
void setup() {
Wire.begin(); // initialize the I2C/TWI interface
}
void loop() {
static unsigned char data = 0x01; // data to display on LEDs
static unsigned char direc = 1; // direction of knight rider display
// send the data to the LEDs
Wire.beginTransmission(IO_ADDR);
Wire.write(~data);
Wire.endTransmission();
delay(30); // speed of display
// shift the on LED in the specified direction
if (direc) {
data <<= 1;
}
else {
data >>= 1;
}
// see if a direction change is needed
if (data == 0x80) {
direc = 0;
}
if (data == 0x01) {
direc = 1;
}
}

※#include 【Wire.h】の【】を<>に書き換えてください。