Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Добавил настройку количества секунд для отключения ленты #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 30 additions & 12 deletions Gyver_Ambilight/Gyver_Ambilight.ino
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define DI_PIN 13 // пин, к которому подключена лента

#define start_flashes 0 // проверка цветов при запуске (1 - включить, 0 - выключить)

#define count_seconds_for_off_led 60 //Количество секунд по прошествии которого лента выключится (всем пикселям будет задан черный цвет ) - таймер идет если нет связи с компом (например отключена подсветка или выключен компьютер)
#define auto_bright 0 // автоматическая подстройка яркости от уровня внешнего освещения (1 - включить, 0 - выключить)
#define max_bright 255 // максимальная яркость (0 - 255)
#define min_bright 50 // минимальная яркость (0 - 255)
Expand All @@ -17,11 +17,28 @@
//----------------------НАСТРОЙКИ-----------------------

int new_bright;
unsigned long bright_timer;
unsigned long bright_timer, off_timer;
#define serialRate 115200 // скорость связи с ПК
uint8_t prefix[] = {'A', 'd', 'a'}, hi, lo, chk, i; // кодовое слово Ada для связи
#include <FastLED.h>
CRGB leds[NUM_LEDS]; // создаём ленту
int offIndx = 0;

void switchOffLeds(){
LEDS.showColor(CRGB(0, 0, 0)); //Ставим черный цвет =)
}

void increaseCountForOff(){
if (millis() - off_timer > 1000){
off_timer=millis();
if (offIndx >-1 && offIndx < count_seconds_for_off_led) {
offIndx++;
} else {
offIndx = -1;
switchOffLeds();
}
}
}

void setup()
{
Expand All @@ -37,12 +54,13 @@ void setup()
delay(500);
LEDS.showColor(CRGB(0, 0, 0));
}

off_timer = millis();
Serial.begin(serialRate);
Serial.print("Ada\n"); // Связаться с компом
}

void loop() {

if (auto_bright) { // если включена адаптивная яркость
if (millis() - bright_timer > 100) { // каждые 100 мс
bright_timer = millis(); // сброить таймер
Expand All @@ -53,37 +71,37 @@ void loop() {
}

for (i = 0; i < sizeof prefix; ++i) {
waitLoop: while (!Serial.available()) ;;
waitLoop: while (!Serial.available()) increaseCountForOff();
if (prefix[i] == Serial.read()) continue;
i = 0;
goto waitLoop;
}

while (!Serial.available()) ;;
while (!Serial.available()) increaseCountForOff();
hi = Serial.read();
while (!Serial.available()) ;;
while (!Serial.available()) increaseCountForOff();
lo = Serial.read();
while (!Serial.available()) ;;
while (!Serial.available()) increaseCountForOff();
chk = Serial.read();
if (chk != (hi ^ lo ^ 0x55))
{
i = 0;
goto waitLoop;
}

offIndx = 0;
memset(leds, 0, NUM_LEDS * sizeof(struct CRGB));
for (uint8_t i = 0; i < NUM_LEDS; i++) {
byte r, g, b;
// читаем данные для каждого цвета
while (!Serial.available());
while (!Serial.available()) increaseCountForOff();
r = Serial.read();
while (!Serial.available());
while (!Serial.available()) increaseCountForOff();
g = Serial.read();
while (!Serial.available());
while (!Serial.available()) increaseCountForOff();
b = Serial.read();
leds[i].r = r;
leds[i].g = g;
leds[i].b = b;
}
FastLED.show(); // записываем цвета в ленту
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
#define DI_PIN 13 // пин, к которому подключена лента

#define start_flashes 0 // проверка цветов при запуске (1 - включить, 0 - выключить)

#define count_seconds_for_off_led 60 //Количество секунд по прошествии которого лента выключится (всем пикселям будет задан черный цвет ) - таймер идет если нет связи с компом (например отключена подсветка или выключен компьютер)
#define auto_bright 0 // автоматическая подстройка яркости от уровня внешнего освещения (1 - включить, 0 - выключить)
#define max_bright 255 // максимальная яркость (0 - 255)
#define min_bright 50 // минимальная яркость (0 - 255)
Expand Down