Skip to content

Master to develop#2971

Merged
leunge merged 4 commits into
developfrom
master
May 30, 2025
Merged

Master to develop#2971
leunge merged 4 commits into
developfrom
master

Conversation

@leunge
Copy link
Copy Markdown
Contributor

@leunge leunge commented May 30, 2025

No description provided.

kim jeong yong and others added 4 commits May 21, 2025 10:43
반복 블록의 동작을 명확히 하기 위해 설명을 보강했습니다.
이 변경은 새로운 기능이나 수정 사항을 포함할 수 있습니다.
불필요한 console제거
@leunge leunge merged commit 43d0276 into develop May 30, 2025
5 checks passed
Copy link
Copy Markdown
Contributor

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

eslint

⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer1 = Buffer.from(command1, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer11 = Buffer.from(command11, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer1 = Buffer.from(command1, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer11 = Buffer.from(command11, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer1 = Buffer.from(command1, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer11 = Buffer.from(command11, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer1 = Buffer.from(command1, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer11 = Buffer.from(command11, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer1 = Buffer.from(command1, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer11 = Buffer.from(command11, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer1 = Buffer.from(command1, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer11 = Buffer.from(command11, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer1 = Buffer.from(command1, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer11 = Buffer.from(command11, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer1 = Buffer.from(command1, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer11 = Buffer.from(command11, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer1 = Buffer.from(command1, 'utf8');


⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer11 = Buffer.from(command11, 'utf8');

func(sprite, script) {
const command = 'mapping_start';
const commandBuffer = Buffer.from(encodeURIComponent(command)+"\r", 'utf8');
const commandBuffer = Buffer.from(
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const command = 'mapping_start';
const commandBuffer = Buffer.from(encodeURIComponent(command)+"\r", 'utf8');
const commandBuffer = Buffer.from(
encodeURIComponent(command) + '\r',
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

Suggested change
encodeURIComponent(command) + '\r',
`${encodeURIComponent(command) }\r`,

func(sprite, script) {
const command = 'takeoff';
const commandBuffer = Buffer.from(encodeURIComponent(command)+"\r", 'utf8');
const commandBuffer = Buffer.from(
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const command = 'takeoff';
const commandBuffer = Buffer.from(encodeURIComponent(command)+"\r", 'utf8');
const commandBuffer = Buffer.from(
encodeURIComponent(command) + '\r',
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

Suggested change
encodeURIComponent(command) + '\r',
`${encodeURIComponent(command) }\r`,

func(sprite, script) {
const command = 'land';
const commandBuffer = Buffer.from(encodeURIComponent(command)+"\r", 'utf8');
const commandBuffer = Buffer.from(
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.


const command11 = `right ${stick2} ${time}\r`;
console.log('Constructed command:', command11);
const commandBuffer11 = Buffer.from(command11, 'utf8');
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

console.log('Command sent using sendAsyncWithThrottle:', command1);
const command1 = `forward ${stick1} ${time}\r`;
console.log('Constructed command:', command1);
const commandBuffer1 = Buffer.from(command1, 'utf8');
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

console.log('Command sent using sendAsyncWithThrottle:', command11);
const command11 = `left ${stick2} ${time}\r`;
console.log('Constructed command:', command11);
const commandBuffer11 = Buffer.from(command11, 'utf8');
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

stick1 = stick1 * -1;
const command1 = `back ${stick1} ${time}\r`;
console.log('Constructed command:', command1);
const commandBuffer1 = Buffer.from(command1, 'utf8');
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

const commandBuffer11 = Buffer.from(command11, 'utf8');
const command11 = `right ${stick2} ${time}\r`;
console.log('Constructed command:', command11);
const commandBuffer11 = Buffer.from(command11, 'utf8');
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <no-undef> reported by reviewdog 🐶
'Buffer' is not defined.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant