Skip to content

Instantly share code, notes, and snippets.

View SystemsAndroidRobotics's full-sized avatar

Hisashi_Ishihara SystemsAndroidRobotics

View GitHub Profile
<button onclick="openmessage()">メッセージ画面を開く</button>
<canvas id="canvas" width="600" height="400"></canvas>
<script>
<!--
function openmessage(){
window.confirm("メッセージ画面を開きました");
}
//-->
</script>
@SystemsAndroidRobotics
SystemsAndroidRobotics / UDP_simpleReceiver.ipynb
Created May 22, 2018 08:19
非常に単純なUDP受信コード
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SystemsAndroidRobotics
SystemsAndroidRobotics / UDP_simpleSender.ipynb
Last active May 22, 2018 08:07
非常に単純なUDP送信コード
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SystemsAndroidRobotics
SystemsAndroidRobotics / UDP.cs
Created May 22, 2018 07:21
UDP通信の機能を提供するC#クラス
/****
UDP通信クラス Hisashi Ishihara 2018/5/21更新
送信と受信のクライアントの生成,削除,送受信機能を提供するC#用クラスです.
---特徴---
・送信用ポート番号,送信先ポート番号,受信用ポート番号の三つのint型の値で初期化できます.
・送信は随時要求に応じて実施されます.
・受信は別スレッドの無限ループ内で自動的に繰り返し実施されます.
---使い方---
0. クラスの導入