본문 바로가기

IoT/Intel Edison

Intel IoT Analytics 계정 추가 및 Edison 장치 등록하기 1. Google Analytics 사이트이 접속한다. 2. 계정을 생성한다. 계정은 Facebook, Google+, or GitHub 인증 또는 email을 이용하여 계정을 만들수 있다.3. 계정이 생성되고 로그인하게 되면 My Dashboard가 표시된다. 아래 그림에서 좌측 Devices에 보시면 1 Active라고 나타나는 것은 제가 가지고 있는 Edison을 1개 등록했기 때문에 나타나는 것이다. 4. Account 메뉴를 클릭하면 아래와 같은 메뉴가 나타난다. Activation 메뉴에서 눈 모양의 아이콘을 누르게 되면 코드 값이 보이게 된다. 이 값을 이용하여 Edison의 Serial 또는SSH 터미너을 이용하여 기기을 등록한다. 아래 그림과 같이 iotkit-admin activate .. 더보기
Intel Edison Stop Arduino functionality Intel Edison보드에서 Arduino IDE를 이용하여 프로그래밍을 하였을 경우 보드를 재부팅하여도 Sketch 프로그램이 계속하여 실행됩니다.이 실행되는 프로그램을 멈추게 하려면 Sketch을 삭제하시면 됩니다.실행되는 프로그램은 sketch.elf파일이며 /sketch 폴더 아래에 있습니다. 삭제하시는 방법은 다음과 같습니다.Step 1. Stop or Disable the clloader servicesystemctl stop clloader or systemctl disable clloader Step 2. Remove elf filerm /sketch/sketch.elf Step 3. Restart edisonsystemctl restart clloader 더보기
Grove - Touch & Relay Grove - Touch & Relay Grove - Touch Sensor enables you to replace press with touch. It can detect the change in capacitance when a finger is near by. That means no matter your finger directly touches the pad or just stays close to the pad, Grove - Touch Sensor would outputs HIGH also.The Grove-Relay module is a digital normally-open switch. Through it, you can control circuit of high voltage wit.. 더보기
Grove – Servo Grove - Servo Servo is absolutely a fun motion control device to play! Via a servo library built in Arduino IDE, you can locate it at any position between 0 to 180 degrees. With 4 shafts in different shapes coming, this servo is ready to drive a little fan, lift an object, or mimic a clock hand. Hardware Required - Intel® Edison for Arduino- Grove Base Shield v2- Grove Servo- Grove Rotary Angle .. 더보기
Grove - LCD RGB Backlight Grove - LCD RGBBacklightDone with tedious mono color backlight? This Grove enables you to set the color to whatever you like via the simple and concise Grove interface. It takes I2C as communication method with your microcontroller. So number of pins required for data exchange and backlight control shrinks from ~10 to 2, relieving IOs for other challenging tasks. Besides, Grove - LCD RGB Backlig.. 더보기
Grove – Rotary Angle Sensor Grove - Rotary Angle SensorThe rotary angle sensor produces analog output between 0 and Vcc (5V DC with Seeeduino) on its D1 connector. The D2 connector is not used. The angular range is 300 degrees with a linear change in value. The resistance value is 10k ohms, perfect for Arduino use. This may also be known as a “potentiometer ”. Hardware Required - Intel® Edison for Arduino- Grove Base Shiel.. 더보기
Grove - Sound Sensor Grove - Sound Sensor Grove - Sound Sensor can detect the sound strength of the environment. The main component of the module is a simple microphone, which is based on the LM358 amplifier and an electret microphone. This module's output is analog and can be easily sampled and tested by a Seeeduino. Hardware Required - Intel® Edison Module- Arduino* expansion board- Grove Base Shield v2- Grove Sou.. 더보기
Grove - Buzzer Grove - Buzzer The Grove - Buzzer module has a piezo buzzer as the main component. The piezo can be connected to digital outputs, and will emit a tone when the output is HIGH. Alternatively, it can be connected to an analog pulse-width modulation output to generate various tones and effects. Hardware Required - Intel® Edison Module- Arduino* expansion board- Grove Base Shield v2- Grove Buzzer Ci.. 더보기
Grove - Button and LED Grove - Button and LED This example shows you how to turn on or off an LED via button. Hardware Required - Intel® Edison Module- Arduino* expansion board- Grove Base Shield v2- Grove Button(P)- Grove LED Socket Kit Circuit Schematic Code const int buttonPin = 3; // the number of the pushbutton pinconst int ledPin = 7; // the number of the LED pin // variables will change:int buttonState = 0; // .. 더보기
Blink LED in Intel® Edison for Arduino expansion board Blink LED in Intel® Edison for Arduino expansion board Intel® Edison for Arduino 보드에 연결되어 있는 DS2 LED를 점멸 테스트 한다.DS2 LED는 PIN 13번에 연결되어 있다. Hardware Required - Intel® Edison Module- Arduino* expansion board Circuit Schematic Code /* Blink Turns on an LED on for one second, then off for one second, repeatedly. This example code is in the public domain. */ // Pin 13 has an LED connected on most Ard.. 더보기