Witam,
chciałbym przedstawić Wam mój projekt – kontroler iTunes. Urządzenie to służy do wyświetlania tytułu, wykonawcy piosenki, oraz pozycji odtwarzacza programu iTunes. Wszystko jest wyświetlane na dużym (4×20) wyświetlaczu i jest sterowane pilotem IR. Całość działa na Arduino + Processing + AppleScript. Z tego względu ten projekt będzie działał jedynie na komputerze z systemem OS X.
Co będzie nam do tego potrzebne?
– Arduino Uno
– Wyświetlacz LCD 4×20
– Kontroler I2C oparty na HD44780
– Płytka stykowa
– Kabelki do płytki stykowej
– Dioda RGB
– Rezystory 220Ω
– Odbiornik podczerwieni
– Oprawki do diod LED
– Komputer z systemem OS X (testowane na 10.9.2)
– Biblioteki: Wire, LiquidCrystal I2C, IRremote
Schemat połączeń dla arduino:
Nie ma tutaj nic skomplikowanego, cały projekt opiera się głównie na wyświetlaczu.
Zasada działania:
Wszystko zaczyna się od skryptu Apple Script, który zapisuje do pliku tekstowego: tytuł, wykonawcę, czas piosenki, aktualną pozycję, głośność oraz status odtwarzacza. Następnie Processing wysyła wszystkie te dane do Arduino, poprzez serial port. Mikrokontroler odbiera te dane i w odpowiedni sposób wyświetla na wyświetlaczu. Mamy do tego diodę RGB, która sygnalizuje nam niektóre rzeczy. Wszystko to działa “real-time”, opóźnienie wynosi ok. 1 sekundy.
Sterowanie pilotem podczerwieni
Wszystko o odbieraniu sygnału IR przez Arduino świetnie opisał Łukasz w swoim wpisie. Ja do tego użyłem swojego starego pilota z DVD, jest on mały, poręczny i ma masę przycisków. Zaprogramowałem Arduino tak, że mogę nim: Zmieniać piosenki, włączyć pauzę/play, pogłaśniać, przewijać muzykę oraz wyłączyć/włączyć iTunes. Wykorzystałem do tego też diodę RGB, która sygnalizuje odebranie sygnału pilota.
Kod Arduino:
Całość napisałem sam, z drobną pomocą mojego dobrego kolegi Łukasza.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 |
#include <Wire.h> #include <LiquidCrystal_I2C.h> #include <IRremote.h> #define irPin 7 #define progressline 2 #define irp 0 #define red 9 #define green 5 #define blue 6 String text; String lastmusic; String lasttime; String lastvolume; String laststatus; String music; String time; String artist; String volume; String playerstatus; byte color; LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); IRrecv irrecv(irPin); decode_results results; byte nothing[8] = { B00000, B00000, B00000, B00000, B00000, B00000, B00000, B00000, }; byte first[8] = { B00000, B00000, B10000, B10000, B10000, B10000, B00000, B00000, }; byte second[8] = { B00000, B00000, B11000, B11000, B11000, B11000, B00000, B00000, }; byte third[8] = { B00000, B00000, B11100, B11100, B11100, B11100, B00000, B00000, }; byte four[8] = { B00000, B00000, B11110, B11110, B11110, B11110, B00000, B00000, }; byte five[8] = { B00000, B00000, B11111, B11111, B11111, B11111, B00000, B00000, }; byte pause[8] = { B00000, B11011, B11011, B11011, B11011, B11011, B11011, B00000, }; byte play[8] = { B00000, B01000, B01100, B01110, B01111, B01110, B01100, B01000, }; void setup() { led(2); pinMode(red, OUTPUT); pinMode(green, OUTPUT); pinMode(blue, OUTPUT); lcd.begin(20,4); lcd.setCursor(0, 1); lcd.print(" Welcome!"); lcd.setCursor(0, 2); delay(1000); lcd.print("in iTunes Controller"); delay(2000); lcd.noBacklight(); lcd.clear(); Serial.begin(9600); irrecv.enableIRIn(); lcd.createChar(0, nothing); lcd.createChar(1, first); lcd.createChar(2, second); lcd.createChar(3, third); lcd.createChar(4, four); lcd.createChar(5, five); lcd.createChar(6, play); lcd.createChar(7, pause); led(0); } void loop() { if (Serial.available()) { text = Serial.readStringUntil('n'); music = getValue(text, ',', 0); time = getValue(text, ',', 1); artist = getValue(text, ',', 2); volume = getValue(text, ',', 3); playerstatus = getValue(text, ',', 4); if (music == "iTunes is off") { led(1); lcd.clear(); lcd.noBacklight(); } else { led(0); lcd.backlight(); } if (lastmusic != music || lasttime != time || laststatus !=playerstatus || lastvolume != volume) { lcd.clear(); lenght(artist, 0); lcd.print(artist); lenght(music, 1); lcd.print(music); lcd.setCursor(0, 3); lcd.print("Vol: "); lcd.print(volume); lcd.print("% Status: "); if (playerstatus == "Playing") { lcd.write(byte(6)); } if (playerstatus == "Paused") { lcd.write(byte(7)); } progressbar(time.toInt()); lastmusic=music; lasttime=time; lastvolume=volume; laststatus=playerstatus; } } remote(); delay(100); } void lenght(String str, byte row) { byte lenght = str.length(); if (lenght <= 18) { lenght = map(lenght, 1, 18, 9, 1); lcd.setCursor(lenght,row); } else { lcd.setCursor(0,row); } } void remote(){ if (irrecv.decode(&results)) { switch (results.value) { case 0x5EA08104: //Next Serial.write(byte(1)); pilot(); break; case 0x4EBA0422: //Previous Serial.write(byte(2)); pilot(); break; case 0xC2E92AD6: //Play Serial.write(byte(3)); pilot(); break; case 0x22CF7E40: //Pause Serial.write(byte(4)); pilot(); break; case 0xCA9582FA: //Stop Serial.write(byte(5)); pilot(); break; case 0xB595064: //ON-OFF Serial.write(byte(6)); pilot(); break; case 0x470DABFE: //Random Serial.write(byte(7)); pilot(); break; case 0x5F66076: //Next Slow Serial.write(byte(8)); pilot(); break; case 0x1E6BA628: //Next Speed Serial.write(byte(9)); pilot(); break; case 0xF190AA9C: //Previous Slow Serial.write(byte(10)); pilot(); break; case 0xBE14D11A: //Previous Speed Serial.write(byte(11)); pilot(); break; case 0x9986485A: //Volume Up Serial.write(byte(12)); pilot(); break; case 0x1C6A919C: //Volume Down Serial.write(byte(13)); pilot(); break; } irrecv.resume(); } } String getValue(String data, char separator, byte index) { byte found = 0; byte strIndex[] = {0, -1}; byte maxIndex = data.length()-1; for (byte i = 0; i <= maxIndex && found <= index; i++) { if (data.charAt(i) == separator || i == maxIndex) { found++; strIndex[0] = strIndex[1]+1; strIndex[1] = (i == maxIndex) ? i+1 : i; } } return found>index ? data.substring(strIndex[0], strIndex[1]) : ""; } void progressbar(int value) { byte currentpos; byte fullblocks = value/5; for (byte i = 0; i <= 19; i++) { lcd.setCursor(i,progressline); lcd.write(byte(0)); } for (byte i = 0; i < fullblocks; i++) { lcd.setCursor(i, progressline); lcd.write(byte(5)); } byte subblocks = (value-(fullblocks*5)); lcd.setCursor(fullblocks, progressline); lcd.write(byte(subblocks)); } void pilot() { led(3); delay(100); led(0); } void led(byte color) { if (color == 0) { analogWrite(red, 0); analogWrite(green, 0); analogWrite(blue, 0); } if (color == 1) { analogWrite(red, 3); analogWrite(green, 0); analogWrite(blue, 0); } if (color == 2) { analogWrite(red, 0); analogWrite(green, 3); analogWrite(blue, 0); } if (color == 3) { analogWrite(red, 0); analogWrite(green, 0); analogWrite(blue, 6); } } |
Kod Processing:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
import processing.serial.*; String music = ""; String artist = ""; String volume = ""; String status = ""; String portName = "/dev/cu.usbmodemfa1231"; int currenttime = 0; int tracktime = 0; int loop = 0; Serial myPort; String path = "/Users/Pawel/files/"; void setup() { size(10, 10); myPort = new Serial(this, portName, 9600); frame.setVisible(false); } void draw() { loop++; remote(); if (loop == 5) { try { Runtime.getRuntime().exec(path+"bash.sh"); } catch(IOException ioEx) {} String[] file = loadStrings(path+"itunes.txt"); music = file[0]; if (music.equals("iTunes is off")) { myPort.write("iTunes is offn"); } else { tracktime = int(file[1]); currenttime = int(file[2]); artist = file[3]; volume = file[4]; status = file[5]; int timeblock = (currenttime*100)/tracktime; timeblock = round (timeblock); String time = str(timeblock); replace(); myPort.write(music+","+time+","+artist+","+volume+","+status+"n"); } loop = 0; } delay(100); } void remote() { int val = myPort.read(); if (val == 1) { try { Runtime.getRuntime().exec(path+"next.sh"); } catch(IOException ioEx) {} } if (val == 2) { try { Runtime.getRuntime().exec(path+"previous.sh"); } catch(IOException ioEx) {} } if (val == 3) { try { Runtime.getRuntime().exec(path+"play.sh"); } catch(IOException ioEx) {} } if (val == 4) { try { Runtime.getRuntime().exec(path+"pause.sh"); } catch(IOException ioEx) {} } if (val == 5) { try { Runtime.getRuntime().exec(path+"stop.sh"); } catch(IOException ioEx) {} } if (val == 6) { try { Runtime.getRuntime().exec(path+"onoff.sh"); } catch(IOException ioEx) {} } if (val == 7) { try { Runtime.getRuntime().exec(path+"random.sh"); } catch(IOException ioEx) {} } if (val == 8) { try { Runtime.getRuntime().exec(path+"nsl.sh"); } catch(IOException ioEx) {} } if (val == 9) { try { Runtime.getRuntime().exec(path+"nsp.sh"); } catch(IOException ioEx) {} } if (val == 10) { try { Runtime.getRuntime().exec(path+"psl.sh"); } catch(IOException ioEx) {} } if (val == 11) { try { Runtime.getRuntime().exec(path+"psp.sh"); } catch(IOException ioEx) {} } if (val == 12) { try { Runtime.getRuntime().exec(path+"volumeup.sh"); } catch(IOException ioEx) {} } if (val == 13) { try { Runtime.getRuntime().exec(path+"volumedown.sh"); } catch(IOException ioEx) {} } } void replace() { music = music.replaceAll("Ą", "A"); music = music.replaceAll("Ć", "C"); music = music.replaceAll("Ę", "E"); music = music.replaceAll("Ł", "L"); music = music.replaceAll("Ń", "N"); music = music.replaceAll("Ó", "O"); music = music.replaceAll("Ś", "S"); music = music.replaceAll("Ź", "Z"); music = music.replaceAll("Ż", "Z"); music = music.replaceAll("ą", "a"); music = music.replaceAll("ć", "c"); music = music.replaceAll("ę", "e"); music = music.replaceAll("ł", "l"); music = music.replaceAll("ń", "n"); music = music.replaceAll("ó", "o"); music = music.replaceAll("ś", "s"); music = music.replaceAll("ź", "z"); music = music.replaceAll("ż", "z"); artist = artist.replaceAll("Ą", "A"); artist = artist.replaceAll("Ć", "C"); artist = artist.replaceAll("Ę", "E"); artist = artist.replaceAll("Ł", "L"); artist = artist.replaceAll("Ń", "N"); artist = artist.replaceAll("Ó", "O"); artist = artist.replaceAll("Ś", "S"); artist = artist.replaceAll("Ź", "Z"); artist = artist.replaceAll("Ż", "Z"); artist = artist.replaceAll("ą", "a"); artist = artist.replaceAll("ć", "c"); artist = artist.replaceAll("ę", "e"); artist = artist.replaceAll("ł", "l"); artist = artist.replaceAll("ń", "n"); artist = artist.replaceAll("ó", "o"); artist = artist.replaceAll("ś", "s"); artist = artist.replaceAll("ź", "z"); artist = artist.replaceAll("ż", "z"); } |
Rozmieszczenie katalogów i plików:
Każda wykonywana akcja (np. pogłaśnianie) to osobny skrypt Apple Script. Wszystkie skryptu udostępniłem Wam do pobrania (tutaj). Ja całość umieściłem w swoim folderze domowym.
W pliku “bash.sh” trzeba zmienić “/Users/Pawel/files/” na adres do tego katalogu.
W Processing należy podać swoją ścieżkę do tego katalogu, w zmiennej “path“.
Należy również zmienić port szeregowy Arduino na swój.
Teraz wystarczy wgrać program do Arduino, oraz uruchomić aplikację Processing i wszystko powinno działać.
Wygląd zewnętrzny:
Pełno kabli podłączonych do płytki stykowej i Arduino wygląda średnio, dlatego całość zapakowałem w stare drewniane pudełko, o kolorze zbliżonym do koloru moich mebli. W środku wyciąłem miejsce na ekran, diodę RGB i kabel. Zastosowałem też oprawkę do diody LED, dzięki której wygląda to schludnie i estetycznie.
Efekt końcowy:
Filmik prezentujący kontroler:
To już koniec, mam nadzieję, że spodobał się Wam mój projekt ;)
Ciekawy projekt, podoba mi się Arduino coraz bardziej :)
Ścieżka do folderu domowego w Unixach to ~ (np.
cd ~
) – oszczędziłoby to trochę grzebania w kodzie.albo $HOME
Fajnie, drobne dwie uwagi:
Ad1, A czy nie jest tak, że one są potrzebne tylko przy podłączaniu więcej niż jedno urządzenie po i2c?
No właśnie, tak jak Piotr zauważył. Wydawało mi się (tak chyba gdzieś wyczytałem), że rezystory podciągające są potrzebne przy więcej niż jednym urządzeniu… Mogę się mylić, bo ekspertem nie jestem. Fajnie by było jak byś to wyjaśnij, a nuż się czegoś nauczę ;)
jak wyglada sprawa z pilotem ir? moje kody odczytywane za kazdym razem sa inne dla tego samego przycisku
Witamy! Napisz proszę o instrukcje krok po kroku.