Git Product home page Git Product logo

documentation's People

Contributors

adrianstevens avatar adunndevster2 avatar alexhedley avatar alexischr avatar bmbrandx avatar briank237 avatar bryancostanich avatar cartblanche avatar csuski avatar ctacke avatar davinchiloz avatar duduita avatar engunneer avatar hakanl avatar halyssonjr avatar harryisparkz avatar j-koda80 avatar joelmartinez avatar jorgedevs avatar lamebrain avatar marktap avatar ncarandini avatar nevynuk avatar patridge avatar peter-moody avatar peterfoot avatar rsforbes avatar ryandle avatar unkwntech avatar vishwasoft 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

Watchers

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

documentation's Issues

Banner breaks into second line

The header should squish up until it has no room, and then change to a menu on resize for responsiveness. Instead, right now it's flowing on to a new line:

screen shot 2017-02-05 at 7 20 43 pm

N3 is shown twice instead of once on the page discussing the pinout for all models

Basically where one would see N3 describing the features of the entire range of N3 models. And then below it we would also see the N2 description one sees the N3 entered there, and then the features for the N2.

Ideally this should be corrected before it confuses someone else successfully.

See here, http://developer.wildernesslabs.co/Netduino/About/ And it shows up below the N3 entry of course, which is correct in its description.

Wood margins aren't getting reduced well

when the site gets reduced in width; the wood margins should resize first, going down to 10px minimum width. Here; the content is reduced too much, and the wood margins are too wide:

screen shot 2017-02-05 at 9 03 40 pm

Add unbricking instructions

Need to document that the way to unbrick a board is to use the non-mfdeploy tools that use DFU and therefore don't need tinybooter.

Add USB Cable issues to troubleshooting page.

from the forums:

Bryan, if you ever do that troubleshooting page, please, explain the USBcable issue. I get that some cables can power, but not transfer data, either because the data lines are broken or the darn cable was built to only power or charge in the first place. But is there a possibility that a faulty cable appears to work? It can succeed in making the Netduino recognisable for the computer, it can transfer parts of the data and then refuses to send something else?

Add IO Expansion options document

Need a document that describes the various expansion options for Netduino, such as shift registers, LED drivers, analog chips, etc.

Fonts are too heavy

Should be using a lighter version of the google font. note the web site (top) vs. the design (bottom):

screen shot 2017-02-05 at 7 25 11 pm

Networking page needs some helpful hints about wifi auth and encryption

something akin to:

If you're using the Netduino 3 WiFi model, the authentication and encryption options can be a little confusing, however, if you're connecting to a modern WiFi network that requires a password, you'll likely need to set the Authentication setting to Shared, and the Encryption setting to WPA. Additionally, SSID refers to the name of the WiFi network. 

Add linux installation instructions

need some help here.

Create a udev rule at /etc/udev/rules.d/50-netduino.rules with the content SUBSYSTEMS=="usb", ATTR{idProduct}=="1000", ATTR{idVendor}=="22b1", MODE="0660", GROUP="users", TAG+="uaccess" (this makes the Netduino accessible to standard users).

DebuggerBrowsableState workaround doesn't work

Resolve: unknown type: System.Diagnostics.DebuggerBrowsableState

Error: ff000000

I put in the new file for the workaround and it still doesn't work. when I run the application, the emulator opens and gets stuck there. VS 2015 community

Add guidance on stopping threads.

Instead of Thread.Abort() use a bool _isRunning; member variable and check in the loop:

        public void Start()
        {
            this._running = true;

            // create a new thread that actually writes the pwm to the output port
            _th = new Thread(() => { 
                while (this._running)
                {
                    OutputPort.Write(true);
                    Thread.Sleep(_onTimeMilliseconds);
                    OutputPort.Write(false);
                    Thread.Sleep(_offTimeMilliseconds);
                }
            });
            _th.Start();
        }

        public void Stop()
        {
            // setting this will wrap up the thread
            this._running = false;

            // need to make sure the port is off, otherwise it can get
            // stuck in an ON state.
            OutputPort.Write(false);
        }

CSS Inconsistencies on the Downloads page

  1. The title, "Downloads", in this case, is an H2 which is being drawn as the same size as H1.
  2. The "Windows" subheading is an H2 but has the "#windows" class applied to it which sets it to a different font, Conv_Lato-Regular instead of Conv_Lato-Light, which is bolder than the other subheadings.
  3. The "Development Environment (Windows Only)" subheading under "Discontinued Products (Netduino 1, Plus, & Mini)" is larger than it's parent header because of the above-mentioned issues with the H2 CSS.

Updating firmware page is a bit hard to follow

"Download the latest Netduino firmware files from the downloads page. You’ll need the Tinybooter, ER_CONFIG, ER_FLASH files for your specific Netduino model."

What package are these files inside? I see the Netduino3Wifi_4_3_2_2 dir, but the files are the wrong extension for MFDeploy

Header doesn't resize well

when you resize the browser window down, the header doesn't resize well:

note that the space between the items is collapsed even before it should:

screen shot 2017-02-06 at 7 20 58 pm

Additionally, the space between the logo and the log in link should resize down, equally.

Installation docs need to be split out into Windows/Mac/Linux Platforms

Installation is currently embedded in the Getting Started guide, but it should probably be split out into its own section with a page for each of the platforms.

Additionally the Linux install guide would be new. Content would be the same as Mac, with the addition of the following steps:

  • Install libusb from the distro package manager
  • Create a udev rule at /etc/udev/rules.d/50-netduino.rules with the content SUBSYSTEMS=="usb", ATTR{idProduct}=="1000", ATTR{idVendor}=="22b1", MODE="0660", GROUP="users", TAG+="uaccess" (this makes the Netduino accessible to standard users).

Getting Started needs better next steps

The end of the getting started should push people towards:

  • Explore samples
  • Learning more about netduino - we need a kind of "why/what" page
  • Netduino.Foundation (already done).

Add Hackster Projects to next step

we need to point to the hackster projects at the end of our getting started doc
so it goes: Netduino Getting Started > Netduino.Foundation Getting Started > Hackster Projects

first two are done:

but that then sends folks to the peripheral library; we should send to hackster

and on the netduino getting started docs, we should have a list at top that enumerates those steps

Changing the MAC address

Add information about changing the MAC address and also the number of times this can be done.

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.