IoT Arduino Application Notes
IoT Arduino Application Notes
1. What is IoT?
The Internet of Things (IoT) refers to a system of interrelated physical devices that can collect, share, and act
on data through the internet. These devices are embedded with sensors, software, and other technologies to
2. Characteristics of IoT
- Connectivity
- Real-time Monitoring
- Scalability
3. Types of IoT
4. What is Arduino?
Arduino is an open-source electronics platform based on easy-to-use hardware and software. It is widely
used for building digital devices and interactive objects that can sense and control the physical world.
- Quick prototyping
6. Disadvantages
- Internet dependency
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(1000);
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
Sensor -> Arduino -> Wi-Fi Module -> Internet/Cloud -> Mobile App