Golubjevaite/SpecialIssue10: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
__NOTOC__


Line 6: Line 5:
>>>> okokokok >> don’t be scared >> seven [‘7’] is a straight forward .print&.read device >> you can play the prewritten poem [‘seven.ino’] or you can write your own >> [‘7’] can manipulate text >> it can send an outgoing message or be interrupted by an incoming one >> [‘7’] enjoys repetition, coincidence & a gentle touch >> to channel text the module needs to be connected to a TV screen through a video input >> a video signal is broadcasted and can be listened to in mono <<<<
>>>> okokokok >> don’t be scared >> seven [‘7’] is a straight forward .print&.read device >> you can play the prewritten poem [‘seven.ino’] or you can write your own >> [‘7’] can manipulate text >> it can send an outgoing message or be interrupted by an incoming one >> [‘7’] enjoys repetition, coincidence & a gentle touch >> to channel text the module needs to be connected to a TV screen through a video input >> a video signal is broadcasted and can be listened to in mono <<<<


<br>parts:
<br>components:
<br> - 1 x seven['7'][[https://git.xpub.nl/XPUB/special-issue-x/src/branch/master/sketches/my_sk_sandra/PCB-Frietzing PCB]]  
<br> - 1 x seven['7'][[https://git.xpub.nl/XPUB/special-issue-x/src/branch/master/sketches/my_sk_sandra/PCB-Frietzing PCB]]  
<br> - 1 x arduino [[https://store.arduino.cc/arduino-nano NANO]]
<br> - 1 x arduino [[https://store.arduino.cc/arduino-nano NANO]]
Line 17: Line 16:
<br> - 1 x 470 Ohm resistor
<br> - 1 x 470 Ohm resistor
<br> - 1 x header 5x2
<br> - 1 x header 5x2


<br>[[https://github.com/Avamander/arduino-tvout/ TVout library]] a library for generating composite video on an ATmega microcontroller
<br>[[https://github.com/Avamander/arduino-tvout/ TVout library]] a library for generating composite video on an ATmega microcontroller
<br>[[https://code.google.com/archive/p/arduino-tvout/wikis TVout]] wikis
<pre>
#include <TVout.h>
#include <fontALL.h>
TVout TV;
unsigned char x,y;
void setup() {
TV.begin(PAL);
TV.select_font(font4x6);
}
void loop() {
TV.select_font(font4x6);
TV.print("POETRY");
TV.draw_line(60,20,60,76,WHITE);
TV.delay(200);
TV.clear_screen();
TV.draw_rect(20,20,33,76,0,0);
TV.print("7777777",10,10);
}
</pre>
<br>[[https://www.arduino.cc/reference/en/language/functions/communication/serial/read/ Arduino serial.read]] Arduino TX & RX / send and receive text
<br>[[https://www.arduino.cc/reference/en/language/functions/communication/serial/read/ Arduino serial.read]] Arduino TX & RX / send and receive text
<pre>
int incomingByte = 0;
void setup() {
Serial.begin (9600);
}
void loop() {
TV.print((char)Serial.read()); //receive
TV.delay(20);
Serial.print("POETRY"); //send
}
</pre>
==LFP==
==LFP==
[[File:Catdogmouse.gif|600px|thumbnail|right|catdogmouse.ino]]
[[File:Catdogmouse.gif|600px|thumbnail|right|catdogmouse.ino]]
Line 53: Line 92:


==Links==
==Links==
LFP
<br>[[https://poets.org/text/brief-guide-concrete-poetry concrete poetry]]
<br>[[https://poets.org/text/brief-guide-concrete-poetry concrete poetry]]
<br>[[https://github.com/joeycastillo/The-Open-Book open book project]]
<br>[[https://github.com/joeycastillo/The-Open-Book open book project]]

Revision as of 23:55, 4 December 2019


seven ['7']

7777777

>>>> okokokok >> don’t be scared >> seven [‘7’] is a straight forward .print&.read device >> you can play the prewritten poem [‘seven.ino’] or you can write your own >> [‘7’] can manipulate text >> it can send an outgoing message or be interrupted by an incoming one >> [‘7’] enjoys repetition, coincidence & a gentle touch >> to channel text the module needs to be connected to a TV screen through a video input >> a video signal is broadcasted and can be listened to in mono <<<<


components:
- 1 x seven['7'][PCB]
- 1 x arduino [NANO]
- 7 x rotary potentiometer (small) / 9mm/ 10kOhm
- 7 x tactile switch momentary [4pin 6x6x5mm]
- 3 x 3.5mm switch jack
- 1 x rca female [LUM 1553 02 SW]
- 7 x 10K Ohm resistor
- 1 x 1K Ohm resistor
- 1 x 470 Ohm resistor
- 1 x header 5x2



[TVout library] a library for generating composite video on an ATmega microcontroller
[TVout] wikis

#include <TVout.h> 
#include <fontALL.h>
TVout TV; 
unsigned char x,y;

void setup() {
TV.begin(PAL);
TV.select_font(font4x6);
}

void loop() {
TV.select_font(font4x6);
TV.print("POETRY");
TV.draw_line(60,20,60,76,WHITE);
TV.delay(200);
TV.clear_screen();
TV.draw_rect(20,20,33,76,0,0);
TV.print("7777777",10,10);
}


[Arduino serial.read] Arduino TX & RX / send and receive text

int incomingByte = 0; 

void setup() {
Serial.begin (9600);
}

void loop() {
TV.print((char)Serial.read()); //receive
TV.delay(20);
Serial.print("POETRY"); //send
}

LFP

catdogmouse.ino

[Arduino 101]
[Arduino101-LFP]
[LFP]
Mystifying/Demystifying [C]
[MODULES]
>>>>>>>>>>>>>>>>>>>> [CURL] <<<<<<<<<<<<<<<<<<<<<<
deadlines [PAD]
decisions [PAD]


Meergranen s.gif

*^*^*


- [catdogmouse] <git / testing some txt varations/ using Serial monitor for now ↓
- [catdogmousetv.ino] <git / tv out library / printing on the screen ↓
- [prototype-mega.uno] < git / narrative in process ↓
- [seven.fzz] < git / PCB ←
Gifcdm.gif Pcb-seven.jpg

workshop with Olli Aarni

WORKSHOP PART 1 [PAD]
[Olli's web]
File:S-Water.mp3
File:S-Wood.mp3
WORKSHOP PART 2 [PAD]

duch modular fest

Mf1.jpeg Mf2.jpeg Mf3.jpeg


Links


[concrete poetry]
[open book project]
[bootleg library]
[dadadodo]
[Handbook of hardware schemes]
[ciat-lonbarde /artist]
[Keypad exmpl]
[ASCII]
[shop]
[klawiatura /youtube]
[phone as gsm module /youtube]
[arduino Strings and more]
[Display exmpl]
[circuito.io]
[A100_diy]
[building-contact-mics]
[entertaining-the-invalid /music]
[portable-audio-mixer]
[Klein-Lifetime /music]
[resistor-calculator]
[arduino-tvout - FDcomplete.wiki]