인텔 갈릴레오, 유용한 팁들

인텔 갈릴레오 스펙

갈릴레오를 사기 전에 알아야 할 것들

mini-pcie로 와이파이 모듈을 연결해보자

Sd카드로 부팅하자

갈릴레오 리눅스에 ssh로 붙자

gpio 프로그래밍

파이썬으로 갈릴레오를 쓰자

#!/usr/bin/env python
import sys

galileo_path = "/media/mmcblk0p1/";
if galileo_path not in sys.path:
    sys.path.append(galileo_path);

from pyGalileo import *

'''/*
  Blink
  Turns on an LED on for one second, then off for one second, repeatedly.

  This example code is in the public domain.
 */
 '''

#// the setup routine runs once when you press reset:
def setup():
    pinMode(led, OUTPUT);     

def loop():
    digitalWrite(led, HIGH);   #// turn the LED on (HIGH is the voltage level)
    delay(1000);               #// wait for a second
    digitalWrite(led, LOW);    #// turn the LED off by making the voltage LOW
    delay(1000);               #// wait for a second

#When the file is run from the command line, this fucntion will execute.
#This function just calls setup once, then calls loop over and over. 
if __name__ == "__main__":
    led = 13;
    setup();
    while(1):
        loop();

갈릴레오에 풀 버전 데비안 리눅스를 깔자 (apt-get 사용 가능)

// 2014.03.08
갈릴레오 데비안리눅스세팅 최종 버전 참조

 계속해서 업데이트 예정…

 

갈릴레오에 관한 유용한 정보를 얻고 싶다면 Intel Makers 커뮤니티를 이용하자.

 

댓글 남기기

이 사이트는 스팸을 줄이는 아키스밋을 사용합니다. 댓글이 어떻게 처리되는지 알아보십시오.