I also would like to know if it’s possible to set a “default” number for sending SMS so I don’t have to type it all the time
and how would I save in eeprom a date so I could compare it later to the current time (ex: my function if its 8am its true, so it would check with the current time and send me the bool)
being more especific with the GSM module, no i need to follow exactly like the rules to send a sms? id like to make a separate function to only edit the number it should send sms to
what else would I use? i thought since it had colons and slashes I had to use String
Use c-type strings (character arrays). That way you allocate a fixed size buffer for it but you have to take care that it doesn't overrun.
the software serial is for the future GSM 800l module
You should not use SoftwareSerial in a productive environment. It's OK to debug but the running version should use the hardware serial interface (that you probably currently use for debugging).
is it possible to make a single serial print with all the prints i'm trying to do?
something like "Serial.print(now.day(), now.month())" etc