Changing EV3 and WeDo2 default and block motor power values after discussion.

This commit is contained in:
Evelyn Eastmond 2018-09-11 16:42:43 -04:00
parent e9b0cc768e
commit 6bd79369e4
2 changed files with 3 additions and 3 deletions

View file

@ -968,7 +968,7 @@ class Scratch3Ev3Blocks {
}, },
POWER: { POWER: {
type: ArgumentType.NUMBER, type: ArgumentType.NUMBER,
defaultValue: 50 defaultValue: 100
} }
} }
}, },

View file

@ -154,7 +154,7 @@ class WeDo2Motor {
* @type {number} * @type {number}
* @private * @private
*/ */
this._power = 50; this._power = 100;
/** /**
* Is this motor currently moving? * Is this motor currently moving?
@ -941,7 +941,7 @@ class Scratch3WeDo2Blocks {
}, },
POWER: { POWER: {
type: ArgumentType.NUMBER, type: ArgumentType.NUMBER,
defaultValue: 50 defaultValue: 100
} }
} }
}, },