Usage for hash tag: include

  1. R

    Using Thrusters as wave makers in aquariums

    ...ramp up and down randomly, let me know how you like it, I have modified it to run 4 thrusters, I will add small ones on opposite side. #include <Servo.h> const int servoPins[] = {9, 10, 11, 12}; // Pins for the four servo motors Servo servos[4]; // Array of Servo objects void setup() {...
  2. R

    Using Thrusters as wave makers in aquariums

    ...reverse option, after random flow and very smooth ramp up and down it turns reverse slowly for seconds and then ramp up and down again, #include <Servo.h> #include <stdlib.h> const int servoPin1 = 9; const int servoPin2 = 10; const int potentiometerPin = A0; Servo servo1; Servo servo2; void...
  3. R

    Using Thrusters as wave makers in aquariums

    ...down working beautifully, if you are able to do, please do let me know. copy paste the code in Arduino Uno Sketch Sketch for Arduino Uno - #include <Servo.h> const int servoPin1 = 9; const int servoPin2 = 10; const int potentiometerPin = A0; Servo servo1; Servo servo2; void setup() {...
  4. BassamKassem

    DIY Alkalinity Monitor

    ...When uploaded this code, please open the serial monitor of the Ardino IDE. The correct value of the EEPROM block should be 255. */ #include <EEPROM.h> #define PHADDR 0x00 void setup() { Serial.begin(115200); for(int i = 0;i < 8; i++ ) { EEPROM.write(PHADDR+i, 0xFF);// write...
  5. bread1973

    DIY Alkalinity Monitor

    #include <WiFi.h> #include <Wire.h> #include <WebServer.h> #define WIRE_SLAVE_ADDRESS 9 #include "time.h" #include <Arduino.h> #include <ESP32_MailClient.h> // Replace with your network credentials const char* ssid = "chengyu-xiaomi"; const char* password = "xxxxx"; unsigned long...
  6. Wolfw28

    Help with esp32 sketch

    ...you help Happy Holidays /home/pi/Arduino/sketch_dec23a/sketch_dec23a.ino:3:10: fatal error: ESPAsyncWebServer.h: No such file or directory #include <ESPAsyncWebServer.h> ^~~~~~~~~~~~~~~~~~~~~ compilation terminated. exit status 1 Compilation error: ESPAsyncWebServer.h: No such...
  7. Paul B

    anybody good with small servo's for invention

    ...the sand ran out, every cycle would have a different amount of sand left in the thing. It works perfectly. Here is the sketch I used. #include <Servo.h> Servo myservo; // create servo object to control a servo // twelve servo objects can be created on most boards int point of sale = 0; //...
  8. NeonRabbit221B

    anybody good with small servo's for invention

    ...This example code is in the public domain. modified 8 Nov 2013 by Scott Fitzgerald http://www.arduino.cc/en/Tutorial/Sweep */ #include <Servo.h> Servo myservo; // create servo object to control a servo // twelve servo objects can be created on most boards int point of sale = 0; // variable...
  9. Paul B

    anybody good with small servo's for invention

    ...This example code is in the public domain. modified 8 Nov 2013 by Scott Fitzgerald http://www.arduino.cc/en/Tutorial/Sweep */ #include <Servo.h> Servo myservo; // create servo object to control a servo // twelve servo objects can be created on most boards int point of sale = 0; // variable...
  10. Paul B

    anybody good with small servo's for invention

    ...This example code is in the public domain. modified 8 Nov 2013 by Scott Fitzgerald http://www.arduino.cc/en/Tutorial/Sweep */ #include <Servo.h> Servo myservo; // create servo object to control a servo // twelve servo objects can be created on most boards int point of sale = 0; // variable...
Back
Top