my 1sheeld isnt sending the notification to my phone. instead it is sending it to the serial port. what am i doing wrong?
#define CUSTOM_SETTINGS
#define INCLUDE_NOTIFICATION_SHIELD
/* Include 1Sheeld library. */
#include <OneSheeld.h>
int PressurePin = A0;
int Pressure;
const int CarVoltage = 13;
void setup()
{
/* Start communication. */
OneSheeld.begin();
Serial.begin(9600);
/* Set the button pin as input. */
pinMode(CarVoltage,INPUT);
}
void loop()
{
/* Pressure = analogRead(PressurePin);
Serial.print(“Pressure: “);
Serial.println(Pressure);
delay(500);*/
/* Always check the button state. */
/* if(digitalRead(CarVoltage) == LOW)
{*/
if (Pressure > 100)
{
String notify = “HELP!!”;
Notification.notifyPhone(notify);
/* Wait for 300 ms. */
OneSheeld.delay(1000);
}
/* }*/
}