86Duino development environment, 86Duino Coding, requires Java JRE. This application note talks about the steps to install the Java JRE packages to a CentOS machine. In addition, we also talk about system configuration to address problems associate with not able to locate the serial port and modem manager.(See the older version here before Coding 207) […]
86Duino development environment, 86Duino Coding, requires Java JRE . This application note talks about the steps to install Java JRE packages. In addition, we also talk about system configuration to address problems associate with not able to locate the serial port and modem manager. (See the older version here before Coding 207) Step 1 Launch […]
Description Must be called to initialize the Arduino GLCD screen before drawing anything. Syntax screen.begin() Parameters none Returns none Example See also - TFT Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference […]
Description This is the named instance of the TFT class when targeting the Arduino Esplora board. Syntax EsploraTFT Parameters none Returns none Example See also - TFT - begin() Libraries Reference Home The text of the 86Duino reference is a modification of the 86Duino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. […]
Description The base class for drawing to the Arduino TFT screen. Use this to create an named instance of the TFT class to refer to in your sketch. Syntax TFT(cs, dc, rst); // for using hardware SPI TFT(cs, dc, mosi, sclk, rst); // for use on any pins Parameters cs: pin for chip select (int) […]
Description Turns the motor a specific number of steps, at a speed determined by the most recent call to setSpeed(). This function is blocking; that is, it will wait until the motor has finished moving to pass control to the next line in your sketch. For example, if you set the speed to, say, 1 […]
Description Sets the motor speed in rotations per minute (RPMs). This function doesn’t make the motor turn, just sets the speed at which it will when you call step(). Parameters rpms: the speed at which the motor should turn in rotations per minute – a positive number (long) Returns None See also - Stepper() - […]
Description This function creates a new instance of the Stepper class that represents a particular stepper motor attached to your Arduino board. Use it at the top of your sketch, above setup() and loop(). The number of parameters depends on how you’ve wired your motor – either using two or four pins of the Arduino […]
Description This function creates a new instance of the Stepper class that represents a particular stepper motor attached to your 86Duino board. Use it at the top of your sketch, above setup() and loop(). The number of parameters depends on how you’ve wired your motor – either using two or four pins of the 86Duino […]
Two Pins [PIC] Four Pins [PIC] Libraries Reference Home The text of the 86Duino reference is a modification of the 86Duino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.