Raspberry PiにUSB扇風機を接続してUSBポートをON/OFF制御する方法

', enableHover: false, enableTracking: true, buttons: { twitter: {via: ''}}, click: function(api, options){ api.simulateClick(); api.openPopup('twitter'); } }); $('#facebook').sharrre({ share: { facebook: true }, template: '
', enableHover: false, enableTracking: true, buttons:{layout: 'box_count'}, click: function(api, options){ api.simulateClick(); api.openPopup('facebook'); } }); // Scrollable sharrre bar, contributed by Erik Frye. Awesome! var $_shareContainer = $(".sharrre-container"), $_header = $('#header'), $_postEntry = $('.entry'), $window = $(window), startSharePosition = $_shareContainer.offset(),//object contentBottom = $_postEntry.offset().top + $_postEntry.outerHeight(), topOfTemplate = $_header.offset().top, topSpacing = _setTopSpacing(); //triggered on scroll shareScroll = function(){ var scrollTop = $window.scrollTop() + topOfTemplate, stopLocation = contentBottom - ($_shareContainer.outerHeight() + topSpacing); $_shareContainer.css({position : 'fixed'}); if( scrollTop > stopLocation ){ $_shareContainer.css( { position:'relative' } ); $_shareContainer.offset( { top: contentBottom - $_shareContainer.outerHeight(), left: startSharePosition.left, } ); } else if (scrollTop >= $_postEntry.offset().top - topSpacing){ $_shareContainer.css( { position:'fixed',top: '100px' } ); $_shareContainer.offset( { //top: scrollTop + topSpacing, left: startSharePosition.left, } ); } else if (scrollTop 1024 ) { topSpacing = distanceFromTop + $('.nav-wrap').outerHeight(); } else { topSpacing = distanceFromTop; } return topSpacing; } //setup event listeners $window.on('scroll', _.throttle( function() { if ( $window.width() > 719 ) { shareScroll(); } else { $_shareContainer.css({ top:'', left:'', position:'' }) } }, 50 ) ); $window.on('resize', _.debounce( function() { if ( $window.width() > 719 ) { shareMove(); } else { $_shareContainer.css({ top:'', left:'', position:'' }) } }, 50 ) ); });

おすすめ

2件のフィードバック

  1. わかめ より:

    お世話になります。Pi3の場合だと、制限付きではあるが個別に制御可能との事ですが、どちらの情報になりますでしょうか?お手数ですが、ご教示いただけます幸いです。

    返信
    • tango より:

      コメントありがとうございます。

      こちらで改めて調べましたら、「パソコン鳥のブログ」様に掲載されている記事をご参照すればよいのかなーと思います。

      『RaspberryPI 3 Model B で USBポートの電源をON/OFFする』

      少ない電流であれば、GPIOがおすすめです。比較的大きい電流の制御であれば、USB制御が向いてるのかなーと思います。

      以上です。ご参考までにお願いいたします。

      返信

コメントを残す

メールアドレスが公開されることはありません。


このサイトはスパムを低減するために Akismet を使っています。。