事前学習・準備¶
+ほげほげ
+diff --git a/_build/doctrees/arduino.doctree b/_build/doctrees/arduino.doctree index 1c26b06..f3d046b 100644 --- a/_build/doctrees/arduino.doctree +++ b/_build/doctrees/arduino.doctree Binary files differ diff --git a/_build/doctrees/conclusion.doctree b/_build/doctrees/conclusion.doctree index 808a991..1ff8460 100644 --- a/_build/doctrees/conclusion.doctree +++ b/_build/doctrees/conclusion.doctree Binary files differ diff --git a/_build/doctrees/environment.pickle b/_build/doctrees/environment.pickle index 2c73d8e..f379051 100644 --- a/_build/doctrees/environment.pickle +++ b/_build/doctrees/environment.pickle Binary files differ diff --git a/_build/doctrees/index.doctree b/_build/doctrees/index.doctree index 3d66172..b1b404d 100644 --- a/_build/doctrees/index.doctree +++ b/_build/doctrees/index.doctree Binary files differ diff --git a/_build/doctrees/intro.doctree b/_build/doctrees/intro.doctree index 0c146a8..1d24546 100644 --- a/_build/doctrees/intro.doctree +++ b/_build/doctrees/intro.doctree Binary files differ diff --git a/_build/doctrees/tutorial.doctree b/_build/doctrees/tutorial.doctree index 556cf9b..b5d709b 100644 --- a/_build/doctrees/tutorial.doctree +++ b/_build/doctrees/tutorial.doctree Binary files differ diff --git a/_build/html/.buildinfo b/_build/html/.buildinfo index 75c3eb8..371e8c7 100644 --- a/_build/html/.buildinfo +++ b/_build/html/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: fc0dba702e525f564abcc0617f831f1a +config: bd9add27c6c7b46f7f9cc7e532aef33c tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/_build/html/.doctrees/00_pre.doctree b/_build/html/.doctrees/00_pre.doctree new file mode 100644 index 0000000..39aaed2 --- /dev/null +++ b/_build/html/.doctrees/00_pre.doctree Binary files differ diff --git a/_build/html/.doctrees/01_week.doctree b/_build/html/.doctrees/01_week.doctree new file mode 100644 index 0000000..23bea06 --- /dev/null +++ b/_build/html/.doctrees/01_week.doctree Binary files differ diff --git a/_build/html/.doctrees/02_week.doctree b/_build/html/.doctrees/02_week.doctree new file mode 100644 index 0000000..ee00ab5 --- /dev/null +++ b/_build/html/.doctrees/02_week.doctree Binary files differ diff --git a/_build/html/.doctrees/arduino.doctree b/_build/html/.doctrees/arduino.doctree index a2d551b..822fe14 100644 --- a/_build/html/.doctrees/arduino.doctree +++ b/_build/html/.doctrees/arduino.doctree Binary files differ diff --git a/_build/html/.doctrees/conclusion.doctree b/_build/html/.doctrees/conclusion.doctree index 3889205..2cb77e8 100644 --- a/_build/html/.doctrees/conclusion.doctree +++ b/_build/html/.doctrees/conclusion.doctree Binary files differ diff --git a/_build/html/.doctrees/environment.pickle b/_build/html/.doctrees/environment.pickle index df8ac71..1f1769c 100644 --- a/_build/html/.doctrees/environment.pickle +++ b/_build/html/.doctrees/environment.pickle Binary files differ diff --git a/_build/html/.doctrees/index.doctree b/_build/html/.doctrees/index.doctree index 74e206a..bd84052 100644 --- a/_build/html/.doctrees/index.doctree +++ b/_build/html/.doctrees/index.doctree Binary files differ diff --git a/_build/html/.doctrees/intro.doctree b/_build/html/.doctrees/intro.doctree index b24d9e0..eb1815d 100644 --- a/_build/html/.doctrees/intro.doctree +++ b/_build/html/.doctrees/intro.doctree Binary files differ diff --git a/_build/html/.doctrees/pre.doctree b/_build/html/.doctrees/pre.doctree new file mode 100644 index 0000000..c9304b6 --- /dev/null +++ b/_build/html/.doctrees/pre.doctree Binary files differ diff --git a/_build/html/.doctrees/tutorial.doctree b/_build/html/.doctrees/tutorial.doctree index c1a4415..1aeae58 100644 --- a/_build/html/.doctrees/tutorial.doctree +++ b/_build/html/.doctrees/tutorial.doctree Binary files differ diff --git a/_build/html/.doctrees/week1.doctree b/_build/html/.doctrees/week1.doctree new file mode 100644 index 0000000..f74b8ff --- /dev/null +++ b/_build/html/.doctrees/week1.doctree Binary files differ diff --git a/_build/html/.doctrees/week2.doctree b/_build/html/.doctrees/week2.doctree new file mode 100644 index 0000000..a160060 --- /dev/null +++ b/_build/html/.doctrees/week2.doctree Binary files differ diff --git a/_build/html/00_pre.html b/_build/html/00_pre.html new file mode 100644 index 0000000..39e8151 --- /dev/null +++ b/_build/html/00_pre.html @@ -0,0 +1,227 @@ + + + + +
+ + + + +ほげほげ
+Contents:
-Conclusion が、結論への内部参照リンクになります。
void setup() {
// put your setup code here, to run once:
@@ -190,7 +184,7 @@
これらのソースコードは、ファイルから直接差し込むほうが、間違いは少ないと思われます。
+1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 | #include <M5StickCPlus.h>
+
+int PIN = 26;
+
+// +--- 15kΩ抵抗 --+-- CdSセル --+
+// | | |
+// GND G26 3V3
+// https://www.storange.jp/2012/03/arduinocds.html
+
+// 注意点: https://lang-ship.com/reference/unofficial/M5StickC/Peripherals/ADC/
+
+void setup() {
+ M5.begin();
+
+ pinMode(PIN, ANALOG); // PINのモード設定
+
+ // https://lang-ship.com/blog/work/m5stickc-io/
+}
+
+void loop() {
+ Serial.printf("%04d\n", analogRead(PIN) ); // 暗 0〜4095 明
+
+ delay(1000);
+}
+ |