Browse Source

Less brightness (easier to film)

Link to video from README
master
The Dod 4 weeks ago
parent
commit
6e5a48be92
4 changed files with 8 additions and 4 deletions
  1. 5
    4
      README.md
  2. BIN
      graphics/cuts-with-hardware.png
  3. BIN
      graphics/cuts-without-hardware.png
  4. 3
    0
      talismetta/talismetta.ino

+ 5
- 4
README.md View File

1
 ### Talis-Metta
1
 ### Talis-Metta
2
 
2
 
3
-#### _[Work in Progress]_
3
+[![Talis-Metta's opening screen](graphics/talismetta.png)](https://nandn.org.il/talis-metta.mp4)
4
 
4
 
5
-Talis-Metta is a collaborative talisman with the virtue of [metta](https://en.wikipedia.org/wiki/Mettā) — intention, prayer and wishes for unconditional love — for myself, my loved ones and everyone else.
6
-From inner peace — through good will towards the other — to world peace.
5
+[**[video](https://nandn.org.il/talis-metta.mp4)**]
6
+
7
+Talis-Metta is a collaborative talisman with the virtue of [metta](https://en.wikipedia.org/wiki/Mettā) — loving kindness — for myself, my loved ones and everyone else.
7
 
8
 
8
 ----
9
 ----
9
 
10
 
10
 To convert images from [graphics/](graphics) to `.h` files under [talismetta/](talismetta),
11
 To convert images from [graphics/](graphics) to `.h` files under [talismetta/](talismetta),
11
-use [Rinky-Dink Electronics converter](http://www.rinkydinkelectronics.com/t_imageconverter565.php)
12
+use [Rinky-Dink Electronics converter](http://www.rinkydinkelectronics.com/t_imageconverter565.php)

BIN
graphics/cuts-with-hardware.png View File


BIN
graphics/cuts-without-hardware.png View File


+ 3
- 0
talismetta/talismetta.ino View File

19
 #define BUTTON1PIN ((gpio_num_t)35)
19
 #define BUTTON1PIN ((gpio_num_t)35)
20
 #define BUTTON2PIN ((gpio_num_t)0)
20
 #define BUTTON2PIN ((gpio_num_t)0)
21
 
21
 
22
+#define BRIGHTNESS 31 // 0..255
23
+
22
 #define INTRO_FREEZE_MILLIS 4000
24
 #define INTRO_FREEZE_MILLIS 4000
23
 #define INTRO_SCROLL_MILLIS 2000
25
 #define INTRO_SCROLL_MILLIS 2000
24
 
26
 
192
   tft.init();
194
   tft.init();
193
   tft.setRotation(3); // was 1
195
   tft.setRotation(3); // was 1
194
   tft.setSwapBytes(true);
196
   tft.setSwapBytes(true);
197
+  analogWrite(TFT_BL,BRIGHTNESS);
195
   tft.fillScreen(TFT_BLACK);
198
   tft.fillScreen(TFT_BLACK);
196
 
199
 
197
   background.createSprite(240, 135);
200
   background.createSprite(240, 135);

Loading…
Cancel
Save