File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -445,10 +445,10 @@ class EiBotBoard {
445445 }
446446
447447 /**
448- * Read memory address.
448+ * Read the byte value at a memory address.
449449 * See {@link https://evil-mad.github.io/EggBot/ebb.html#MR}.
450450 * @param {number } address - Address to read (0 to 4095).
451- * @returns {Promise<number> } - Resolves with the value at the given address.
451+ * @returns {Promise<number> } - Resolves with the byte value at the given address.
452452 */
453453 async memoryRead ( address ) {
454454 if ( address < 0 || address > 4095 ) {
@@ -467,10 +467,10 @@ class EiBotBoard {
467467 }
468468
469469 /**
470- * Write given memory address.
470+ * Write a byte value at the given memory address.
471471 * See {@link https://evil-mad.github.io/EggBot/ebb.html#MW}.
472472 * @param {number } address - Address to write (0 to 4095).
473- * @param {number } value - Value to write (0 to 255).
473+ * @param {number } value - Byte value to write (0 to 255).
474474 * @returns {Promise<void> } - Resolves after the command has been acknowledged.
475475 */
476476 async memoryWrite ( address , value ) {
You can’t perform that action at this time.
0 commit comments