{"id":1276,"date":"2019-07-09T13:44:42","date_gmt":"2019-07-09T04:44:42","guid":{"rendered":"https:\/\/eguchi.jp\/blog\/?p=1276"},"modified":"2019-07-09T13:48:28","modified_gmt":"2019-07-09T04:48:28","slug":"m5stack-%ef%bc%93g%e6%8b%a1%e5%bc%b5%e3%83%9c%e3%83%bc%e3%83%89%e3%81%8cip%e3%82%92%e5%8f%96%e5%be%97%e3%81%99%e3%82%8b%e3%81%be%e3%81%a7","status":"publish","type":"post","link":"https:\/\/eguchi.jp\/blog\/?p=1276","title":{"rendered":"M5STACK  \uff13G\u62e1\u5f35\u30dc\u30fc\u30c9\u304cIP\u3092\u53d6\u5f97\u3059\u308b\u307e\u3067"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">\u7d4c\u7def<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/soracom.jp\/products\/kit\/3g_module_m5stack\/\">M5STACK\u7528\u306e\u62e1\u5f35\uff13G\u30dc\u30fc\u30c9<\/a>\u3092\u8a55\u4fa1\u3057\u3066\u3044\u308b\u3068\u3053\u308d\u306a\u306e\u3067\u3059\u304c\u3001\u901a\u4fe1\u304c\u53ef\u80fd\u306b\u306a\u308bIP\u30a2\u30c9\u30ec\u30b9\u53d6\u5f97\u3067\u304d\u308b\u307e\u3067\u306e\u6642\u9593\u304c\u9577\u3044\u306e\u3067\u3001\u4f55\u306b\u6642\u9593\u304b\u304b\u3063\u3066\u3044\u308b\u306e\u304b\uff1f\u3092\u8abf\u3079\u3066\u307f\u305f\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">IP\u30a2\u30c9\u30ec\u30b9\u53d6\u5f97\u307e\u3067\u306e\u6642\u9593\u3092\u8a08\u6e2c\u3059\u308b\u30b3\u30fc\u30c9<\/h2>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n#include &amp;lt;M5Stack.h&gt;\n\n#define CONSOLE Serial\n#define MODEM Serial2\n\n#define TINY_GSM_DEBUG Serial\n#define TINY_GSM_MODEM_UBLOX\n\n#include &amp;lt;TinyGsmClient.h&gt;\n\nTinyGsm modem(Serial2);\nTinyGsmClient ctx(modem);\n\nvoid setup() {\n  char buf&#x5B;64];\n  int nRet;\n  \n  M5.begin();\n  M5.Lcd.clear(BLACK);\n  M5.Lcd.setTextColor(WHITE);\n  M5.Lcd.println(F(&quot;M5Stack + 3G Module&quot;));\n\n  MODEM.begin(115200, SERIAL_8N1, 16, 17);    \/\/ 3G MODULE\n\n  uint64_t t1 = millis();\n    \n  CONSOLE.println(F(&quot;modem.restart()&quot;));\n  M5.Lcd.print(F(&quot;modem.restart()&quot;));\n  modem.restart();\n  M5.Lcd.println(F(&quot;done&quot;));\n\n  CONSOLE.println(F(&quot;getModemInfo:&quot;));\n  M5.Lcd.print(F(&quot;getModemInfo:&quot;));\n  String modemInfo = modem.getModemInfo();\n  M5.Lcd.println(modemInfo);\n\n  CONSOLE.println(F(&quot;waitForNetwork()&quot;));\n  M5.Lcd.print(F(&quot;waitForNetwork()&quot;));\n  while (!modem.waitForNetwork()) M5.Lcd.print(&quot;.&quot;);\n  M5.Lcd.println(F(&quot;Ok&quot;));\n\n  CONSOLE.println(F(&quot;gprsConnect(soracom.io)&quot;));\n  M5.Lcd.print(F(&quot;gprsConnect(soracom.io)&quot;));\n  modem.gprsConnect(&quot;soracom.io&quot;, &quot;sora&quot;, &quot;sora&quot;);\n  \/\/ modem.gprsConnect(&quot;mineo-d.jp&quot;, &quot;mineo@k-opti.com&quot;, &quot;mineo&quot;);\n  M5.Lcd.println(F(&quot;done&quot;));\n\n  CONSOLE.println(F(&quot;isNetworkConnected()&quot;));\n  M5.Lcd.print(F(&quot;isNetworkConnected()&quot;));\n  while (!modem.isNetworkConnected()) M5.Lcd.print(&quot;.&quot;);\n  M5.Lcd.println(F(&quot;Ok&quot;));\n\n  M5.Lcd.print(F(&quot;My IP addr: &quot;));\n  IPAddress ipaddr = modem.localIP();\n  M5.Lcd.print(ipaddr);\n  CONSOLE.println(ipaddr);\n\n\n  CONSOLE.printf(&quot;Time = %d &#x5B;ms]\\r\\n&quot;,millis() - t1);\n}\n\nvoid loop() {\n  if (MODEM.available() &gt; 0) {\n    CONSOLE.write(MODEM.read());\n  }\n\n  if (CONSOLE.available()) {\n    MODEM.write(CONSOLE.read());\n  }\n}\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\">\uff13\u3064\u306eSIM\u3067\u8a08\u6e2c\u3057\u3066\u307f\u305f(Docomo\u7db2\uff09<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>SORACOM IoT SIM(Plan01s)<\/strong><br>\uff11\u56de\u76ee 51433ms\u3001\uff12\u56de\u76ee 51984ms\u3001\uff13\u56de\u76ee 67185ms<br><br><strong>SORACOM IoT SIM(Plan-D)<\/strong><br>\uff11\u56de\u76ee 51802ms\u3001\uff12\u56de\u76ee 65727ms\u3001\uff13\u56de\u76ee 50859ms<br><br><strong>mineo Docomo\u30d7\u30e9\u30f3<\/strong>(APN\u5909\u66f4\u3057\u3066\u306e\u6e2c\u5b9a\uff09<br>\uff11\u56de\u76ee 52164ms\u3001\uff12\u56de\u76ee 68773ms\u3001\uff13\u56de\u76ee 53348ms<br><br><strong><em>\u7d50\u679c\u3068\u3057\u3066\u306f\u3001SIM\u306b\u95a2\u4fc2\u306a\u304f\u3001\u5927\u4f53\uff11\u5206\u8fd1\u304f\u6642\u9593\u304c\u304b\u304b\u308b\u3053\u3068\u304c\u5224\u660e<\/em><\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u3069\u3093\u306aAT\u30b3\u30de\u30f3\u30c9\u3092\u3084\u308a\u3068\u308a\u3057\u3066\u3044\u308b\u306e\u304b\uff1f<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">TinyGSMCommon.h\u5185\u306esendAT\u95a2\u6570\u5185\u306e\u30b3\u30e1\u30f3\u30c8\u30a2\u30a6\u30c8\u3055\u308c\u3066\u3044\u305fAT\u30b3\u30de\u30f3\u30c9\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u8a2d\u5b9a\u3057\u305f\u72b6\u6cc1\u3067\u3001\u53d6\u5f97\u3057\u305f\u30ed\u30b0<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n13:13:14.696 -&gt; modem.restart()\n13:13:14.696 -&gt; &#x5B;765] ### AT: \n13:13:15.009 -&gt; &#x5B;1064] ### AT: \n13:13:15.302 -&gt; &#x5B;1363] ### AT: \n13:13:15.589 -&gt; &#x5B;1662] ### AT: \n13:13:15.912 -&gt; &#x5B;1961] ### AT: \n13:13:16.196 -&gt; &#x5B;2260] ### AT: \n13:13:16.508 -&gt; &#x5B;2559] ### AT: \n13:13:16.800 -&gt; &#x5B;2858] ### AT: \n13:13:17.089 -&gt; &#x5B;3157] ### AT: \n13:13:17.382 -&gt; &#x5B;3456] ### AT: \n13:13:17.702 -&gt; &#x5B;3755] ### AT: \n13:13:17.702 -&gt; &#x5B;3758] ### AT: +CFUN=16\n13:13:21.200 -&gt; &#x5B;7246] ### TinyGSM Version: 0.7.9\n13:13:21.200 -&gt; &#x5B;7246] ### AT: \n13:13:21.491 -&gt; &#x5B;7545] ### AT: \n13:13:21.784 -&gt; &#x5B;7844] ### AT: \n13:13:22.072 -&gt; &#x5B;8143] ### AT: \n13:13:22.395 -&gt; &#x5B;8442] ### AT: \n13:13:22.685 -&gt; &#x5B;8741] ### AT: \n13:13:22.962 -&gt; &#x5B;9040] ### AT: \n13:13:23.273 -&gt; &#x5B;9339] ### AT: \n13:13:23.273 -&gt; &#x5B;9342] ### AT: E0\n13:13:23.273 -&gt; &#x5B;9347] ### AT: +CMEE=2\n13:13:23.273 -&gt; &#x5B;9351] ### AT: +CGMI\n13:13:23.307 -&gt; &#x5B;9355] ### AT: +GMM\n13:13:23.307 -&gt; &#x5B;9359] ### Modem: u-blox SARA-U201\n13:13:23.307 -&gt; &#x5B;9360] ### AT: +CPIN?\n13:13:24.308 -&gt; &#x5B;10367] ### AT: +CPIN?\n13:13:24.308 -&gt; getModemInfo:\n13:13:24.308 -&gt; &#x5B;10374] ### AT: I\n13:13:24.346 -&gt; waitForNetwork()\n13:13:24.346 -&gt; &#x5B;10393] ### AT: +CGREG?\n13:13:24.596 -&gt; &#x5B;10649] ### AT: +CGREG?\n13:13:24.852 -&gt; &#x5B;10904] ### AT: +CGREG?\n13:13:25.102 -&gt; &#x5B;11160] ### AT: +CGREG?\n13:13:25.351 -&gt; &#x5B;11416] ### AT: +CGREG?\n13:13:25.607 -&gt; &#x5B;11672] ### AT: +CGREG?\n13:13:25.856 -&gt; &#x5B;11928] ### AT: +CGREG?\n13:13:26.109 -&gt; &#x5B;12183] ### AT: +CGREG?\n13:13:26.362 -&gt; &#x5B;12438] ### AT: +CGREG?\n13:13:26.619 -&gt; &#x5B;12693] ### AT: +CGREG?\n13:13:26.902 -&gt; &#x5B;12948] ### AT: +CGREG?\n13:13:27.151 -&gt; &#x5B;13203] ### AT: +CGREG?\n13:13:27.403 -&gt; &#x5B;13458] ### AT: +CGREG?\n13:13:27.650 -&gt; &#x5B;13714] ### AT: +CGREG?\n13:13:27.903 -&gt; &#x5B;13969] ### AT: +CGREG?\n13:13:28.150 -&gt; &#x5B;14224] ### AT: +CGREG?\n13:13:28.436 -&gt; &#x5B;14479] ### AT: +CGREG?\n13:13:28.687 -&gt; &#x5B;14735] ### AT: +CGREG?\n13:13:28.938 -&gt; &#x5B;14991] ### AT: +CGREG?\n13:13:29.191 -&gt; &#x5B;15246] ### AT: +CGREG?\n13:13:29.437 -&gt; &#x5B;15502] ### AT: +CGREG?\n13:13:29.688 -&gt; &#x5B;15758] ### AT: +CGREG?\n13:13:29.946 -&gt; &#x5B;16013] ### AT: +CGREG?\n13:13:30.196 -&gt; &#x5B;16268] ### AT: +CGREG?\n13:13:30.447 -&gt; &#x5B;16524] ### AT: +CGREG?\n13:13:30.726 -&gt; &#x5B;16779] ### AT: +CGREG?\n13:13:30.981 -&gt; &#x5B;17035] ### AT: +CGREG?\n13:13:31.232 -&gt; &#x5B;17290] ### AT: +CGREG?\n13:13:31.487 -&gt; &#x5B;17545] ### AT: +CGREG?\n13:13:31.736 -&gt; &#x5B;17800] ### AT: +CGREG?\n13:13:31.986 -&gt; &#x5B;18056] ### AT: +CGREG?\n13:13:32.240 -&gt; &#x5B;18312] ### AT: +CGREG?\n13:13:32.491 -&gt; &#x5B;18567] ### AT: +CGREG?\n13:13:32.746 -&gt; &#x5B;18822] ### AT: +CGREG?\n13:13:33.031 -&gt; &#x5B;19077] ### AT: +CGREG?\n13:13:33.031 -&gt; gprsConnect(soracom.io)\n13:13:33.031 -&gt; &#x5B;19084] ### AT: +UPSDA=0,4\n13:13:33.031 -&gt; &#x5B;19092] ### AT: +CGATT=1\n13:13:33.031 -&gt; &#x5B;19097] ### AT: +UPSD=0,1,&quot; soracom.io &quot;\n13:13:33.031 -&gt; &#x5B;19103] ### AT: +UPSD=0,2,&quot; sora &quot;\n13:13:33.031 -&gt; &#x5B;19108] ### AT: +UPSD=0,3,&quot; sora &quot;\n13:13:33.068 -&gt; &#x5B;19116] ### AT: +UPSD=0,7,&quot;0.0.0.0&quot;\n13:13:33.068 -&gt; &#x5B;19121] ### AT: +UPSDA=0,3\n13:14:06.034 -&gt; &#x5B;52112] ### AT: +UPSND=0,8\n13:14:06.071 -&gt; isNetworkConnected()\n13:14:06.071 -&gt; &#x5B;52120] ### AT: +CGREG?\n13:14:06.071 -&gt; &#x5B;52127] ### AT: +UPSND=0,0\n13:14:06.071 -&gt; 10.234.40.104\n13:14:06.071 -&gt; Time = 51370 &#x5B;ms]\n\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\">\u89e3\u8aac<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">modem.restart()\u95a2\u6570\u5185\u3067\u306f\u3001\u30e2\u30c7\u30e0\u306e\u5fdc\u7b54\u3092\u78ba\u8a8d\u3057\u305f\u5f8c\u3001\u521d\u671f\u5316\u30b3\u30de\u30f3\u30c9(AT+CFUN=16)\u3092\u9001\u3063\u305f\u5f8c\u306b\u3001\u30a8\u30b3\u30fcOFF\u3068\u304b\u3084\u3063\u305f\u5f8c\u306b\u3001SIM\u306e\u72b6\u614b\u3092\u78ba\u8a8d\u3059\u308b\u3068\u3044\u3046\u306a\u3044\u3088\u3046\u3067\u3001\u30e2\u30c7\u30e0\u304c\u5fdc\u7b54\u3059\u308b\u307e\u3067\u3001\uff13\u301c\uff14\u79d2\u3082\u304b\u304b\u3063\u3066\u3044\u308b\u306e\u304c\u6c17\u306b\u306a\u308a\u307e\u3059\u304c\u3001MODEM\u304c\u8d77\u52d5\u3059\u308b\u306e\u306b\u3001\u305d\u308c\u3060\u3051\u304b\u304b\u308b\u3068\u3044\u3046\u3053\u3068\u306a\u306e\u3067\u3057\u3087\u3046\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">waitForNetwork()\u95a2\u6570\u306f\u30013G\u306e\u7db2\u3092\u63a2\u3057\u3066\u3001\u63a5\u7d9a\u3059\u308b\u3068\u3044\u3046\u3053\u3068\u3067\u3001\u898b\u3064\u304b\u308b\u307e\u3067\u306b\uff19\u79d2\u3050\u3089\u3044\u304b\u304b\u3063\u3066\u3044\u308b\u3088\u3046\u3067\u3059\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">gprsConnect()\u95a2\u6570\u306f\u3001PDP\u306b\u63a5\u7d9a\u3059\u308b\u70ba\u3001APN\u306e\u60c5\u5831\u3084\u8a8d\u8a3c\u60c5\u5831\u3092\u9001\u3063\u305f\u5f8c\u306b\u3001PDP\u306b\u63a5\u7d9a\u3059\u308b\u307e\u3067\u3001\uff13\uff13\u79d2\u7a0b\u5ea6\u304b\u304b\u3063\u3066\u3044\u308b\u3088\u3046\u3067\u3059\u3002\uff08\u3053\u3053\u304c\u9045\u3044\u539f\u56e0\uff01\uff1f\uff09<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">isNetworkConnected()\u306f\u3001PDP\u306b\u63a5\u7d9a\u3067\u304d\u3066\u3044\u308b\u306e\u304b\uff1f\u3092\u78ba\u8a8d\u3059\u308b\u95a2\u6570\u3067\u3001\u3053\u308c\u306f\u3001\u3042\u3063\u3066\u3082\u306a\u304f\u3066\u3082\u3044\u3044\u304b\u306a\uff1f\u3068\u601d\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u3068\u308a\u3042\u3048\u305a\u3001\uff19\u79d2\u304b\u304b\u3063\u3066\u3044\u308bwaitForNetwork()\u95a2\u6570\u3092\u629c\u3044\u3066\u307f\u308b\u3068\u3069\u3046\u306a\u308b\u306e\u304b\uff1f<\/h2>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n13:35:57.697 -&gt; modem.restart()\n13:35:57.697 -&gt; &#x5B;765] ### AT: \n13:35:57.980 -&gt; &#x5B;1064] ### AT: \n13:35:58.264 -&gt; &#x5B;1363] ### AT: \n13:35:58.577 -&gt; &#x5B;1662] ### AT: \n13:35:58.890 -&gt; &#x5B;1961] ### AT: \n13:35:59.181 -&gt; &#x5B;2260] ### AT: \n13:35:59.464 -&gt; &#x5B;2559] ### AT: \n13:35:59.791 -&gt; &#x5B;2858] ### AT: \n13:36:00.074 -&gt; &#x5B;3157] ### AT: \n13:36:00.374 -&gt; &#x5B;3456] ### AT: \n13:36:00.662 -&gt; &#x5B;3755] ### AT: \n13:36:00.662 -&gt; &#x5B;3758] ### AT: +CFUN=16\n13:36:04.158 -&gt; &#x5B;7245] ### TinyGSM Version: 0.7.9\n13:36:04.158 -&gt; &#x5B;7245] ### AT: \n13:36:04.452 -&gt; &#x5B;7544] ### AT: \n13:36:04.741 -&gt; &#x5B;7843] ### AT: \n13:36:05.060 -&gt; &#x5B;8142] ### AT: \n13:36:05.349 -&gt; &#x5B;8441] ### AT: \n13:36:05.673 -&gt; &#x5B;8740] ### AT: \n13:36:05.966 -&gt; &#x5B;9039] ### AT: \n13:36:06.247 -&gt; &#x5B;9338] ### AT: \n13:36:06.247 -&gt; &#x5B;9341] ### AT: E0\n13:36:06.247 -&gt; &#x5B;9345] ### AT: +CMEE=2\n13:36:06.286 -&gt; &#x5B;9349] ### AT: +CGMI\n13:36:06.286 -&gt; &#x5B;9353] ### AT: +GMM\n13:36:06.286 -&gt; &#x5B;9358] ### Modem: u-blox SARA-U201\n13:36:06.286 -&gt; &#x5B;9359] ### AT: +CPIN?\n13:36:07.265 -&gt; &#x5B;10365] ### AT: +CPIN?\n13:36:07.301 -&gt; getModemInfo:\n13:36:07.301 -&gt; &#x5B;10372] ### AT: I\n13:36:07.301 -&gt; gprsConnect(soracom.io)\n13:36:07.301 -&gt; &#x5B;10392] ### AT: +UPSDA=0,4\n13:36:07.301 -&gt; &#x5B;10400] ### AT: +CGATT=1\n13:36:15.988 -&gt; &#x5B;19076] ### AT: +UPSD=0,1,&quot; soracom.io &quot;\n13:36:15.988 -&gt; &#x5B;19081] ### AT: +UPSD=0,2,&quot; sora &quot;\n13:36:15.988 -&gt; &#x5B;19087] ### AT: +UPSD=0,3,&quot; sora &quot;\n13:36:16.026 -&gt; &#x5B;19093] ### AT: +UPSD=0,7,&quot;0.0.0.0&quot;\n13:36:16.026 -&gt; &#x5B;19098] ### AT: +UPSDA=0,3\n13:36:49.863 -&gt; &#x5B;52949] ### AT: +UPSND=0,8\n13:36:49.863 -&gt; isNetworkConnected()\n13:36:49.863 -&gt; &#x5B;52956] ### AT: +CGREG?\n13:36:49.863 -&gt; &#x5B;52963] ### AT: +UPSND=0,0\n13:36:49.901 -&gt; 10.234.40.104\n13:36:49.901 -&gt; Time = 52205 &#x5B;ms]\n\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\">\u8003\u5bdf<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">waitForNetwork()\u3092\u629c\u3044\u3066\u307f\u3066\u3082\u3001\u30c8\u30fc\u30bf\u30eb\u306e\u6642\u9593\u306f\u5909\u308f\u3089\u305a\u3063\u3066\u3053\u3068\u3067\u3001\u4eca\u5ea6\u306f\u4f55\u51e6\u306b\u6642\u9593\u304c\u304b\u304b\u3063\u3066\u3044\u308b\u306e\u304b\uff1f\u3092\u898b\u3066\u307f\u308b\u3068\u3001gprsConnect()\u95a2\u6570\u3067\u3001AT+CGATT=1\u306e\u5fdc\u7b54\u304c\u3001\u9577\u304f\u306a\u3063\u3066\u3044\u308b\u306e\u304c\u308f\u304b\u308a\u307e\u3059\u3002AT+CGATT=1\u3067\u30013G\u306e\u7db2\u306b\u63a5\u7d9a\u3092\u78ba\u8a8d\u3057\u3066\u3044\u308b\u306e\u3067\u3001\u5185\u90e8\u7684\u306b\u306f\u3001waitForNetwork()\u3068\u540c\u69d8\u306e\u3053\u3068\u3092\u3084\u3063\u3066\u3044\u308b\u306e\u3067\u3001\u30c8\u30fc\u30bf\u30eb\u6642\u9593\u306f\u5909\u308f\u3089\u306a\u3044\u3067\u3059\u306d\u3002PDP\u306e\u63a5\u7d9a\u5b8c\u4e86\u304c\u3069\u3046\u3084\u3063\u305f\u3089\u3001\u65e9\u304f\u3067\u304d\u308b\u306e\u304b\uff1f\u304c\u9375\u306e\u3088\u3046\u3067\u3059\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u4ee5\u4e0a\u3001\u3054\u53c2\u8003\u307e\u3067\u306b<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u7d4c\u7def M5STACK\u7528\u306e\u62e1\u5f35\uff13G\u30dc\u30fc\u30c9\u3092\u8a55\u4fa1\u3057\u3066\u3044\u308b\u3068\u3053\u308d\u306a\u306e\u3067\u3059\u304c\u3001\u901a\u4fe1\u304c\u53ef\u80fd\u306b\u306a\u308bIP\u30a2\u30c9\u30ec\u30b9\u53d6\u5f97\u3067\u304d\u308b\u307e\u3067\u306e\u6642\u9593\u304c\u9577\u3044\u306e\u3067\u3001\u4f55\u306b\u6642\u9593\u304b\u304b\u3063\u3066\u3044\u308b\u306e\u304b\uff1f\u3092\u8abf\u3079\u3066\u307f\u305f\u3002 IP\u30a2\u30c9\u30ec\u30b9\u53d6\u5f97\u307e\u3067\u306e\u6642\u9593\u3092\u8a08\u6e2c\u3059\u308b\u30b3\u30fc\u30c9 \uff13\u3064 &hellip; <a href=\"https:\/\/eguchi.jp\/blog\/?p=1276\" class=\"more-link\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"screen-reader-text\">M5STACK  \uff13G\u62e1\u5f35\u30dc\u30fc\u30c9\u304cIP\u3092\u53d6\u5f97\u3059\u308b\u307e\u3067<\/span> <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"class_list":["post-1276","post","type-post","status-publish","format-standard","hentry","category-2"],"_links":{"self":[{"href":"https:\/\/eguchi.jp\/blog\/index.php?rest_route=\/wp\/v2\/posts\/1276","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eguchi.jp\/blog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/eguchi.jp\/blog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/eguchi.jp\/blog\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/eguchi.jp\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1276"}],"version-history":[{"count":3,"href":"https:\/\/eguchi.jp\/blog\/index.php?rest_route=\/wp\/v2\/posts\/1276\/revisions"}],"predecessor-version":[{"id":1279,"href":"https:\/\/eguchi.jp\/blog\/index.php?rest_route=\/wp\/v2\/posts\/1276\/revisions\/1279"}],"wp:attachment":[{"href":"https:\/\/eguchi.jp\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1276"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/eguchi.jp\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1276"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/eguchi.jp\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1276"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}