Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: plenprojectcompany/pxt-PLENbit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.9
Choose a base ref
...
head repository: plenprojectcompany/pxt-PLENbit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 11 commits
  • 4 files changed
  • 2 contributors

Commits on May 13, 2022

  1. update description

    IsakiMatsubara committed May 13, 2022
    Copy the full SHA
    425f893 View commit details
  2. update description

    IsakiMatsubara committed May 13, 2022
    Copy the full SHA
    1814d2c View commit details

Commits on Jun 17, 2022

  1. Typo fix

    IsakiMatsubara committed Jun 17, 2022
    Copy the full SHA
    949f345 View commit details

Commits on Sep 9, 2022

  1. 1.0.10

    replace NeoPixel to reduce memory
    IsakiMatsubara committed Sep 9, 2022
    Copy the full SHA
    e3d7397 View commit details

Commits on Sep 12, 2022

  1. v1.0.11

    fix eye led
    IsakiMatsubara committed Sep 12, 2022
    Copy the full SHA
    c416d14 View commit details

Commits on Sep 13, 2022

  1. v1.0.12

    add IR Sensor Block
    IsakiMatsubara committed Sep 13, 2022
    Copy the full SHA
    308f08d View commit details
  2. v1.0.12

    bug fixes
    IsakiMatsubara committed Sep 13, 2022
    Copy the full SHA
    9b4404a View commit details
  3. v1.0.13

    bug fixes
    IsakiMatsubara committed Sep 13, 2022
    Copy the full SHA
    83a96a0 View commit details

Commits on Oct 21, 2022

  1. add CO2 sensor block

    IsakiMatsubara committed Oct 21, 2022
    Copy the full SHA
    64480f4 View commit details

Commits on Nov 15, 2022

  1. v1.0.16

    IsakiMatsubara committed Nov 15, 2022
    Copy the full SHA
    1e0f622 View commit details

Commits on Apr 20, 2023

  1. v1.0.17

    IsakiMatsubara committed Apr 20, 2023
    Copy the full SHA
    97da908 View commit details
Showing with 197 additions and 116 deletions.
  1. +3 −1 _locales/ja/pxt-plenbit-jsdoc-strings.json
  2. +12 −1 _locales/ja/pxt-plenbit-strings.json
  3. +180 −112 plenbit.ts
  4. +2 −2 pxt.json
4 changes: 3 additions & 1 deletion _locales/ja/pxt-plenbit-jsdoc-strings.json
Original file line number Diff line number Diff line change
@@ -20,6 +20,7 @@
"plenbit.sensorLR": "アナログセンサーの値を取得します。",
"plenbit.sensorTH": "温湿度センサーAM2320の値を更新します。",
"plenbit.sensorTHvalue": "温湿度センサーAM2320の値を取得します。",
"plenbit.sensorCO2value": "CO2センサーMH-Z19Cの値を取得します。",
"plenbit.serialRead": "[PLEN:bit スペシャルキット] PLEN Connect アプリから制御できるようにします。",
"plenbit.servoInitialSet": "サーボモーターを初期値に戻します。",
"plenbit.servoWriteInit": "番号で指定したサーボモーターの角度を変更します。その際、サーボモーターは、最大速度で動きます。",
@@ -41,5 +42,6 @@
"plenbit.setEyeBrightness": "[PLEN:bit v2] PLEN:bitの目の明るさを変えます。",
"plenbit.soccerMotion": "サッカーモーションをPLEN:bitで再生します。",
"plenbit.stdMotion": "基本モーションをPLEN:bitで再生します。",
"plenbit.walk": "連続歩行をPLEN:bitで再生します。"
"plenbit.walk": "連続歩行をPLEN:bitで再生します。",
"plenbit.checkIRSignal": "リモコンの赤外線信号をIRセンサーで調べます。"
}
13 changes: 12 additions & 1 deletion _locales/ja/pxt-plenbit-strings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{
"NeoPixelColors.Black|block": "消灯",
"plenbit.NeoPixelColors.Green|block": "",
"plenbit.NeoPixelColors.Red|block": "",
"plenbit.NeoPixelColors.Orange|block": "だいだい",
"plenbit.NeoPixelColors.Yellow|block": "",
"plenbit.NeoPixelColors.Blue|block": "",
"plenbit.NeoPixelColors.Indigo|block": "あい",
"plenbit.NeoPixelColors.Violet|block": "すみれ",
"plenbit.NeoPixelColors.Purple|block": "",
"plenbit.NeoPixelColors.White|block": "",
"plenbit.NeoPixelColors.Black|block": "消灯",
"plenbit.StdMotions.LStep|block":"左ステップ",
"plenbit.StdMotions.FStep|block":"前ステップ",
"plenbit.StdMotions.RStep|block":"右ステップ",
@@ -55,8 +64,10 @@
"plenbit.resetPosition|block": "true",
"plenbit.savePositon|block": "true",
"plenbit.sensorLR|block": "%num 側のアナログセンサー値を読み取る",
"plenbit.checkIRSignal|block": "%num 側の赤外線センサー値を読み取る",
"plenbit.sensorTHvalue|block": "%data",
"plenbit.sensorTH|block": "%num 側の温湿度センサー値を読み取る (シリアル通信 : %serial)",
"plenbit.sensorCO2value|block": "Aボタン側のCO2センサー値を読み取る [ppm]",
"plenbit.serialRead|block": "スマホからコントロールできるようにする",
"plenbit.servoAdjust|block": "true",
"plenbit.servoFree|block": "true",
Loading