Giter Club home page Giter Club logo

koding-kreators-mblock-extension's Introduction

Koding Kreators mBlock 3 Extension

This mBlock 3 extension aims to improve the mapping of the input pins and ports to facilitate students to utilize mBlock 3 with their Arduino Nano boards with less fatigue.

koding-kreators-mblock-extension's People

Contributors

jieyouxu avatar

Watchers

 avatar  avatar  avatar

koding-kreators-mblock-extension's Issues

URGENT: LED strip support

Is your feature request related to a problem? Please describe.
Need LED support.

Describe the solution you'd like
Set LED write block.

Describe alternatives you've considered
Rewrite LED support library.

Additional context
See KK extension.

180/360 degrees servo motor distinction wrapper.

Is your feature request related to a problem? Please describe.
Students get really confused between 180 / 360 motors.

Describe the solution you'd like
Distinction between 180/360 degrees servo motors:

  • 180 degree motors should allow angle change.
  • 360 degree motors should allow only states MOVE_FORWARD/STOP/MOVE_BACKWARD.

Describe alternatives you've considered
N/A.

Additional context
Different vendors for the 360 motors may have different implementations for the motors.

Specific Windows 10 machines cause LEDs to fail when upgrading firmware

Describe the bug
LEDs do not work when firmware upgraded from Windows 10 machines, but the same firmware does work when uploaded from macOS machines.

To Reproduce
Upload from Windows 10 machines.

Expected behavior
Uniform behaviour.

Screenshots
N/A.

Desktop (please complete the following information):

  • OS: Windows
  • Version 10

Additional context
Suspected to be firmware-related.

Servo

this is a wrapper of the srevo angle but has the pin already in. The user selects servo1 and it points to pin 11 and servo2 goes to pin 10

read sensor

I am not sure if it's my installation but right now it shows "read analog A(0)" . This should be replaced by Read Sensor ( ) , allowing to select from 1 to 4

Add zh_CN locale.

Is your feature request related to a problem? Please describe.
Some students are not familiar with en-US locale and would like zh_CN locale.

Describe the solution you'd like
Add block locale translations.

Describe alternatives you've considered
N/A.

Additional context
N/A.

tone

initial code should just address pin3 for the buzzer.

conflict with IRreceive, something to consider when we start using remote control. Code should have something like:

void playTone(int tone, int duration) {
for (long i = 0; i < duration * 1000L; i += tone * 2) {
digitalWrite(speakerPin, HIGH);
delayMicroseconds(tone);
digitalWrite(speakerPin, LOW);
delayMicroseconds(tone);
}
}

Potentiometer

I found today "knob" was not working. It's possible it was that particular board. Could we double check?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.