This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Code 3 | |
Board: L293D Motor Drive DIP 16 Pin IC & 28BYJ-48 Stepper Motor & Arduino Uno IDE 1.8.5 | |
Connections: See Fritzing in https://medium.com/jungletronics/28byj-48-stepper-motor-peak-rpm-658eae6afe2f | |
Power Supply: 12v .5A Power Cable right into 5.5mm Jack of Arduino UNO | |
Max RPM: 24 RPM | |
*/ | |
int Blue = 0; // Firing order for 28BYJ-48 Stepper Motor | |
int Pink = 1; // First Blue coil |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Code 2 | |
Board: Adafruit Motor/Stepper/Servo Shield for Arduino kit - v1.2 & 28BYJ-48 Stepper Motor & Arduino Uno IDE 1.8.5 | |
Connections: See Fritzing in https://medium.com/jungletronics/28byj-48-stepper-motor-peak-rpm-658eae6afe2f | |
Power Supply: 5v .5A USB Power Cable right into 5.5mm Jack of Adafruit Board | |
Max RPM: 15 RPM in FullDriver Mode | |
*/ | |
#include <AFMotor.h> | |
// Connect a stepper motor with 64 steps per revolution (5.625 degree) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Code 1 | |
Board: ULN2003 Driver & 28BYJ-48 Stepper Motor & Arduino Uno IDE 1.8.5 | |
Connections: See Fritzing in https://medium.com/jungletronics/28byj-48-stepper-motor-peak-rpm-658eae6afe2f | |
Power Supply: 12v .5A or 5v .5A USB Power Cable right into 5.5mm Jack of UL2003 Board | |
Max RPM: Power Supply 5v .5A USB -> #define waiting_time 2 (seconds) MAX 14.5 RPM | |
Power Supply 9v .5A -> #define waiting_time 1 (seconds) MAX 29.0 RPM | |
but heat issue happens:/ | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Ardu-Serie#66 | |
Project : Digispark - Easy Installations Procedures | |
Ino File: _66_DigiSpark_Blinking_LED_01.ino | |
*/ | |
void setup() { | |
pinMode(1, OUTPUT); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Kids-Serie#10 | |
Project : Arduino Start Up | |
Ino File: _10_All_Features_05.ino | |
*/ | |
#include <Servo.h> | |
Servo myServo; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Kids-Serie#10 | |
Project : Arduino Start Up | |
Ino File: _10_ControllingServo_04.ino | |
*/ | |
#include <Servo.h> | |
Servo myServo; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Kids-Serie#10 | |
Project : Arduino Start Up | |
Ino File: _10_SimulateAnalogOutput_03.ino | |
*/ | |
void setup() { // put your setup code here, to run once: | |
pinMode(3, OUTPUT); // LED connected |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Kids-Serie#10 | |
Project : Arduino Start Up | |
Ino File: _10_Blinking_LED_01.ino | |
*/ | |
void setup() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Project name: | |
16 #arduSerie - Arduino Headless Setup & ESP 8266 | |
(WIFI cheap chip!) | |
Flavour I - | |
Hex File: _16_arduSerie_sketch_01.HelloServer_Json.ino | |
Revision History: | |
20160927: | |
- board found on Arduino IDE Exemples | |
(connect everything on ESP8266 to access examples) |