Flexispot E5 (E7)の電動昇降机。
- 電動で昇降できる
- プリセットが用意できる
- 最低の天板高さが60cmまで下げられる
という点で採用。
天板はホームセンターで買って加工してもらった幅180cm x 奥行70cm。絵を描くならもう少し奥行きがあると良いかも。
#include <M5StickC.h> | |
#include <BluetoothSerial.h> | |
BluetoothSerial SerialBT; | |
/* Set the delay between fresh samples */ | |
#define DELAY_MS (5) | |
int led = HIGH; |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Text; | |
using Unity.EditorCoroutines.Editor; | |
using UnityEditor; | |
using UnityEngine; | |
using UnityEngine.Networking; | |
namespace PushNotificationSample.EditorOnly | |
{ |
あまりにも翠星石が好きすぎたから地域の家出少女の掲示板探して12万用意して釣った19歳無職女に1週間翠星石コス&口調マネさせて暮らさせた最終的に4日目で逃げられたけど…… | |
翠星石としては駄目だったよ | |
そもそも衣装はLLで女のサイズはMでブカブカ | |
タバコ吸うし茶髪と金髪混じってるしリスカしてるし | |
マトモに演じられるタマではなかった | |
でも2日目あたりの「◯◯さん冷蔵庫のアイス食べていいんですぅ?」は今も心に残ってる | |
ていうか「逃げたかったら別に逃げてもいいよ」って言ってたし |
using System; | |
using System.Linq; | |
using System.Reflection; | |
using System.Collections.Generic; | |
using System.IO; | |
using UnityEngine; | |
using UnityEngine.SceneManagement; | |
using UnityEditor; | |
using UnityEditorInternal; | |
using UniGLTF; |
using System.Collections.Generic; | |
using UnityEditor; | |
using UnityEngine; | |
/// <summary> | |
/// ポップアップしてメッセージをユーザに伝える | |
/// Debug.LogErrorは読んでもらえないがち…それはそう… | |
/// </summary> | |
public class PopupContentMessage : PopupWindowContent |
using System.Text.RegularExpressions; | |
using System; | |
public class PathChecker{ | |
static bool IsContainHiragana(string str) | |
{ | |
return Regex.IsMatch(str, @"[\p{IsHiragana}]"); | |
} |