网站综合信息 www.justwinit.cn
    • 标题:
    • 向东博客 专注WEB应用 构架之美 --- 构架之美,在于尽态极妍 | 应用 
    • 关键字:
    •  
    • 描述:
    •  
    • 域名信息
    • 注册日期:  到期时间:
      邮箱:xdy108  电话:
      注册商:北京新网数码信息技术有限公司 
    • 服务器空间
    • IP:72.46.130.186 同IP网站3个 详情
      地址:美国 内华达州拉斯维加斯Versaweb
    • 备案信息
    • 备案号: 
    网站收录SEO数据
    • 搜索引擎
    • 收录量
    • 反向链接
    • 其他
    • 百度
    • 3,960  
    • 261  
    • 快照:2014-02-25  
    • Google
    • 3,480  
    • 0  
    • pr:2  
    • 雅虎
    • 0  
    •  
    •  
    • 搜搜
    • 0  
    •  
    •  
    • 搜狗
    • 0  
    •  
    • 评级:4/10  
    • 360搜索
    • 264  
    •  
    •  
    域名流量Alexa排名
    •  
    • 一周平均
    • 一个月平均
    • 三个月平均
    • Alexa全球排名
    • 766,620  
    • 平均日IP
    • 日总PV
    • 人均PV(PV/IP比例)
    • 反向链接
    • dmoz目录收录
    • -  
    • 流量走势图
    域名注册Whois信息

    justwinit.cn

    注 册 商: 北京新网数码信息技术有限公司
    注册邮箱: xdy108

    获取时间: 2015年09月28日 09:37:32
    Domain Name: justwinit.cn
    ROID: 20090928s10001s76192803-cn
    Domain Status: ok
    Registrant ID: 2f6dqa677s6071
    Registrant: 新浪网技术中国有限公司
    Registrant Contact Email: xdy108
    Sponsoring Registrar: 北京新网数码信息技术有限公司
    Name Server: f1g1ns1.dnspod.net
    Name Server: f1g1ns2.dnspod.net
    Registration Time: 2009-09-28 10:11:15
    Expiration Time: 2016-09-28 10:11:15
    DNSSEC: unsigned
    其他后缀域名
    • 顶级域名
    • 相关信息
    网站首页快照(纯文字版)
    抓取时间:2013年11月04日 21:41:38
    网址:http://www.justwinit.cn/
    标题:向东博客 专注WEB应用 构架之美 --- 构架之美,在于尽态极妍 | 应用之美,在于药到病除 - Life is Sh
    关键字:
    描述:
    主体:
    向东博客 专注WEB应用 构架之美 --- 构架之美,在于尽态极妍 | 应用之美,在于药到病除|Life is Short,Play it More,So Playin' with IT,Focus on Killer Application,Marketing Meets Technology.︻┳═一  Ζ〧φ﹀ヘ -首页Write边栏分页: 1/160    1  2  3  4  5  6  7  8  9  10  11  12  13  14  15  16  17  18  19  20  21      [ 显示模式: 摘要 | 列表 ][置顶] [实践Ok]在树莓派上安装python和GPIO库并控制GPIO管脚输出PWM,发微博!!!采用C语言较好并测试Ok。WEB2.0 » 系统架构与硬件 root 2013-9-15 12:51 评论(0) 阅读(4629)引用地址:  注意: 该地址仅在今日23:59:59之前有效如何使用PWm的方法:今天教大家在树莓派上如何安装python和python的GPIO库!简单4步就完成,方便大家使用树莓派的GPIO 1.安装python$ sudo apt-get install python-dev 2.执行更新$ sudo easy_install -U distribute3.安装python-pip$ sudo apt-get install python-pip 4.安装python的GPIO库$ sudo pip install rpi.gpio来自:http://www.eeboard.com/bbs/forum.php?mod=viewthread&tid=1815———————————————————————————————————————————————安装 新浪微博sdksudo apt-get install python-pipsudo pip install sinaweibopy写python脚本:testblog.py:#!/usr/bin/python import webbrowser import os import string import time from weibo import * def press_sina_weibo(): APP_KEY = '- - - - - - - - - -' #your app key APP_SECRET = '- - - - - - - - ' # your app secret CALLBACK_URL = '- - - - - - - -' #your CALLBACK_URLclient = APIClient(app_key=APP_KEY, app_secret=APP_SECRET, redirect_uri=CALLBACK_URL) print client.get_authorize_url() r = client.request_access_token(raw_input("input code:").strip()) client.set_access_token(r.access_token, r.expires_in)    tboard = raw_input('Enter the tempreture limited>') tlimit = string.atof(tboard) text2 = 'warning!!the tem is ' a = 1 while True: p = os.popen('sudo ./sensor','r') line = p.readline(); tnow = string.atof(line)         if  tnow > tlimit:                line = text2+line if a%2==0: line += '!!' line += '\n' utext = unicode(line,"UTF-8") client.post.statuses__update(status=utext) a = a+1 time.sleep(2)    if __name__ == '__main__': press_sina_weibo()———————————————————————————————————————————————http://www.eeboard.com/bbs/forum.php?mod=viewthread&tid=9546通过C语言进行控制二级管开关:#include <wiringPi.h>#include <stdio.h>#include <stdlib.h>int main (int argc, char* argv[]){int pinNumber = 4;if (-1 == wiringPiSetup()) {printf("failed to setup wiringPi");return 1;}   pinMode(pinNumber, OUTPUT);digitalWrite(pinNumber, 1);delay(200);digitalWrite(pinNumber, 0);delay(200);return 0;   }http://www.eeboard.com/bbs/forum.php?mod=viewthread&tid=9546引发出:https://github.com/wiringPiPHP的:https://github.com/WiringPi/WiringPi-PHP————————————————————————————————————————————————————而且树莓派杂志上的相关教程里都用的是这套库.   但除了 RPi.GPIO 库之外,  有一些第三方库也非常好用,  比如 WiringPi .  这是一款模仿 Arduino Wiring 风格的函数库, 使用起来非常简单.串口处理库(同时支持板载串口和USB转接的串口),LCD 库,简单的线程编程和进程优先级控制库 .WiringPi 还完全支持 PiFace 扩展板.更多的细节可以参考 WiringPi 的主页: https://projects.drogon.net/raspberry-pi/wiringpi/下载和安装:安装git-core sudo apt-get install git-core下载winringPi库 git clone git://git.drogon.net/wiringPi编译和安装库 c

    © 2010 - 2020 网站综合信息查询 同IP网站查询 相关类似网站查询 网站备案查询网站地图 最新查询 最近更新 优秀网站 热门网站 全部网站 同IP查询 备案查询

    2025-05-22 23:04, Process in 0.0033 second.