Close

3790 Results for "∇ 최저가 Ò1Ò《⑤⑦93》74⑸⑻ ∇삼성동뉴테란Ω선릉뉴테란consent삼성동뉴테란ゑ선릉뉴테란ice 강남뉴테란f선릉뉴테란√강남뉴테란ηⅡ뉴테란셔츠룸knight"

  • RPi Lego Bot 2.0

  • Basic SetupThe OS used int htis project is Raspbian, because I'm a more familliar with debian and it already supports python and makes the GPIOs easily accessible.Download it and flash it on a SD card with 4GB or more. Plug it into your Pi and add the...
  • I2C Sensors and debugging

  • I wanted to use a BMP280 I had in my parts bin for altitude measurements. I have used it in the past for a simple weather station and it works great! Turns out, it is even the go to sensor for Stratux, so I went ahead and plugged it in, activated it...
  • Spectrum Analyser Code

  • SoftwareThe code can be downloaded from the project downloads page. But here it is:#include const static char ASCII[] PROGMEM = { 0x00, 0x00, 0x00, 0x00, 0x00, // 20 0x00, 0x00, 0x5f, 0x00, 0x00, // 21 ! 0x00, 0x07, 0x00, 0x07, 0x00, // 22 " 0x14, 0x7f,...
  • Arduino-Compatible FPGA Shield

  • Step 2 - Import the Arduino board file into Altium Designer:  Using Altium Designer (AD) requires that I import Eagle board into AD.  AD14.x includes an Eagle importer.  Used source files from the Arduino site to import in AD.  
  • Free Presidential Style Hotline

  • MSP430G2231 Code:For a starting point I used this excellent project from Stefan Wendler. MSP430G2231 Software UART. The code below replaces main.c from his “timer-a-uart” branch.#include #include #include "uart.h" #define BUTTON BIT3 //...
  • Free Presidential Style Hotline

  • Python Code:import serial import subprocess ser = serial.Serial() ser.port = "/dev/ttyACM0" ser.baudrate = 9600 ser.open() value = 0 blinkcount = 10 while 1: p = subprocess.Popen(["linphonecsh", "status", "hook"], stdout=subprocess.PIPE) result = p.communicate()[0]...
  • Free Presidential Style Hotline

  • Yate(Yet Another Telephony Engine):Answering Google Voice calls that are forwarded to Google chat is tricky if you don't want to use the Gmail chat application. I found the most functional results were achieved by using Yate, to create an SIP server...
  • Free Presidential Style Hotline

  • Linphonec and Linphonecsh:This is the softphone I used to interact with the python program. It is a little particular to get working so here are some directions. First run linphonec once to create a .linphonerc configuration file in your home folder....
  • TI-84+ SE Backlight

  • Assemble your LCD sandwich with the EL panel on the back, then the polarizer, then the glass. You can use some scotch tape around the edge to hold everything in place. I used some putty to stick the whole thing to the PCB, but you could also use some...
  • DIY SlingBox $30

  • This is the code I used for the right frame in the first picture.#!/usr/bin/perl#use CGI qw/:standard/;use URI::Escape;my $cols = 3;my %button_codes;$button_codes{'1'}='BTN_1';$button_codes{'2'}='BTN_2';$button_codes{'3'}='BTN_3';$button_codes{'4'}='BTN_4';$button_codes{'5'}='BTN_5';$button_codes{'6'}='BTN_6';$button_codes{'7'}='BTN_7';$button_codes{'8'}='BTN_8';$button_codes{'9'}='BTN_9';$button_codes{'0'}='BTN_0';$button_codes{'Ch-'}='KEY_CHANNELDOWN';$button_codes{'Ch+'}='KEY_CHANNELUP';if...