M5StickC+UIFlowで振動モーターを動かしてみる
概要
UIFlowを使ってM5StickCで振動モーターを動かしてみました。
接続方法
振動モータを下記に接続
- GND
- 26ピン
コード
qiita.py
from m5stack import *
from m5ui import *
from uiflow import *
from easyIO import *
import time
setScreenColor(0x111111)
def buttonA_wasPressed():
# global params
digitalWrite(26, 1)
wait(5)
digitalWrite(26, 0)
pass
btnA.wasPressed(buttonA_wasPressed)
digitalWrite(26, 0)
試してみて思ったこと
qiita.py
from m5stack import *
from m5ui import *
from uiflow import *
from easyIO import *
import time
setScreenColor(0x111111)
def buttonA_wasPressed():
# global params
digitalWrite(26, 1)
wait(5)
digitalWrite(26, 0)
pass
btnA.wasPressed(buttonA_wasPressed)
digitalWrite(26, 0)
配線がごちゃごちゃしてしまうので、最終的にはHatを活用してすっきりさせたいです。
M5StickC用 Vibrator Hat
参考にしたサイト
Author And Source
この問題について(M5StickC+UIFlowで振動モーターを動かしてみる), 我々は、より多くの情報をここで見つけました https://qiita.com/keicafeblack/items/0454965a0116447e813c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .