|!Punctuation|!Location|!Function|\n|{{{@@...@@}}}|surrounding text|@@highlighted text@@|\n|{{{//...//}}}|surrounding text|//italicized text//|\n|{{{==...==}}}|surrounding text|==strikethrough text==|\n|{{{''...''}}}|surrounding text|''boldfaced text''|\n|{{{__...__}}}|surrounding text|__underlined text__|\n|{{{[[text|url]]}}}|around text/url pair|[[text|http://gri.gallaudet.edu/]] link to url|\n|{{{ {...} }}}|''__tripled__'' surrounding text|{{{in-line literal text}}}|\n|{{{ {...} }}}|''__tripled__'' surrounding ''__lines__''|literal block|\n|{{{<<<}}}|surrounding ''__lines__''|blockquotes|\n|{{{!}}}|at start of line|subheading|\n|{{{|...|...|}}}|line sectioned by vertical bars|table row|\n|{{{!}}}|in a table|!table heading|\n|{{{----}}}|alone on line|horizontal rule|\n|{{{*}}}|at start of line|bulleted list item|\n|{{{#}}}|at start of line|numbered list item|\nsource: Kevin Cole, January 2007
TTiddlyWiki uses Wiki style markup, a way of lightly "tagging" plain text so it can be transformed into HTML. Edit this Tiddler to see samples.\n\n! Header Samples\n!Header 1\n!!Header 2\n!!!Header 3\n!!!!Header 4\n!!!!!Header 5\n\n! Unordered Lists:\n* Lists are where it's at\n* Just use an asterisk and you're set\n** To nest lists just add more asterisks...\n***...like this\n* The circle makes a great bullet because once you've printed a list you can mark off completed items\n* You can also nest mixed list types\n## Like this\n\n! Ordered Lists\n# Ordered lists are pretty neat too\n# If you're handy with HTML and CSS you could customize the [[numbering scheme|http://www.w3schools.com/css/pr_list-style-type.asp]]\n## To nest, just add more octothorpes (pound signs)...\n### Like this\n* You can also\n** Mix list types\n*** like this\n# Pretty neat don't you think?\n\n! Tiddler links\nTo create a Tiddler link, just use mixed-case WikiWord, or use [[brackets]] for NonWikiWordLinks. This is how the GTD style [[@Action]] lists are created. \n\nNote that existing Tiddlers are in bold and empty Tiddlers are in italics. See CreatingTiddlers for details.\n\n! External Links\nYou can link to [[external sites|http://google.com]] with brackets. You can also LinkToFolders on your machine or network shares.\n\n! Images\nEdit this tiddler to see how it's done.\n[img[http://img110.echo.cx/img110/139/gorilla8nw.jpg]]\n\n{{{\n[img[http://img110.echo.cx/img110/139/gorilla8nw.jpg]]\n}}}\n\n!Tables\n|!th1111111111|!th2222222222|\n|>| colspan |\n| rowspan |left|\n|~| right|\n|colored| center |\n|caption|c\n\nFor a complex table example, see PeriodicTable.\n\n! Horizontal Rules\nYou can divide a tiddler into\n----\nsections by typing four dashes on a line by themselves.\n\n! Blockquotes\n<<<\nThis is how you do an extended, wrapped blockquote so you don't have to put angle quotes on every line.\n<<<\n>level 1\n>level 1\n>>level 2\n>>level 2\n>>>level 3\n>>>level 3\n>>level 2\n>level 1\n\n! Other Formatting\n''Bold''\n==Strike==\n__Underline__\n//Italic//\nSuperscript: 2^^3^^=8\nSubscript: a~~ij~~ = -a~~ji~~\n@@highlight@@\n@@color(green):green colored@@\n@@bgcolor(#ff0000):color(#ffffff):red colored@@\n
arduino
game changing micro-controller environment.
[[overview]]
* [[Atmel AVR in Wikipedia|https://en.wikipedia.org/wiki/AVR_microcontrollers]]\n* [[Arduino Introduction Video|http://www.oreillynet.com/pub/e/2281]] \n* [[old freeduino page|http://docbox.flint.com:8081/freeduino]]\n* [[Arduino in the news|http://www.extremetech.com/computing/133448-black-hat-hacker-gains-access-to-4-million-hotel-rooms-with-arduino-microcontroller]]\n* [[Arduino to one wire|Arduino21Wire]]
Type the text for 'New Tiddler'\n\n[[Codebender|http://www.h-online.com/open/features/Codebender-coding-for-Arduino-in-the-cloud-1655110.html]]
Type the text for 'New Tiddler'\n\nhttp://www.h-online.com/open/news/item/Telefonica-brings-GSM-GPRS-to-Arduino-1674509.html
{{{\n/*\nEplora RC controller \n\nXbee seed Studio sheild plugged into icsp port and Digital pins 3 and 11\nUsing software serial library for serial port.\n\n\nBy cpyarger and John Hathaway\n\n\n*/\n\n\n#include <Esplora.h>\n#include <SoftwareSerial.h>\n\nSoftwareSerial mySerial(11, 3);\n/*\n You're going to handle eight different buttons. You'll use arrays, \n which are ordered lists of variables with a fixed size. Each array \n has an index (counting from 0) to keep track of the position\n you're reading in the array, and each position can contain a number.\n \n This code uses three different arrays: one for the buttons you'll read;\n a second to hold the current states of those buttons; and a third to hold\n the keystrokes associated with each button.\n */\n\n/*\n This array holds the last sensed state of each of the buttons\n you're reading.\n Later in the code, you'll read the button states, and compare them\n to the previous states that are stored in this array. If the two\n states are different, it means that the button was either\n pressed or released.\n */\nboolean buttonStates[8];\n\n/*\n This array holds the names of the buttons being read.\n Later in the sketch, you'll use these names with\n the method Esplora.readButton(x), where x\n is one of these buttons.\n */\nconst byte buttons[] = {\n JOYSTICK_DOWN,\n JOYSTICK_LEFT,\n JOYSTICK_UP,\n JOYSTICK_RIGHT,\n SWITCH_RIGHT, // fire\n SWITCH_LEFT, // bend\n SWITCH_UP, // nitro\n SWITCH_DOWN, // look back\n};\n\n/*\n This array tells what keystroke to send to the PC when a\n button is pressed.\n If you look at this array and the above one, you can see that\n the "cursor down" keystroke is sent when the joystick is moved\n down, the "cursor up" keystroke when the joystick is moved up\n and so on.\n*/\nconst char keystrokes[] = {\n 'B',\n 'L',\n 'F',\n 'R',\n 'R',\n 'L',\n 'F',\n 'B'\n};\n\n/*\n This is code is run only at startup, to initialize the\n virtual USB keyboard.\n*/\nvoid setup() {\n mySerial.begin(9600);\n}\n\n/*\n After setup() is finished, this code is run continuously.\n Here we continuously check if something happened with the\n buttons.\n*/\nvoid loop() { \n \n // Iterate through all the buttons:\n for (byte thisButton=0; thisButton<8; thisButton++) {\n boolean lastState = buttonStates[thisButton];\n boolean newState = Esplora.readButton(buttons[thisButton]);\n if (lastState != newState) { // Something changed!\n /* \n The Keyboard library allows you to "press" and "release" the\n keys as two distinct actions. These actions can be\n linked to the buttons we're handling.\n */\n if (newState == PRESSED) {\n mySerial.println(keystrokes[thisButton]);\n }\n else if (newState == RELEASED) {\n //Serial.println(keystrokes[thisButton]);\n mySerial.println('S');\n }\n }\n\n // Store the new button state, so you can sense a difference later:\n buttonStates[thisButton] = newState;\n }\n \n /*\n Wait a little bit (50ms) between a check and another.\n When a mechanical switch is pressed or released, the\n contacts may bounce very rapidly. If the check is done too\n fast, these bounces may be confused as multiple presses and\n may lead to unexpected behaviour.\n */\n delay(50);\n}\n\n}}}
[[Pinout for the Arduino Micro|http://docbox.flint.com/~flint/arduino/arduino_micro_pinout.png]]\n\n[[Pinout for another Arduino Micro|https://cdn.sparkfun.com/assets/9/c/3/c/4/523a1765757b7f5c6e8b4567.png]]\n\nSetup for Arduino Micro is:\nDevice: Arduino Micro\nPort /dev/ttyACM0\n\nHere is the [[Servo Information|https://www.arduino.cc/en/Reference/Servo]]\n\nHere is how to make the [[Servo Sweep|https://www.arduino.cc/en/Tutorial/Sweep]]
You will need the [[arduino capsense library |http://playground.arduino.cc//Main/CapacitiveSensor?from=Main.CapSense]]\n\n{{{\n#include <CapacitiveSensor.h>\n\n/*\n * CapitiveSense Library Music Box\n * Coded By: CPYarger 2013 \n *Library built by Paul Badger 2008\n * Uses a high value resistor e.g. 10M between send pin and receive pin\n * Resistor effects sensitivity, experiment with values, 50K - 50M. Larger resistor values yield larger sensor values.\n * Receive pin is the sensor pin - try different amounts of foil/metal on this pin\n */\n\n\n \nCapacitiveSensor cs_4_6 = CapacitiveSensor(4,6); // 10M resistor between pins 4 & 6, pin 6 is sensor pin, add a wire and or foil\n \n\nvoid setup() \n{\n\n Serial.begin(9600);\n}\n\nvoid loop() \n{\n long start = millis();\n\n long total2 = cs_4_6.capacitiveSensor(30);\n\n Serial.println(total2);\n Serial.print(millis() - start); // check on performance in milliseconds\n Serial.print("\st"); // tab character for debug windown spacing\n\nif (total2 > 50){\n \n tone(8,total2/2);\n long total3 = (total2*2);\n tone(8,total3);\n tone(8,total3*30);\n tone(8,total2*10);\n };\n\nnoTone(8);\n Serial.println(total2); // print sensor output 2\n\n}\n}}}
This is the Efin Gas Car Code.\n{{{\n/*\n * NewSerialServo\n * --------------\n * Servo control from the Serial port\n *\n * Alteration of the control interface to use keys\n * to slew the servo horn left and right. Works best with\n * the Linux/Mac terminal "screen" program.\n *\n * Created 10 December 2007\n * copyleft 2007 Brian D. Wendt\n * http://principialabs.com/\n *\n * Adapted from code by Tom Igoe\n * http://itp.nyu.edu/physcomp/Labs/Servo\n */\n#include <Servo.h> \n\nServo myservo;\nServo myservo2;\nServo myservo3;\n\n/** Adjust these values for your servo and setup, if necessary **/\nint servoPin = 3; // control pin for servo motor\nint minPulse = 600; // minimum servo position\nint moveServo; \nint turnRate = 1;\nint pos = 90;\nint pos2 = 90;\nint pos3 = 9-0;\nint Ipos=90;\n\nvoid setup() {\n\n myservo.attach(3);\n myservo2.attach(4);\n myservo3.attach(5);\n myservo.write(Ipos);\n myservo2.write(Ipos);\n myservo3.write(Ipos);\n \n // Give the servo a starting point (or it floats)\n Serial.begin(9600);\n Serial.println(" Arduino Serial Servo Control");\n Serial.println("Servo control, ");\n Serial.println("Servo 1 Left : A ");\n Serial.println("Servo 1 Center : S ");\n Serial.println("Servo 1 Right : D ");\n Serial.println("Servo 2 Left : F ");\n Serial.println("Servo 2 Center : G ");\n Serial.println("Servo 2 Right : H ");\n Serial.println("Servo 3 Left : J ");\n Serial.println("Servo 3 Center : K ");\n Serial.println("Servo 3 Right : L ");\n Serial.println();\n}\n\nvoid loop() {\n // wait for serial input\n if (Serial.available() > 0) {\n // read the incoming byte:\n moveServo = Serial.read();\n\n // ASCII '' is 46 (comma and period, really)\n if (moveServo == 65 ) { pos = pos - turnRate; } // A\n if (moveServo == 68 ) { pos = pos + turnRate; } // D\n if (moveServo == 83 ) { pos = 90 ; } // S\n if (moveServo == 70 ) { pos2 = pos2 - turnRate; } // F\n if (moveServo == 72 ) { pos2 = pos2 + turnRate; } // G\n if (moveServo == 71 ) { pos2 = 90 ; } // H\n if (moveServo == 74 ) { pos3 = pos3 - turnRate; } // J\n if (moveServo == 76 ) { pos3 = pos3 + turnRate; } // K\n if (moveServo == 75 ) { pos3 = 90 ; } // L\n\n pos = constrain(pos, 5, 179);\n pos2 = constrain(pos2, 4, 180);\n pos3 = constrain(pos3, 4, 180);\n\n myservo.write(pos);\n myservo2.write(pos2);\n myservo3.write(pos3);\n\nSerial.print("Servo1: ");\nSerial.println(pos);\nSerial.print("Servo 2: ");\nSerial.println(pos2);\nSerial.print("Servo 3:");\nSerial.println(pos3);\n\n}\n}\n}}}
\n* [[FTDI Wikipedia|https://en.wikipedia.org/wiki/FTDI]]\n\nThis Video Explains the GRN....\n\n|!{{{FT232RL}}} |! {{{Arduino Mini Pro}}}|\n|GND | GND|\n|CTS | |\n|VCC | VCC|\n|TX | RX|\n|RX | TX|\n|DTR | GNC|
This is the monitor...\n\n{{{\n watch "dmesg |tail -20 | grep -i dev"\n}}}\n\n\nThis is the base script:\n\n{{{\nport=$(dmesg | tail -20 |grep ACM | tail -1|tr -s " " | cut -d " " -f 4 |tr -d ":");echo $port;/usr/bin/miniterm.py /dev/$port\n}}}
|!Reference HTML|! Description|\n|[[Serial Event|https://www.arduino.cc/en/Reference/SerialEvent]]||\n|[[reference|https://www.google.com/search?client=ubuntu&channel=fs&q=arduino+sketch+starting+serial+&ie=utf-8&oe=utf-8]]||\n|[[reference|https://www.google.com/search?client=ubuntu&channel=fs&q=arduino+sketch+reset+upon+serial+&ie=utf-8&oe=utf-8]]||\n|[[reference|http://playground.arduino.cc/Main/DisablingAutoResetOnSerialConnection]]||\n|[[reference|about:preferences#]]||
The Adruino Micro is a special animal...\n\n[[AnyPort]]\n[[SerialStart]]
{{{\n/*\n * NewSerialServo\n * --------------\n * Servo control from the Serial port\n *\n * Alteration of the control interface to use keys\n * to slew the servo horn left and right. Works best with\n * the Linux/Mac terminal "screen" program.\n *\n * Created 10 December 2007\n * copyleft 2007 Brian D. Wendt\n * http://principialabs.com/\n *\n * Adapted from code by Tom Igoe\n * http://itp.nyu.edu/physcomp/Labs/Servo\n */\n#include <Servo.h> \n\nServo myservo;\nServo myservo2;\nServo myservo3;\n\n/** Adjust these values for your servo and setup, if necessary **/\nint servoPin = 3; // control pin for servo motor\nint minPulse = 600; // minimum servo position\nint moveServo; \nint turnRate = 1;\nint pos = 90;\nint pos2 = 90;\nint pos3 = 9-0;\nint Ipos=90;\n\nvoid setup() {\n\n myservo.attach(3);\n myservo2.attach(4);\n myservo3.attach(5);\n myservo.write(Ipos);\n myservo2.write(Ipos);\n myservo3.write(Ipos);\n Serial.begin(9600);\n delay(5000); // delay 5 seconds\n Serial.println("Car Starts!"); // prints hello with ending line break \n \n // Give the servo a starting point (or it floats)\n}\n\nvoid loop() {\n // wait for serial input\n if (Serial.available() > 0) {\n // read the incoming byte:\n moveServo = Serial.read();\n\n // ASCII '' is 46 (comma and period, really)\n if (moveServo == 65 || moveServo == 97 ) { pos = pos - turnRate; svrep(); } // A\n if (moveServo == 83 || moveServo == 115 ) { pos = 90 ; svrep(); } // S\n if (moveServo == 68 || moveServo == 100 ) { pos = pos + turnRate; svrep(); } // D\n if (moveServo == 70 || moveServo == 102 ) { pos2 = pos2 - turnRate; svrep(); } // F\n if (moveServo == 72 || moveServo == 103 ) { pos2 = pos2 + turnRate; svrep(); } // G\n if (moveServo == 71 || moveServo == 104 ) { pos2 = 90 ; svrep(); } // H\n if (moveServo == 74 || moveServo == 106 ) { pos3 = pos3 - turnRate; svrep(); } // J\n if (moveServo == 75 || moveServo == 107 ) { pos3 = pos3 + turnRate; svrep(); } // K\n if (moveServo == 76 || moveServo == 108 ) { pos3 = 90 ; } // L\n // if (moveServo == 63 ) { Serial.println("Hello world!") ; } // ?\n if (moveServo == 63 ) {helpmenu(); } // ?\n\n pos = constrain(pos, 5, 179);\n pos2 = constrain(pos2, 4, 180);\n pos3 = constrain(pos3, 4, 180);\n\n myservo.write(pos);\n myservo2.write(pos2);\n myservo3.write(pos3);\n\n\n}\n\n\n}\n\nint helpmenu() {\n Serial.println(" Arduino Serial Servo Control");\n Serial.println("Servo control either upper of lower case, ");\n Serial.println("Servo 1 Left : A ");\n Serial.println("Servo 1 Center : S ");\n Serial.println("Servo 1 Right : D ");\n Serial.println("Servo 2 Left : F ");\n Serial.println("Servo 2 Center : G ");\n Serial.println("Servo 2 Right : H ");\n Serial.println("Servo 3 Left : J ");\n Serial.println("Servo 3 Center : K ");\n Serial.println("Servo 3 Right : L ");\n Serial.println();\n \n}\n\nint svrep() {\n\n Serial.println(moveServo);\n Serial.print("Servo1: ");\n Serial.println(pos);\n Serial.print("Servo 2: ");\n Serial.println(pos2);\n Serial.print("Servo 3:");\n Serial.println(pos3);\n\n\n}\n}}}\n
Type the text for '2 October 2017'\n\nhttp://www.ladyada.net/learn/avr/setup-unix.html
\n\nType the text for '10 October 2017'\n\nNear Field Communications / Radio Frequency Identification \n\n[[PN532NFC/RFID controller breakout board|http://adafru.it/364]]\n\n|!Reference HTML|! Description|\n|[[Adafruit RFIC/NFC |https://www.adafruit.com/product/364]]||\n|[[adafruit-nfc-rfid-on-raspberry-pi |https://learn.adafruit.com/adafruit-nfc-rfid-on-raspberry-pi]]||\n|[[adafruit-pn532-rfid-nfc |https://learn.adafruit.com/adafruit-pn532-rfid-nfc]]||\n|[[pn532 breakout-wiring |https://learn.adafruit.com/adafruit-pn532-rfid-nfc/breakout-wiring]]||\n|[[shield-wiring |https://learn.adafruit.com/adafruit-pn532-rfid-nfc/shield-wiring]]||\n
Type the text for '10 October 2017'\n\nhttp://arduino-info.wikispaces.com/
Type the text for '1 December 2017'\n\nI want a linux script that can:\n# Load a compiled AVR - class program to the arduino\n# Execute that Program\n# Erase this program
Type the text for '18 December 2017'\n\n|!Reference HTML|! Description|\n|[[reference|http://docbox.flint.com:8081/arduino/#XMAS2017%20overview]]||\n|[[reference|https://learn.adafruit.com/adafruit-neopixel-uberguide/downloads]]||\n|[[reference|https://learn.adafruit.com/adafruit-neopixel-uberguide/software]]||\n|[[reference|https://learn.adafruit.com/adafruit-neopixel-uberguide/arduino-library-installation]]||\n|[[reference|https://github.com/adafruit/Adafruit_NeoPixel]]||\n|[[reference|https://learn.adafruit.com/adafruit-neopixel-uberguide/arduino-library-use]]||\n|[[reference|about:blank]]||
Type the text for '3 April 2018'\n\n[[Adafruit ESP32|https://makezine.com/product-review/adafruit-feather-huzzah32/?utm_source=MakeNewsletter+20180402&utm_medium=email&utm_content=button&utm_campaign=newsletter]]\n
Type the text for '22 May 2018'\n\n* [[Git Hub PJON |https://github.com/gioblu/PJON/wiki]]
Type the text for '27 August 2018'\n\n* [[Seven segment tutorial|http://www.ardumotive.com/8-digit-7seg-display-en.html]]
Type the text for '29 August 2018'\n\n* [[Seven Segment Display Driver|http://www.whatimade.today/programming-an-8-digit-7-segment-display-the-easy-way-using-a-max7219/]]
Type the text for '5 September 2018'\n\n{{{\n cd ~/arduino/ ; arduino-1.8.4/arduino\n}}}
Type the text for '5 September 2018'\n\n{{{\n//We always have to include the library\n#include "LedControl.h"\n\n/*\n 2018-09-05 actually works. flint\n SOURCE: www.rinkydinkelectronics.com/download.php?f=DS3231.zip\n Set for genuine uno.\n Now we need a LedControl to work with.\n ***** These pin numbers will probably not work with your hardware *****\n pin 12 is connected to the DataIn \n pin 13 is connected to the CLK \n pin 10 is connected to LOAD \n We have only a single MAX72XX.\n */\nLedControl lc=LedControl(12,13,10,1);\n\n/* we always wait a bit between updates of the display */\nunsigned long delaytime=250;\n\nvoid setup() {\n /*\n The MAX72XX is in power-saving mode on startup,\n we have to do a wakeup call\n */\n lc.shutdown(0,false);\n /* Set the brightness to a medium values */\n lc.setIntensity(0,8);\n /* and clear the display */\n lc.clearDisplay(0);\n}\n\n\n/*\n This method will display the characters for the\n word "Arduino" one after the other on digit 0. \n */\nvoid writeArduinoOn7Segment() {\n lc.setChar(0,0,'a',false);\n delay(delaytime);\n lc.setRow(0,0,0x05);\n delay(delaytime);\n lc.setChar(0,0,'d',false);\n delay(delaytime);\n lc.setRow(0,0,0x1c);\n delay(delaytime);\n lc.setRow(0,0,B00010000);\n delay(delaytime);\n lc.setRow(0,0,0x15);\n delay(delaytime);\n lc.setRow(0,0,0x1D);\n delay(delaytime);\n lc.clearDisplay(0);\n delay(delaytime);\n} \n\n/*\n This method will scroll all the hexa-decimal\n numbers and letters on the display. You will need at least\n four 7-Segment digits. otherwise it won't really look that good.\n */\nvoid scrollDigits() {\n for(int i=0;i<13;i++) {\n lc.setDigit(0,3,i,false);\n lc.setDigit(0,2,i+1,false);\n lc.setDigit(0,1,i+2,false);\n lc.setDigit(0,0,i+3,false);\n delay(delaytime);\n }\n lc.clearDisplay(0);\n delay(delaytime);\n}\n\nvoid loop() { \n writeArduinoOn7Segment();\n scrollDigits();\n}\n}}}
Type the text for '7 September 2018'\n\n\n* [[Update Linux|http://playground.arduino.cc/learning/linux]]\n\n* [[Sketch Installation |https://www.google.com/search?ei=IxSRW5rqNI2xggforIvwBw&q=%22Your+copy+of+the+IDE+is+installed+in+a+subfolder+of+your+sketchbook.++++Please+move+the+IDE+to+another+folder%22++preferences.txt&oq=%22Your+copy+of+the+IDE+is+installed+in+a+subfolder+of+your+sketchbook.++++Please+move+the+IDE+to+another+folder%22++preferences.txt&gs_l=psy-ab.3...509743.510276..510487...0.0..0.127.127.0j1......0....1j2..gws-wiz.....0..0i71._3BMM8J_Ry4]]\n\n\nLibraries - must include both the ".h" and the ".cpp" files!!!
Type the text for '7 September 2018'\n\n* [[circa 2009 |https://www.adafruit.com/product/91]]\n\n* Replaced by [[Flora |https://www.adafruit.com/product/2590]]\n\n
Type the text for '7 September 2018'\n\n* [[Gemma M0 overview|https://learn.adafruit.com/adafruit-gemma-m0?view=all]]\n* [[CircuitPython|]]\n* [[Adafruit Trinket M0]]
Type the text for '12 September 2018'\n\n* Upload to avr target\n** Accept commands & variables \n* Upload to gemma target\n** Accept commands & variables \n
Type the text for '12 September 2018'\n\n* [[How to upload code to an Arduino from a Pi|https://www.youtube.com/watch?v=qAM2S27FWAI]]
Type the text for '15 September 2018'\n\n* [[Adafruit Metro Mini|
Type the text for '15 September 2018'\n\n{{{\n// Simple NeoPixel test. Lights just a few pixels at a time so a\n// 1m strip can safely be powered from Arduino 5V pin. Arduino\n// may nonetheless hiccup when LEDs are first connected and not\n// accept code. So upload code first, unplug USB, connect pixels\n// to GND FIRST, then +5V and digital pin 6, then re-plug USB.\n// A working strip will show a few pixels moving down the line,\n// cycling between red, green and blue. If you get no response,\n// might be connected to wrong end of strip (the end wires, if\n// any, are no indication -- look instead for the data direction\n// arrows printed on the strip).\n// Source:https://learn.adafruit.com/neopixel-painter/test-neopixel-strip\n\n#include <Adafruit_NeoPixel.h>\n\n#define PIN 6\n#define N_LEDS 194\n\nAdafruit_NeoPixel strip = Adafruit_NeoPixel(N_LEDS, PIN, NEO_GRB + NEO_KHZ800);\n\n\nvoid setup() {\n strip.begin();\n}\n\nvoid loop() {\n chase(strip.Color(255, 0, 0)); // Red\n chase(strip.Color(0, 255, 0)); // Green\n chase(strip.Color(0, 0, 255)); // Blue\n}\n\nstatic void chase(uint32_t c) {\n for(uint16_t i=0; i<strip.numPixels()+4; i++) {\n strip.setPixelColor(i , c); // Draw new pixel\n strip.setPixelColor(i-4, 0); // Erase pixel a few steps back\n strip.show();\n delay(25);\n }\n}\n}}}
Type the text for '15 September 2018'\n\n[[Feather M0 Express|https://learn.adafruit.com/adafruit-feather-m0-express-designed-for-circuit-python-circuitpython/adafruit2-pinouts]]
Type the text for '17 September 2018'\n\n* [[Dot Star LEDs|https://core-electronics.com.au/tutorials/what-are-dotstar-leds.html]]
Type the text for '17 September 2018'\n\n\n\n
Type the text for '17 September 2018'\n\n[[Pinout |https://cdn-learn.adafruit.com/assets/assets/000/025/645/medium800/trinket5.png?1432753823]]\n\n[img[https://cdn-learn.adafruit.com/assets/assets/000/025/645/medium800/trinket5.png]]\n\n* [[Adafruit Trinket M0|https://learn.adafruit.com/adafruit-trinket-m0-circuitpython-arduino/overview]]\n* [[Trinket Pinout|https://learn.adafruit.com/introducing-trinket/pinouts]]\n* [[Trinket M0 Book|https://cdn-learn.adafruit.com/downloads/pdf/adafruit-trinket-m0-circuitpython-arduino.pdf]]\n* [[Schrmatic Board Layout|https://learn.adafruit.com/adafruit-trinket-m0-circuitpython-arduino/downloads]]\n
Type the text for '24 September 2018'\n\n* [[Farm Hack|https://farmhack.org/]]
* [[Trinket M0|Trinket M0]]
Type the text for '25 September 2018'\n\n* [[Trinket M0 Pinout|\n\nMount read-write\n{{{\nsudo mount -o remount,rw /dev/$(dmesg | tail -20 | grep sd.:|tr -s " "|rev |cut -d " " -f 1 |rev)\n}}}\n\n\n
Type the text for '4 October 2018'\n\n* [[Try to get here|https://www.youtube.com/watch?v=6nfRv4I2rkc]]\n* [[Welcome to the workshop|https://www.youtube.com/watch?v=0qwrnUeSpYQ]]\n\n* [[Motor Spec Sheet|http://robocraft.ru/files/datasheet/28BYJ-48.pdf]]
Type the text for '4 October 2018'\n\n* [[Connect 2 3D print|http://docbox.flint.com:8081/3Dprint]]
Type the text for '29 November 2018'\n\n* [[Command Line Arduino|und.arduino.cc/Learning/CommandLine]]\n\n
Type the text for '24 December 2018'\n\n12/24/2018 05:39:43 PM \n\nTasmota\n\n\nhttps://github.com/arendst/Sonoff-Tasmota\nhttps://www.itead.cc/sonoff-rf-bridge-433.html\nhttps://www.itead.cc/smart-home/sonoff-th.html\nhttps://www.itead.cc/sonoff-pow-r2.html\nhttps://www.itead.cc/bn-sz01.html
Type the text for '8 December 2019'\n\n[[X-Y Drawing Machine|https://www.youtube.com/watch?v=T0jwdrgVBBc]]\n\nMake Arduino XY Plotter Drawing Robot\n\n\nhttps://www.google.com/imgres?imgurl=https%3A%2F%2Fi.ytimg.com%2Fvi%2FT0jwdrgVBBc%2Fmaxresdefault.jpg&imgrefurl=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DT0jwdrgVBBc&docid=d_zQBwPEqYoMtM&tbnid=IMgdkv8Mg9VAgM%3A&vet=10ahUKEwig-fOyuKbmAhUIWa0KHaO1CwIQMwjoAigxMDE..i&w=1280&h=720&bih=768&biw=1042&q=wall%20mounted%20cad%20printer&ved=0ahUKEwig-fOyuKbmAhUIWa0KHaO1CwIQMwjoAigxMDE&iact=mrc&uact=8]]\n\n[[Instructables|https://www.instructables.com/id/XY-Plotter-Drawing-Robot-Arduino-Polargraph/]]
Type the text for '17 January 2022'\n\n* [[Keystudio easy plug control board|https://wiki.keyestudio.com/Ks0099_keyestudio_EASY_plug_Control_Board]]\n\nhttps://www.mywikis.com/404\n\nhttps://arduinoinfo.mywikis.net/wiki/EasyConnect\n\nhttps://arduinoinfo.mywikis.net/wiki/EasyConnectKit\n\n
Type the text for '25 April 2022'\n\n\n\n[[Circuit Playground Classic Product ID: 3000|https://www.adafruit.com/product/3000]]
Type the text for '15 May 2022'
Type the text for '15 May 2022'
Type the text for '18 July 2022'\n\n[[Terry's Inventory|https://arduinoinfo.mywikis.net/wiki/Esp32]]