Skip to content

Instantly share code, notes, and snippets.

View fazledyn's full-sized avatar
🙋‍♂️
Out of many, one

Ataf Fazledin Ahamed fazledyn

🙋‍♂️
Out of many, one
View GitHub Profile
@fazledyn
fazledyn / uno_gsm.ino
Created July 18, 2021 12:18
Arduino UNO code for sending and receiving SMS through GSM module
#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");
@fazledyn
fazledyn / Bakery Assignment.py
Created March 26, 2020 17:24
Auritra's Cousin's Python Assignment
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):