Code Monkey home page Code Monkey logo

freenove_ultimate_starter_kit_for_raspberry_pi_pico's Introduction

Freenove_Ultimate_Starter_Kit_for_Raspberry_Pi_Pico

A Projects Kit for Raspberry Pi Pico ( Pico W ).

Download

  • Use command in console

    Run following command to download all the files in this repository.

    git clone https://github.com/Freenove/Freenove_Ultimate_Starter_Kit_for_Raspberry_Pi_Pico.git

  • Manually download in browser

    Click the green "Clone or download" button, then click "Download ZIP" button in the pop-up window. Do NOT click the "Open in Desktop" button, it will lead you to install Github software.

If you meet any difficulties, please contact our support team for help.

Support

Freenove provides free and quick customer support. Including but not limited to:

  • Quality problems of products
  • Using Problems of products
  • Questions of learning and creation
  • Opinions and suggestions
  • Ideas and thoughts

Please send an email to:

[email protected]

We will reply to you within one working day.

Purchase

Please visit the following page to purchase our products:

http://store.freenove.com

Business customers please contact us through the following email address:

[email protected]

Copyright

All the files in this repository are released under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.

markdown

This means you can use them on your own derived works, in part or completely. But NOT for the purpose of commercial use. You can find a copy of the license in this repository.

Freenove brand and logo are copyright of Freenove Creative Technology Co., Ltd. Can't be used without formal permission.

About

Freenove is an open-source electronics platform.

Freenove is committed to helping customer quickly realize the creative idea and product prototypes, making it easy to get started for enthusiasts of programing and electronics and launching innovative open source products.

Our services include:

  • Robot kits
  • Learning kits for Arduino, Raspberry Pi and micro:bit
  • Electronic components and modules, tools
  • Product customization service

Our code and circuit are open source. You can obtain the details and the latest information through visiting the following web site:

http://www.freenove.com

freenove_ultimate_starter_kit_for_raspberry_pi_pico's People

Contributors

denzelchen avatar jinbaopeng avatar zhentao-lin avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

freenove_ultimate_starter_kit_for_raspberry_pi_pico's Issues

Inappropriate part of the code in the explanation of the code itself

In C_Tutorial.pdf on page 63 of Chapter 5 (RGBLED) there is an inappropriate part of the code to explain the code itself.

That code is in there now:

void setColor(long rgb) {
 ledcWrite(chns[0], 255 - (rgb >> 16) & 0xFF);
 ledcWrite(chns[1], 255 - (rgb >> 8) & 0xFF);
 ledcWrite(chns[2], 255 - (rgb >> 0) & 0xFF);
}

This example is probably copied from the ESP32 C tutorial. Instead, there should be this code:

void setColor(long rgb) {
 analogWrite(ledPins[0], 255 - (rgb >> 16) & 0xFF);
 analogWrite(ledPins[1], 255 - (rgb >> 8) & 0xFF);
 analogWrite(ledPins[2], 255 - (rgb >> 0) & 0xFF);
}

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.