Samantha BretousJeffery AdadevohDushyanthi PierisBerlin AndallCH Lee
Published

Eat In Time

Know when to eat food before it expires.

Protip1,571
Eat In Time

Things used in this project

Hardware components

Grove starter kit plus for Intel Edison
Seeed Studio Grove starter kit plus for Intel Edison
×1
Connector cables
×1
Adafruit HUZZAH ESP8266 Breakout
Adafruit HUZZAH ESP8266 Breakout
×1
MiCS5524 Gas Sensor
×1

Software apps and online services

AWS IoT
Amazon Web Services AWS IoT
React Native
Arduino IDE
Arduino IDE
Twilio SMS
Firebase

Hand tools and fabrication machines

Soldering iron (generic)
Soldering iron (generic)

Story

Read more

Schematics

Adafruit Gas Sensor Setup

Adafruit Gas Sensor Setup

File missing, please reupload.

Code

Transferring Analog output

Arduino
Reading the Analog output (example uses A0 pin) to a serial port via Arduino IDE
const int analogInPin = A0; #change the pin u used
int sensorValue = 0;

void setup() {
  Serial.begin(500000);
}

void loop() {
  sensorValue = analogRead(analogInPin);
  Serial.print(sensorValue);
  Serial.print("|");
  delay(200);
}

Credits

Samantha Bretous
1 project • 3 followers
Contact
Jeffery Adadevoh
1 project • 1 follower
Contact
Dushyanthi Pieris
1 project • 3 followers
Contact
Berlin Andall
1 project • 3 followers
Love biology and coding
Contact
CH Lee
1 project • 2 followers
Contact

Comments

Please log in or sign up to comment.