FrontPage

arduinoVNC インストール方法

170118b4.jpg

概要

ソースの入手

VNCサーバをインストール

ライブラリのインストール

プログラム(sketch)を開く

プログラムを修正

IO接続の修正

#define TFT_DC      15
#define TFT_CS       2
#define TFT_RESET   -1      // 未接続を示す

VNCサーバ関連設定

const char * vnc_ip = "192.168.1.12";
const uint16_t vnc_port = 5900;
const char * vnc_pass = "12345678";

WiFi設定

const char* ssid = "your-ssid";
const char* password = "your-password";

プログラムの書き込み

170118b3.jpg
170118b7.jpg

VNC_ILI9341_touch のインストール

170118b8.jpg

SP1をショートする

XPT2046ライブラリをインストール

プログラムの書き込み、実行

#define TOUCH_IRQ 4
#define TOUCH_CS  16
   tft.setRotation(3);   // 3に変更

   touch.begin(tft.getWidth(), tft.getHeight());
   touch.setRotation(3);
   touch.setCalibration(350, 550, 3550, 3600); // may need to be changed

トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS