富士通(FUJITSU) UV EPROM 32K 2732A-30Z MBM2732A-30Z-G
|
¥ 980 |
浜町庄金 研究開発 マイコンで遊んでばっかりで
|
¥ 980 |
I followed the procedure below, but the Drobo Pro continues to go into a reboot cycle:If you do not want to format your drive set, remove the entire drive set from the Drobo, keeping the drives in order.
Insert a paper clip into the reset hole on the plastic case to the left of the USB port on the back of the DroboPro, and hold it in FIRMLY.
While holding the paper clip FIRMLY in the reset hole, toggle ON the power to the DroboPro.
During this PIN Reset the lights on the DroboPro will do the following:
*** All of the drive lights will light up amber and all of the blue capacity lights will light up
*** All of the drive lights and all of the blue capacity lights will go out and only the green power light will still be lit
*** The blue capacity lights will start scrolling up the right-hand side of the DroboPro
*** All of the blue capacity lights will go out AND:
If the drives are still in the DroboPro, all of the drive lights will turn green.
If the drives are NOT in the DroboPro, the first drive light will turn solid red.




![]() | 定本 ディジタル・システムの設計―ディジタル技術の基礎からASIC設計まで 猪飼 国夫 本多 中二 CQ出版 1990-09 売り上げランキング : 732940 Amazonで詳しく見る by G-Tools |
![]() | 定本 ディジタル・システムの設計―ディジタル技術の基礎からASIC設計まで 猪飼 國夫 猪飼 維斗 CQ出版 2010-11 売り上げランキング : 186954 Amazonで詳しく見る by G-Tools |





![]() | パナソニック モバイルバッテリー 5,800mAh 無接点充電(Qi)対応 USBモバイル電源 ホワイト QE-PL203-W パナソニック 2013-06-26 売り上げランキング : 14475 Amazonで詳しく見る by G-Tools |



![]() | Raspberry Pi 2 Model B (1) 梅本合同会社, RS Components 売り上げランキング : 14 Amazonで詳しく見る by G-Tools |













int brightness = 0; // how bright the LED is
int fadeAmount = 5; // how many points to fade the LED by
int bright[4] = {0,0,0,0};
int i;
const int LED0 = 3;
const int LED1 = 5;
const int LED2 = 6;
const int LED3 = 9;
const int SW0 = 2;
const int SW1 = 4;
const int SW2 = 7;
const int SW3 = 8;
void setup() {
pinMode(LED0, OUTPUT);
pinMode(LED1, OUTPUT);
pinMode(LED2, OUTPUT);
pinMode(LED3, OUTPUT);
pinMode(SW0, INPUT);
pinMode(SW1, INPUT);
pinMode(SW2, INPUT);
pinMode(SW3, INPUT);
}
void loop() {
// set the brightness of pin 9:
analogWrite(LED0, bright[0]);
analogWrite(LED1, bright[1]);
analogWrite(LED2, bright[2]);
analogWrite(LED3, bright[3]);
// change the brightness for next time through the loop:
brightness = brightness + fadeAmount;
for(i=0;i<=3;i++){
bright[i] += fadeAmount;
}
if (digitalRead(SW0)==LOW) bright[0]=0;
if (digitalRead(SW1)==LOW) bright[1]=0;
if (digitalRead(SW2)==LOW) bright[2]=0;
if (digitalRead(SW3)==LOW) bright[3]=0;
// reverse the direction of the fading at the ends of the fade:
if (brightness == 0 || brightness == 255) {
fadeAmount = -fadeAmount ;
}
// wait for 30 milliseconds to see the dimming effect
delay(30);
}
実は手抜きしてあるので、最初揃っていた明滅のタイミングがボタンを押すことによりずれて行ってしまうよ。![]() | Arduinoをはじめよう 第2版 (Make:PROJECTS) Massimo Banzi 船田 巧 オライリージャパン 2012-03-16 売り上げランキング : 2218 Amazonで詳しく見る by G-Tools |
hardyboy