Sorry for disturbing! But I need help!
I made a project for my design studies. It is a kind of a electric Chlandi Plate which must work as a time indicator (another words - a clock)
I made my generator, but stuck on programming an Arduino. Please, help my to made a program!
My design idea is to change the patterns on a plate in two ways:
1)automatically after a certain period of time
2) manually - when press the button
at the same time the LEDs, which lighten the plate must change their colours.
Plus, to choose the correct frequencies of generator i need a Serial Console.
My problem is - that I have bought the Arduino 2 weeks ago and still learn how to program it.
And I need to finish this object to 22th of March - in two days!
I need a device to command a mechanical plate driver.
so, it must produce 12 different sound frequencies. Every frequency must change in some minutes, AND has an option to change "manually", by pressing a key. Every frequency must have a "unique" colour-combination of the LEDs (this LEDs are lighten the plate).
Code... I tried a code from the arduino tutorials: mood lamp (works fine), serial controlled buzzer (don't want to work), buzzer (works fine).
My problem that when I combine the code from different programs, set the names of the variables - the code doesn't want to work
I will show my program in Monday, when I get to my working computer - the code is there
Now the Arduino only buzz on 6000Hz for 10 seconds, wait for a 30 seconds and buzz again
So - if I understand the OP - s/he wants the frequency (?) to change to one of 12 different frequencies (per hour?) - so a different pattern is shown for each time interval (each hour?) - I think.
well... It was the mix of different programs. It is hard to understand
So, I tried to make the new code from the scratch.
It is the early draft :~
char buffer[18]; //input buffer
int red, green, blue;
int RedPin = 9; // red LED
int GreenPin = 10; //green LED
int BluePin = 11; // Blue LED
int spkr = 13; // speaker output
int button = 7; // button
int numChar = Serial.available();
long previousMillis = 0; //interval
long interval = 5000;
void setup() {
Serial.begin(9600); //serial port
Serial.flush();
pinMode(RedPin, OUTPUT);
pinMode(GreenPin, OUTPUT);
pinMode(BluePin, OUTPUT);
pinMode(spkr, OUTPUT);
pinMode(button, INPUT);
/*I can't manage with serial control of the tones.
And has a difficulties with logical operations to control a button
(I mean - if you press the button the frequency changes. If not -
"the interval" change the frequency)
The code to change the power of LEDs - not the problem.
I will add it later
*/
}
void loop() {
tone (spkr, 1000, 2000); // tone 1
//here must be the code to change the colour of LEDs
if (millis() - previousMillis > interval);
tone (spkr, 2000, 2000); // tone 2
if (millis() - previousMillis > interval);
tone (spkr, 3000, 2000); // tone 3
if (millis() - previousMillis > interval);
tone (spkr, 4000, 2000); // tone 4
if (millis() - previousMillis > interval);
tone (spkr, 5000, 2000); // tone 5
if (millis() - previousMillis > interval);
tone (spkr, 6000, 2000); // tone 6
if (millis() - previousMillis > interval);
tone (spkr, 7000, 2000); // tone 7
if (millis() - previousMillis > interval);
tone (spkr, 8000, 2000); // tone 8
if (millis() - previousMillis > interval);
tone (spkr, 9000, 2000); // tone 9
if (millis() - previousMillis > interval);
tone (spkr, 10000, 2000); // tone 10
if (millis() - previousMillis > interval);
tone (spkr, 11000, 2000); // tone 11
if (millis() - previousMillis > interval);
tone (spkr, 12000, 2000); // tone 12
if (millis() - previousMillis > interval);
}
anyway, would You be so kind, and write correct code for serial part of the program? To change the frequencies from serial console. It is too long to compile and upload new frequencies every time.