🙋♂️
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <SoftwareSerial.h> | |
SoftwareSerial SIM900A(10,11); | |
void setup() | |
{ | |
SIM900A.begin(9600); // Setting the baud rate of GSM Module | |
Serial.begin(9600); // Setting the baud rate of Serial Monitor (Arduino) | |
Serial.println ("SIM900A Ready"); | |
delay(100); | |
Serial.println ("Type s to send message or r to receive message"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import math | |
class BakeryItem(): | |
def __init__(self, name, note, packaging, value): | |
self.name = name; | |
self.note = note; | |
self.packaging = packaging; | |
self.value = value; | |
def __str__(self): |