newsketch

master
anna sandri 5 years ago
parent 1e66cfa2eb
commit f78eb359ed

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 MiB

File diff suppressed because one or more lines are too long

@ -9,6 +9,8 @@
int knob2;
int knob3;
char ciao []= "hello";
TVout TV;
void setup() {
@ -27,6 +29,13 @@ void loop() {
TV.bitmap (0,0,mouthopen);
TV.delay (1000);
if (knob2>0 && knob2<500){
TV.print (70,0,ciao);
delay (100);
}
}

@ -0,0 +1,94 @@
#include <fontALL.h>
#include <font8x8.h>
#include <font4x6.h>
#include <font6x8.h>
#include <font8x8ext.h>
#include <fontALL.h>
#include <TVout.h>
//#include <avr/pgmspace.h>
//const char W [] PROGMEM = { W WHISPER };
//const char C [] PROGMEM = { C CREAK };
//const char V [] PROGMEM = { V MODAL VOICE };
//const char F [] PROGMEM = { F FALSETTO };
char third []= "{V}isModal_Voice";
char fourth []= "{F}isFalsetto";
char first []= "{W}isWhisper";
char second []= "{C}isCreak";
int knob1;
int knob2;
int knob3;
//int incomingAudio; //(option to read sound)
TVout TV;
void setup() {
// put your setup code here, to run once:
pinMode(13, OUTPUT);
Serial.println(TV.vres());
Serial.println(TV.hres());
TV.begin(PAL,120,96);
}
void loop() {
// put your main code here, to run repeatedly:
//incomingAudio= analogRead (A2);
//incomingAudio = (incomingAudio+1)/4 - 1;//scale from 10 bit (0-1023) to 8 bit (0-255);
//if (incomingAudio<0){
// }
TV.select_font(font8x8);
knob1 = analogRead(1);
knob2 = analogRead(2);
knob3 = analogRead(3);
//myChar = pgm_read_byte (1);
if (knob2>0 && knob2<255){
TV.clear_screen();
TV.println(0,0,first);
delay (1000);
TV.draw_rect (0,70,10,10,WHITE,WHITE);
delay (200);
}
else if (knob2>255 && knob2<510){
TV.clear_screen();
//TV.fill(INVERT);
TV.println(0,20,second);
//TV.fill(INVERT);
TV.draw_rect (0,70,80,20,WHITE);
delay (200);
}
else if (knob2>510 && knob2<750){
TV.clear_screen();
TV.println(0,40,third);
TV.draw_rect (40,70,30,30,WHITE,WHITE);
delay (200);
}
else if (knob2>750 && knob2<1023){
TV.clear_screen();
TV.println(0,70,fourth);
delay (1000);
TV.draw_rect (0,0,30,30,WHITE);
//TV.fill(INVERT);
delay (200);
}
//if (knob1<0 && knob1>255){
// }
}

@ -19,7 +19,37 @@ void setup() {
Serial.println(TV.vres());
Serial.println(TV.hres());
TV.begin(PAL,120,96);
/*knob1 = analogRead(1);
knob2 = analogRead(2);
if (knob1>0 && knob1<500 && Serial.available() > 0) { //serial communcation english
incomingByte = Serial.read();//read the incoming byte
TV.print (0, 0, neighbour);
delay (500);
TV.println (incomingByte);
}
else if (knob1>500 && knob1<1023 && Serial.available() > 0) { //serial communication HEX
incomingByte = Serial.read();
TV.print (0, 0, neighbour);
delay (500);
TV.println (incomingByte, HEX);
}
else if (knob2>0 && knob2<500 && Serial.available() > 0) { //serial communcation english
incomingByte = Serial.read();
TV.print (0, 0, neighbour);
delay (500);
TV.println (incomingByte);
}
else if (knob2>500 && knob2<1023 && Serial.available() > 0) { //serial communication BIN
incomingByte = Serial.read();
TV.print (0, 0, neighbour);
delay (500);
TV.println (incomingByte, BIN);
}*/
}
void loop() {

@ -0,0 +1,19 @@
const char saluto [] = "ciao";
const char domanda [] = "come stai?";
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println (saluto);
delay (500);
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 MiB

Loading…
Cancel
Save