help with alarm code

What do you see as the first thing after "void loop ()"?
What do all correct sketches have that you do not?

Note also that LedState is not the same as ledState.
That may be important.

Also, "switch" needs to be spelled correctly, and not capitalised.

the void loop need to have an open brace.....

now that problem has clear, and the main problem now its that im using and incorrect call of the pointers

Really?

There was a comment earlier about braces being in the right places, and matching.

This is also important.

yes now the main problem its the pointer

#include <SPI.h> // needed in Arduino 0019 or later
#include <Ethernet.h>
#include <Twitter.h>

// The includion of EthernetDNS is not needed in Arduino IDE 1.0 or later.
// Please uncomment below in Arduino IDE 0022 or earlier.
//#include <EthernetDNS.h>
int count;
int LedState=LOW ;
// Ethernet Shield Settings
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };

// If you don't specify the IP address, DHCP is used(only in Arduino 1.0 or later).
byte ip[] = { 192, 168, 2, 250 };

// Your Token to Tweet (get it from http://arduino-tweet.appspot.com/)
Twitter twitter("YOUR-TOKEN-HERE");

// Message to post
char msg;
char str1[]="post one";
char str2[]="post two";
char str3[]="post three";
char str4[]="post four";
char str5[]="post five";
char str6[]="post six";

void setup()
{
  digitalWrite(2, HIGH);
  attachInterrupt(0, alarm, RISING);
  
  delay(1000);
  Ethernet.begin(mac);
  // or you can use DHCP for autoomatic IP address configuration.
  // Ethernet.begin(mac);
  Serial.begin(9600);
  
 }

void loop()

 {
  if (LedState == HIGH)
  {
    LedState==LOW;
    
    switch (count)
    { case 1:
    *msg =& str1;
    count++;
    break;
    
    case 2:
    msg =& str2;
    count++;
    break;
    
    case 3:
    msg =& str3;
    count++;
    break;
    
    
    case 4:
    msg =& str4;
    count++;
    break;
    
    case 5:
    msg =& str5;
    count++;
    break;
    case 6:
    msg =& str6;
    count=0;
    break;
    }
     }
    
    
    
   Serial.println("connecting ...");
  if (twitter.post(msg)) {
    // Specify &Serial to output received response to Serial.
    // If no output is required, you can just omit the argument, e.g.
    // int status = twitter.wait();
    int status = twitter.wait(&Serial);
    if (status == 200) {
      Serial.println("OK.");
    } else {
      Serial.print("failed : code ");
      Serial.println(status);
    }
  } else {
    Serial.println("connection failed.");
  }

  
  }



 void alarm()
 {
  LedState = HIGH;
   
 }

yes now the main problem its the pointer

Don't hold back - feel free to share.

AWOL:

yes now the main problem its the pointer

Don't hold back - feel free to share.

this are tyhe errors the compilers shows

SimplePost.ino: In function 'void loop()':
SimplePost:50: error: invalid type argument of 'unary *'
SimplePost:55: error: invalid conversion from 'char (*)[9]' to 'char'
SimplePost:60: error: invalid conversion from 'char (*)[11]' to 'char'
SimplePost:66: error: invalid conversion from 'char (*)[10]' to 'char'
SimplePost:71: error: invalid conversion from 'char (*)[10]' to 'char'
SimplePost:75: error: invalid conversion from 'char (*)[9]' to 'char'
SimplePost:84: error: invalid conversion from 'char' to 'const char*'
SimplePost:84: error: initializing argument 1 of 'bool Twitter::post(const char*)'

"msg"" is a "char", not a "char" pointer.

you mean something like this???

char* msg;

Why ask me? What does the compiler say?

AWOL:
Why ask me? What does the compiler say?

cos you maybe know where im mistaking but you want me to learn not that someone writes my code...

SimplePost.ino: In function 'void loop()':
SimplePost:50: error: cannot convert 'char (*)[9]' to 'char*' in assignment
SimplePost:55: error: cannot convert 'char (*)[9]' to 'char*' in assignment
SimplePost:60: error: cannot convert 'char (*)[11]' to 'char*' in assignment
SimplePost:66: error: cannot convert 'char (*)[10]' to 'char*' in assignment
SimplePost:71: error: cannot convert 'char (*)[10]' to 'char*' in assignment
SimplePost:75: error: cannot convert 'char (*)[9]' to 'char*' in assignment

copachino:
you mean something like this???

char* msg;

Is that what you tried and got all those errors? It looks most correct for what you seem to be trying to do. It's a pointer. Initialize it to 0 just in case.

Next you need to see what code sits on the line number it whines about, if it still does. I suspect the error messages point to all the lines where you are trying to assign something to msg and that's what you tinker. I can't tell off the top of my head at this hour what's it supposed to read for what you are doing there. I assume you are trying to assign the other array pointers to the msg one, so do that.

It's only going to work if twitter.post(msg) accepted a char pointer. I can see it takes a const char pointer judging by the error message. Well, see what the compiler tells you anyways without making too many changes at once between each compilation.

Another thing, if you end up getting a whole bunch of text posted (all of the strings), you probably need a null ending character \0 at the end of the string of characters. Or maybe not, I forget as I rarely have to deal with char arrays in C these days. Can you find out and post your findings?

 *msg =& str1;

The type of "*msg" is "char", but you're trying to assign an address to it.
That's why the compiler is upset.

Edit: I'm behind the times.

I think I am too.
Perhaps we could have a code update.

AWOL:

 *msg =& str1;

The type of "*msg" is "char", but you're trying to assign an address to it.
That's why the compiler is upset.

i understand that but, how can assing the variable and not the address??

Why don't you post the current code?

"*msg" is what "msg" points to, which is a "char"; you cannot assign an address (another pointer) to a "char"

this is the code so

#include <SPI.h> // needed in Arduino 0019 or later
#include <Ethernet.h>
#include <Twitter.h>

// The includion of EthernetDNS is not needed in Arduino IDE 1.0 or later.
// Please uncomment below in Arduino IDE 0022 or earlier.
//#include <EthernetDNS.h>

int LedState=LOW ;
// Ethernet Shield Settings
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };

// If you don't specify the IP address, DHCP is used(only in Arduino 1.0 or later).
byte ip[] = { 192, 168, 2, 250 };

// Your Token to Tweet (get it from http://arduino-tweet.appspot.com/)
Twitter twitter("YOUR-TOKEN-HERE");

// Message to post
char* msg[26];
char str1[]="post one";
char str2[]="post two";
char str3[]="post three";
char str4[]="post four";
char str5[]="post five";
char str6[]="post six";

void setup()
{
  digitalWrite(2, HIGH);
  attachInterrupt(0, alarm, RISING);
  
  delay(1000);
  Ethernet.begin(mac);
  // or you can use DHCP for autoomatic IP address configuration.
  // Ethernet.begin(mac);
  Serial.begin(9600);
  
 

void loop()

 
  if (ledState == HIGH)
  {
    LedState==LOW;
    
    Swtich (count)
    { case 1:
    msg =& str1;
    count++;
    break
    
    case 2:
    msg =& str2;
    count++;
    break
    
    case 3:
    msg =& str3;
    count++;
    break
    
    
    case 4:
    msg =& str4;
    count++;
    break
    
    case 5:
    msg =& str5;
    count++;
    break
    case 6:
    msg =& str6;
    count=0;
    break;
    }
     }
    
    
    
   Serial.println("connecting ...");
  if (twitter.post(*msg)) {
    // Specify &Serial to output received response to Serial.
    // If no output is required, you can just omit the argument, e.g.
    // int status = twitter.wait();
    int status = twitter.wait(&Serial);
    if (status == 200) {
      Serial.println("OK.");
    } else {
      Serial.print("failed : code ");
      Serial.println(status);
    }
  } else {
    Serial.println("connection failed.");
  }

  
  



 void alarm()
 {
  ledState = HIGH;
   
 }
char* msg[26];

What's that?

Swtich (count)

Up to a point, people will be willing to help, but if you start just posting garbage that has been pointed out before, they'll get bored and drift away.

sorry for that i dindt save the last code mods...

#include <SPI.h> // needed in Arduino 0019 or later
#include <Ethernet.h>
#include <Twitter.h>

// The includion of EthernetDNS is not needed in Arduino IDE 1.0 or later.
// Please uncomment below in Arduino IDE 0022 or earlier.
//#include <EthernetDNS.h>
int count=0;
int LedState=LOW ;
// Ethernet Shield Settings
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };

// If you don't specify the IP address, DHCP is used(only in Arduino 1.0 or later).
byte ip[] = { 192, 168, 2, 250 };

// Your Token to Tweet (get it from http://arduino-tweet.appspot.com/)
Twitter twitter("YOUR-TOKEN-HERE");

// Message to post
char* msg;
char str1[]="post one";
char str2[]="post two";
char str3[]="post three";
char str4[]="post four";
char str5[]="post five";
char str6[]="post six";

void setup()
{
  digitalWrite(2, HIGH);
  attachInterrupt(0, alarm, RISING);
  
  delay(1000);
  Ethernet.begin(mac);
  // or you can use DHCP for autoomatic IP address configuration.
  // Ethernet.begin(mac);
  Serial.begin(9600);
  
 
}
void loop()

 {
  if (LedState == HIGH)
  {
    LedState==LOW;
    
    switch (count)
    { case 1:
    msg =& str1;
    count++;
    break;
    
    case 2:
    msg =& str2;
    count++;
    break;
    
    case 3:
    msg =& str3;
    count++;
    break;
    
    
    case 4:
    msg =& str4;
    count++;
    break;
    
    case 5:
    msg =& str5;
    count++;
    break;
    case 6:
    msg =& str6;
    count=0;
    break;
    }
     }
    
    
    
   Serial.println("connecting ...");
  if (twitter.post(*msg)) {
    // Specify &Serial to output received response to Serial.
    // If no output is required, you can just omit the argument, e.g.
    // int status = twitter.wait();
    int status = twitter.wait(&Serial);
    if (status == 200) {
      Serial.println("OK.");
    } else {
      Serial.print("failed : code ");
      Serial.println(status);
    }
  } else {
    Serial.println("connection failed.");
  }

  
  

}

 void alarm()
 {
  LedState = HIGH;
   
 }

this is still bad assigned pointer, but i dont know how to assing a char pointer to a char variable, sorry for that

msg = str1; etc