Samantha BretousJeffery AdadevohDushyanthi PierisBerlin AndallCH Lee
Published

Eat In Time

Know when to eat food before it expires.

Protip1,566
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

Samantha Bretous

1 project • 3 followers
Jeffery Adadevoh

Jeffery Adadevoh

1 project • 1 follower
Dushyanthi Pieris

Dushyanthi Pieris

1 project • 3 followers
Berlin Andall

Berlin Andall

1 project • 3 followers
Love biology and coding
CH Lee

CH Lee

1 project • 2 followers

Comments