0
0

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.

wemosで俺言語 その2

Last updated at Posted at 2023-04-13

概要

wemosで俺言語やってみる。
練習問題、やってみる。
構想編。

練習問題

web越しに、俺言語を実行する装置を発明せよ。

方針

  • ノートパソコン、アンドロイドタブレットのブラウザから操作する。

  • wemosのipアドレスは、シリアルコンソールで確認する。

  • webserverをポート80で、立てる。

  • 一行毎に実行する。

  • formをpostする。

  • lcdkeypadを検討する。



const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;  // arduino
const int rs = 0, en = 2, d4 = 4, d5 = 14, d6 = 12, d7 = 13; // Wemos D1 
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);// arduino
LiquidCrystal lcd(0, 2, 4, 14, 12, 13);// wemos d1

以上。

0
0
0

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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?