Skip to content

Commit

Permalink
chore: reformat/prep for merge
Browse files Browse the repository at this point in the history
Signed-off-by: BluLightShow <[email protected]>
  • Loading branch information
max-bromberg committed Nov 18, 2021
1 parent ff55e0e commit 95d9000
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 39 deletions.
7 changes: 1 addition & 6 deletions src/tags/espcomm.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
{
"title": "Solving your ESP board's communication errors (Try these in order)",
"aliases": [
"espcomm",
"ESPcomm",
"ESPcommerror",
"espcommerror"
],
"aliases": ["espcomm", "ESPcomm", "ESPcommerror", "espcommerror"],
"directAliases": ["espcomm"],
"fields": [
{
Expand Down
12 changes: 6 additions & 6 deletions src/tags/hid.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"title": "Can your arduino be used as a keyboard, or mouse?",
"aliases": ["hid",],
"aliases": ["hid", "mouse", "keyboard"],
"directAliases": ["hid"],
"fields": [
{
"name": "You want to use your arduino for a Humin Interface Device?",
"value": "Arduino has many boards that can be used as a mouse/keyboard nativly. This is reffered to as a HID. ",
"name": "You want to use your arduino for a Human Interface Device?",
"value": "Arduino has many boards that can be used as a mouse/keyboard natively. This is reffered to as a HID."
},
{
"name": "Boards that are NOT HID complient.",
"value": "Uno, Mega, Nano, Pro mini, are not capible of use as an HID device. "
"name": "Boards that are __NOT__ HID compliant.",
"value": "Uno, Mega, Nano, Pro mini, are not capible of use as an HID device."
},
{
"name": "Boards that ARE HID complient.",
"name": "Boards that __ARE__ HID compliant.",
"value": "Leonardo, (Pro)Micro, Any other 8u2/16u2/at90usb8/162/32u2/32u4 compatible board, Zero, MKR1000."
}
],
Expand Down
6 changes: 3 additions & 3 deletions src/tags/language.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"title": "What coding language does arduino IDE use? What language should you learn?",
"aliases": ["language","lang"],
"aliases": ["language", "lang"],
"directAliases": ["language"],
"fields": [
{
"name": "Arduino IDE code is normaly C++14.",
"value": "The language most often used in Arduino IDE for programming is primarily C++14. There are some added functions that are very useful for using the Arduino platform. They can be found at https://www.arduino.cc/reference/en/ ."
"name": "Arduino IDE code is normally C++14",
"value": "The language most often used in Arduino IDE for programming is primarily C++14. There are some added functions that are very useful for using the Arduino platform. They can be found at https://www.arduino.cc/reference/en/."
}
],
"image": ""
Expand Down
9 changes: 2 additions & 7 deletions src/tags/libmissing.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
{
"title": "Solving library errors (such as \"yourlib.h not found\")",
"aliases": [
"liberror",
"libraryerror",
"libmissing",
"librarymissing"
],
"aliases": ["liberror", "libraryerror", "libmissing", "librarymissing"],
"directAliases": ["liberror"],
"fields": [
{
Expand All @@ -22,4 +17,4 @@
}
],
"image": ""
}
}
35 changes: 18 additions & 17 deletions src/tags/pin.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
"title": "Powering an arduino.",
"aliases": ["power", "pin"],
"directAliases": ["power","pin"],
"fields": [
{
"name": "1. How much power can arduino provide?",
"value": "Most PC USB ports are limited to 500ma. The Arduino has a fuse on the board to help protect your PC, and the Arduino from shorts. This is limited to 400ma. If you try to draw more current than this, the fuse will get hot and stop the short."
},
{
"name": "2. How much power on the pins of the arduino?",
"value": "Each pin of the Arduino is rated 20ma. In many cases, if you do not provide a resistor to the circuit on a pin, then you can damage the Arduino. We use resistors for LED's or any other component that can draw more than 20ma. Motors should not be driven directly off of the arduino PIN's."
},
{
"name": "3. Powering the Arduino properly.",
"value": "On most Arduino boards there will be a pin marked VIN. This stands for Voltage Input. You can provide the max power rating for your board on this pin. UNO will accept 7-12v. If you have a regulated 5 volt power supply, you can sometimes use the 5v pin to power the Arduino. You should NOT connect batteries to the 5v or 3.3v pins. You can also power Arduino's by the USB plugs, or the Barrel jack on some boards."
}
],
{
"title": "Powering an arduino",
"aliases": ["power", "pin"],
"directAliases": ["power", "pin"],
"fields": [
{
"name": "1. How much power can an arduino provide?",
"value": "Most PC USB ports are limited to 500ma. The Arduino has a fuse on the board to help protect your PC, and the Arduino from shorts. This is limited to 400ma. If you try to draw more current than this, the fuse will get hot and stop the short."
},
{
"name": "2. How much power can each pin of the arduino provide?",
"value": "Each pin of the Arduino is rated 20ma. In many cases, if you do not provide a resistor to the circuit on a pin, then you can damage the Arduino. We use resistors for LED's or any other component that can draw more than 20ma. Motors should not be driven directly off of the arduino PIN's."
},
{
"name": "3. Powering the Arduino properly",
"value": "On most Arduino boards there will be a pin marked VIN. This stands for Voltage Input. You can provide the max power rating for your board on this pin. UNO will accept 7-12v. If you have a regulated 5 volt power supply, you can sometimes use the 5v pin to power the Arduino. You should NOT connect batteries to the 5v or 3.3v pins. You can also power Arduino's by the USB plugs, or the Barrel jack on some boards."
}
],
"image": ""
}

0 comments on commit 95d9000

Please sign in to comment.