質問編集履歴

4

パスワード消去

2023/01/18 19:21

投稿

kikik
kikik

スコア24

test CHANGED
File without changes
test CHANGED
@@ -27,8 +27,8 @@
27
27
  #include <WiFiClientSecure.h>
28
28
 
29
29
  //****** ネットワーク関連 ******
30
- const char* ssid = "GlocalMe_0PEERU"; // your network SSID (name of wifi network)
30
+ const char* ssid = ""; // your network SSID (name of wifi network)
31
- const char* password = "80470737"; // your network password
31
+ const char* password = ""; // your network password
32
32
 
33
33
  const char* host = "script.google.com";
34
34
  String exec_url = "https://script.google.com/macros/s/AKfycbyHyq0tOPGTXQCFaSkQHkvNpLnNqCXLgzLBgWBhrI3LydWOG4awZltICRC1bzZc3jln/exec";

3

文の追加

2023/01/18 19:04

投稿

kikik
kikik

スコア24

test CHANGED
File without changes
test CHANGED
@@ -16,7 +16,7 @@
16
16
  と出て終わる
17
17
 
18
18
  Arduinoに書いたコード
19
- client.connect(host, 443)
19
+ if (client.connect(host, 443))
20
20
  が原因だと思うのですが解決策がわかりません。
21
21
  ### 該当のソースコード
22
22
  http://toolware.jp/m5stack-spreadsheet/

2

文の追加

2023/01/18 18:57

投稿

kikik
kikik

スコア24

test CHANGED
File without changes
test CHANGED
@@ -14,6 +14,10 @@
14
14
  MainLoop
15
15
  Response : ERROR
16
16
  と出て終わる
17
+
18
+ Arduinoに書いたコード
19
+ client.connect(host, 443)
20
+ が原因だと思うのですが解決策がわかりません。
17
21
  ### 該当のソースコード
18
22
  http://toolware.jp/m5stack-spreadsheet/
19
23
  にも書いてあります。

1

実行時の結果を追加

2023/01/18 07:50

投稿

kikik
kikik

スコア24

test CHANGED
File without changes
test CHANGED
@@ -186,4 +186,37 @@
186
186
 
187
187
  newSheet.insertChart(myChart);
188
188
  }
189
-
189
+ ```
190
+ ### 実行時のシリアルモニタの内容
191
+ ```
192
+ 16:33:09.993 -> ets Jul 29 2019 12:21:46
193
+ 16:33:09.993 ->
194
+ 16:33:09.993 -> rst:0x1 (POWERON_RESET),boot:0x17 (SPI_FAST_FLASH_BOOT)
195
+ 16:33:09.993 -> configsip: 0, SPIWP:0xee
196
+ 16:33:09.993 -> clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
197
+ 16:33:09.993 -> mode:DIO, clock div:1
198
+ 16:33:09.993 -> load:0x3fff0030,len:1344
199
+ 16:33:09.993 -> load:0x40078000,len:13864
200
+ 16:33:09.993 -> load:0x40080400,len:3608
201
+ 16:33:09.993 -> entry 0x400805f0
202
+ 16:33:10.364 -> M5Stack initializing...
203
+ 16:33:11.283 -> OK
204
+ ```
205
+ ### M5STACKの画面の内容
206
+ ```
207
+ Send data to Google Spreadsheet
208
+ ```
209
+
210
+ ```
211
+ Connecting to WiFi.
212
+ ```
213
+
214
+ ```
215
+ Connected to ***************
216
+ IP: 192.*******
217
+ ```
218
+
219
+ ```
220
+ MainLoop
221
+ Response : ERROR
222
+ ```