0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

grbl_ESP32 WEB UI (wifi)

Last updated at Posted at 2020-08-15

#WIFIからGRBLを制御
grbl_ESP32はESP3DというwebベースのGコード制御に対応している。(WEB UI)
USBでシリアル接続しなくてもコントロールが可能。

ESP3D
https://github.com/luc-github/ESP3D

###WEB UI設定
config.hの以下を設定
(自宅のwifiに繋げるとき)
 //Connect to your local AP with these credentials
 #define CONNECT_TO_SSID "???????"
 #define SSID_PASSWORD "??????"
(?????に自宅wifiのSSIDとパスワードを入力)

ファームを書き込んだArduino IDEのシリアルモニタで
$I を打つとIPが表示されるのでwebブラウザでそのIPを叩く。

下記表示が出る(ちゃんとつながっていれば)
image.png

Flash Filesystemの「Choose Files」をクリックして、
Aruduino\libraries\Grbl_Esp32\data\内の
index.html.gzを選択し「upload」ボタンを押す。

リロードすると下記画面になる
image.png

左下のSD FilesのウインドウにLaserGRBLなどで生成したGコードファイルをアップロードして動かす。
(ファイル名の右に再生ボタン)
右下のウインドウで直接コマンド制御することも可能。
image.png
(128GBのマイクロSDカードは認識されなかった。32GBは問題なく動作することを確認)

パソコンが近くになくてもwifiさえつながっていればレーザー加工できるので大変便利。

ホーミング動作
https://youtu.be/k1f5RiOqayM

WEB UIからGコードを走らせた動画
https://youtu.be/nTk5zm0EwNQ

0
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?