29  Prototyping Techniques for IoT

29.1 Learning Objectives

By the end of this chapter, you will be able to:

  • Select Appropriate Prototyping Fidelity: Choose paper, digital, or functional prototypes based on design stage and questions
  • Create Low-Fidelity Prototypes: Build paper prototypes, physical mockups, storyboards, and Wizard of Oz simulations
  • Build Medium-Fidelity Prototypes: Develop interactive digital mockups and breadboard circuits
  • Develop High-Fidelity Prototypes: Design custom PCBs, 3D-printed enclosures, and pilot deployments
  • Apply Prototyping to Real Projects: Follow a complete case study from empathy through shipping

Prototyping means building quick, rough versions of your product to test ideas before investing in expensive manufacturing. For IoT, this is especially important because you are designing both hardware and software together. You might start with a paper sketch of your app screen and a cardboard model of the device (low fidelity), then move to a breadboard circuit with a basic app (medium fidelity), and finally a 3D-printed enclosure with custom PCB (high fidelity). Each stage answers different questions – “Is this the right feature?” before “Does this circuit work?” The key insight: catching a design mistake on paper costs nothing; catching it after manufacturing costs thousands.

“Prototyping means building test versions of your device,” explained Max the Microcontroller. “But here is the secret – you start REALLY simple. Like, paper-and-cardboard simple!” Sammy the Sensor was confused. “Paper? But I am an electronic sensor!” Max laughed, “You start with paper to test the IDEA, not the electronics. Draw the screen on paper, cut out button shapes, and pretend it works. If people cannot figure out your paper version, the real one will confuse them too.”

“There are three levels,” said Lila the LED. “Low-fidelity is paper sketches and cardboard boxes – super cheap, takes minutes. Medium-fidelity is digital mockups and breadboard circuits – looks more real, takes hours. High-fidelity is custom circuit boards and 3D-printed cases – almost the real thing, takes days or weeks.”

Bella the Battery shared the golden rule: “Start low and go higher only when you have learned something. Every paper prototype that fails saves you from building an expensive version that also fails. I have seen teams spend months on a beautiful device that nobody wanted – because they skipped the paper stage!”

29.2 Prerequisites

Before diving into this chapter, you should be familiar with:

Key Concepts

  • Interaction Design: Discipline defining how users communicate with digital systems through input, output, and feedback mechanisms.
  • Multimodal Interface: System accepting input and delivering output through multiple channels (touch, voice, gesture, haptic) simultaneously.
  • User Testing: Structured observation of representative users attempting defined tasks, exposing interface problems invisible to designers.
  • Prototype Fidelity: Level of detail in a prototype: low fidelity (paper sketch) validates concepts; high fidelity (interactive mockup) validates usability.
  • Information Architecture: Structural design of digital spaces to support usability and findability, determining where content lives and how users navigate.
  • Cognitive Load: Mental effort required to use an interface; IoT systems must minimise cognitive load for users managing many connected devices.
  • Usability Heuristic: Principle-based rule for evaluating interface quality (e.g. Nielsen’s 10 heuristics) without requiring user testing.

29.3 Introduction

IoT systems combine physical hardware, embedded software, cloud services, and user interfaces, making prototyping more complex than traditional software. This chapter provides detailed techniques for each fidelity level and demonstrates application through a complete case study.

29.4 Prototyping Fidelity Spectrum

Prototyping fidelity spectrum showing three levels: Low-Fidelity (paper prototypes, cardboard mockups, storyboards, Wizard of Oz - hours, low cost, explore concepts), Medium-Fidelity (digital mockups, breadboard circuits, hybrid prototypes - days, medium cost, validate approach), High-Fidelity (custom PCBs, 3D-printed enclosures, pilot deployments - weeks, high cost, refine details).
Figure 29.1: Prototyping Fidelity Spectrum: Low to High with Cost and Time Trade-offs

29.5 Low-Fidelity Prototypes

Early-stage prototypes focus on core concepts and interactions, not technical implementation.

29.5.1 Paper Prototypes and Sketches

Paper prototyping workflow: Sketch interface ideas, cut out paper screens, create interactive buttons, conduct user testing where facilitator acts as computer swapping screens when user taps buttons. User feedback determines whether to keep design or sketch new version and iterate.
Figure 29.2: Paper Prototyping Workflow: Rapid Interface Testing

Purpose: Explore interface layouts and interaction flows very rapidly

Method: Hand-drawn screens with clickable paper buttons, team member acts as “computer”

Advantages:

  • Extremely fast and cheap (minutes, not hours)
  • Encourages exploration of many alternatives
  • Non-technical stakeholders can participate

Limitations:

  • Cannot test real-world context
  • No physical device interaction
  • No system performance testing

When to use: First week of design process, exploring 5-10 different concept directions

29.5.2 Physical Mockups

Purpose: Test physical form factor, size, placement, and ergonomics

Materials: Cardboard, foam, 3D-printed shells, found objects

Example: Create cardboard “smart lock” to test whether users can operate it while holding grocery bags

Tradeoff: Low-Fidelity vs High-Fidelity Prototyping

Option A (Low-Fidelity): Paper sketches, cardboard mockups, and Wizard of Oz prototypes that can be created in hours for $0-50. User studies show 85% of usability issues are discoverable with lo-fi prototypes. Encourages rapid iteration and stakeholder participation regardless of technical skill. Option B (High-Fidelity): Functional prototypes with custom PCBs, 3D-printed enclosures, and working firmware that take weeks and cost $500-2000+. Reveal issues invisible in mockups: latency perception, physical ergonomics under real conditions, sensor accuracy, and battery life concerns. Decision Factors: Use low-fidelity when exploring concept viability, testing user flows, and early in the design process (weeks 1-4). Use high-fidelity when validating physical interactions, testing with real environmental conditions, or presenting to investors/executives who need polished demos. Best practice: progress through fidelity levels sequentially, only investing in hi-fi after lo-fi validation. A $2000 prototype that tests an unvalidated concept wastes money; a $50 paper prototype that eliminates a bad idea saves months.

29.5.3 Storyboards and Comics

Purpose: Illustrate user journey and context of use

Method: Sequential illustrations showing user interacting with system over time

Use case: Presenting design concepts to stakeholders or user study participants

29.5.4 Wizard of Oz Prototypes

Purpose: Test intelligent behaviors before implementing complex AI/ML

Wizard of Oz prototyping workflow: User interacts with system, sensors detect action, hidden operator observes and makes smart decision, system responds appearing intelligent, user believes AI is working. Researcher observes user reaction to determine if users trust automation, informing decision to build real AI or redesign approach.
Figure 29.3: Wizard of Oz Prototyping: Testing AI Concepts Before Implementation

Method: Human operator secretly controls system, simulating smart behavior

Example: Smart home system where researcher manually triggers lights and music based on user location, testing context-aware automation before building the real system

Advantages: Can test user response to intelligent features without months of ML development

Ethics note: Always debrief participants after study, explaining human control

29.6 Medium-Fidelity Prototypes

As concepts solidify, prototypes incorporate real technology but may fake or simplify complex subsystems.

29.6.1 Interactive Digital Mockups

Tools: Figma, Adobe XD, InVision

Purpose: Test mobile app or web dashboard interactions with realistic appearance

Capabilities: Clickable buttons, screen transitions, basic animations

Limitations: No actual device communication, no real data

When to use: After basic concept validated, before writing production code

29.6.2 Breadboard Prototypes

Components: Arduino, Raspberry Pi, breakout sensor boards, jumper wires

Breadboard prototype architecture showing sensor module (DHT22 temp/humidity) connected via Arduino Uno to Wi-Fi module (ESP8266), publishing to cloud MQTT broker, with LED indicator and LCD display for local feedback. Jumper wires connect all components. Data flows to mobile app dashboard.
Figure 29.4: Breadboard Prototype Architecture: Sensor to Cloud Data Flow

Purpose: Prove technical feasibility, test sensor accuracy, validate actuator response

Example: Temperature monitoring system with DHT22 sensor, Arduino Uno, and jumper wires—tests sensing but not final form factor

29.6.3 Hybrid Prototypes

Combine real hardware with simulated backend services.

Example: Real sensors publishing to MQTT broker, but data analysis happening in Excel spreadsheet instead of cloud ML service

Advantage: Can test user-facing features while backend is still under development

29.7 High-Fidelity Prototypes

Later prototypes closely resemble final product but may lack production-level polish, scalability, or reliability.

29.7.1 Custom PCB Prototypes

Services: OSH Park, PCBWay, JLCPCB

Purpose: Test production-ready form factor and electronics

Timeline: 1-2 weeks from design to assembled board

When to use: After breadboard prototype validated, before committing to manufacturing tooling

29.7.2 3D-Printed Enclosures

Materials: PLA/ABS for rapid iteration, resin for high detail, nylon for functional parts

Advantage: Can produce complex geometries impossible with traditional manufacturing

Limitation: Surface finish and material properties differ from injection molding

29.7.3 Pilot Deployments

Scale: Small-scale real-world deployment (5-50 units)

Purpose: Tests system in realistic conditions with actual users

Reveals: Issues invisible in lab testing (environmental factors, usage patterns, network conditions)

Example: Deploy smart irrigation system in 10 homes for 3 months before commercial launch

29.8 Case Study: Smart Medication Adherence

12-week Smart Medication Adherence case study timeline: Week 1 Empathize (interview 15 patients, observe routines), Week 2 Define (complex schedules confuse patients), Week 3 Ideate (generate 24+ ideas), Week 4 Prototype (paper calendar, cardboard bottle, Wizard of Oz voice), Week 5 Test (smart bottle wins but LEDs confusing), Week 6 Iterate (simplify to red/green LEDs, add audio, larger compartments), Week 7-8 Test v2 (90% adherence improvement), Week 9-12 High-Fidelity (custom PCB, 3D enclosure, pilot 20 homes), then ship product.
Figure 29.5: Case Study: Smart Medication Adherence 12-Week Design Timeline

29.8.1 Key Learnings from Case Study

  1. Low-fidelity prototypes eliminated bad ideas quickly (voice reminders were annoying)
  2. User testing revealed unexpected issues (LED color confusion)
  3. Iteration improved results dramatically (90% adherence improvement)
  4. Only invested in high-fidelity after validation (weeks 9-12)
  5. Pilot deployment revealed final issues before commercial launch

29.9 Code Example: Rapid HTML Prototype for IoT Dashboard

Before building a full application, a quick HTML/CSS prototype lets you test layout and interaction ideas with real users. This example creates a testable smart home dashboard prototype in under 30 minutes:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Smart Home Dashboard Prototype</title>
  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: -apple-system, system-ui, sans-serif;
           background: #f5f5f5; padding: 16px; }
    .dashboard-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 12px;
      max-width: 600px;
    }
    .device-tile {
      background: white;
      border-radius: 16px;
      padding: 20px;
      text-align: center;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.15s;
      min-height: 120px;
    }
    .device-tile[data-state="on"] {
      background: #e8f5e9;
      border-color: #4caf50;
    }
    .device-tile[data-state="off"] {
      background: #fafafa;
      border-color: #e0e0e0;
    }
    .device-icon { font-size: 32px; margin-bottom: 8px; }
    .device-name { font-size: 14px; font-weight: 500; }
    .device-status { font-size: 12px; color: #666; margin-top: 4px; }
  </style>
</head>
<body>
  <h1 style="margin-bottom: 16px;">My Home</h1>

  <div class="dashboard-grid" role="list" aria-label="Device controls">
    <div class="device-tile" data-state="on" role="listitem"
         onclick="toggleDevice(this)"
         aria-label="Living Room Light, currently on. Tap to turn off.">
      <div class="device-icon" aria-hidden="true">💡</div>
      <div class="device-name">Living Room</div>
      <div class="device-status">On</div>
    </div>

    <div class="device-tile" data-state="off" role="listitem"
         onclick="toggleDevice(this)"
         aria-label="Front Door Lock, currently locked. Tap to unlock.">
      <div class="device-icon" aria-hidden="true">🔒</div>
      <div class="device-name">Front Door</div>
      <div class="device-status">Locked</div>
    </div>

    <div class="device-tile" data-state="on" role="listitem"
         onclick="toggleDevice(this)"
         aria-label="Thermostat, currently set to 72 degrees.">
      <div class="device-icon" aria-hidden="true">🌡️</div>
      <div class="device-name">Thermostat</div>
      <div class="device-status">72°F</div>
    </div>
  </div>

  <script>
    function toggleDevice(tile) {
      const isOn = tile.dataset.state === 'on';
      tile.dataset.state = isOn ? 'off' : 'on';
      const status = tile.querySelector('.device-status');
      status.textContent = isOn ? 'Off' : 'On';
    }
  </script>
</body>
</html>

Why HTML prototypes work for IoT user testing:

Advantage Explanation
Runs on any phone Open in mobile browser – no app install needed
30-minute build time Faster than Figma for simple grids and toggles
Real touch targets Test actual finger-tap accuracy on real devices
Easy to modify live Change layout between test sessions in minutes
Shareable link Host on GitHub Pages or share as an HTML file

Testing checklist for this prototype:

  1. Can users identify which devices are on vs off? (Color contrast test)
  2. Do users tap the correct tile on the first try? (Touch target test)
  3. Can users locate the thermostat quickly? (Information hierarchy test)
  4. Does the grid layout work on both phone and tablet? (Responsive test)

A team designed a smart irrigation system for homeowners. Here’s their 8-week prototyping journey with real costs and findings:

Week 1: Paper Prototype ($0, 3 hours)

  • Hand-drawn app screens on cardboard
  • Question: “Do users understand the concept of zone-based scheduling?”
  • Finding: 6/6 users asked “Can it just detect when the lawn is dry?” — revealed users wanted AUTOMATIC control, not manual scheduling
  • Decision: Pivot from schedule-first to sensor-first design

Week 2-3: Digital Mockup ($250 for Figma subscription, 40 hours)

  • Interactive Figma prototype with moisture sensor dashboard
  • Question: “Can users interpret moisture percentage (0-100%)?”
  • Finding: Users confused by percentages — “Is 30% good or bad?” 7/8 users preferred color-coded status: RED (needs water), GREEN (optimal), BLUE (too wet)
  • Decision: Replace numeric dashboard with color-coded zones

Week 4-6: Breadboard Functional Prototype ($420 for components)

  • Arduino + moisture sensors + solenoid valves + Blynk app
  • Question: “Does automatic watering match user expectations?”
  • Finding: Sensors triggered watering at 2 AM (optimal for plants) but users panicked hearing valves open at night, thinking it was a leak. Added “watering schedule preview” notification: “System will water Zone 2 tonight at 2 AM based on soil moisture.”
  • Cost breakdown: ESP32 ($15), 4 moisture sensors ($40), 4 solenoid valves ($80), relay board ($25), enclosure ($20), Blynk subscription ($15/mo), connectors/wires ($25), breadboard supplies ($50), miscellaneous ($150)

Week 7-8: Field Deployment (5 homes, $1,200)

  • Custom PCB ($300), weather-resistant enclosure ($150), installation labor ($750)
  • Question: “Does it work reliably for 2 weeks without intervention?”
  • Finding: Battery life only 9 days (not the claimed 30)—ESP32 Wi-Fi was pinging server every 30 seconds. Redesigned to sleep 15 minutes between checks, extended battery to 35 days.

Total investment: $1,870 + 120 hours over 8 weeks

Result: Soft-launched to 50 beta users. 92% satisfaction, 8% return rate (down from 25% industry average). Avoided the $65,000 mistake of manufacturing 1,000 units with the original schedule-first design that users wouldn’t use.

How does spending $1,870 on prototypes compare to skipping validation? The math reveals exponential ROI:

Cost Structure:

\[ \text{Total Prototyping Cost} = C_{\text{paper}} + C_{\text{digital}} + C_{\text{breadboard}} + C_{\text{pilot}} \]

\[ = \$0 + \$250 + \$420 + \$1{,}200 = \$1{,}870 \]

Manufacturing Risk Without Validation:

If the design is fundamentally flawed (as discovered by paper prototyping), the entire manufacturing investment is wasted:

\[ \text{Manufacturing Cost} = \text{Units} \times \text{Cost per Unit} \]

\[ = 1{,}000 \times \$65 = \$65{,}000 \]

Plus manufacturing tooling sunk cost: $10,000–$15,000 for injection molds.

Total Avoided Cost:

\[ \text{Avoided Cost} = \text{Manufacturing} + \text{Tooling} = \$65{,}000 + \$12{,}500 = \$77{,}500 \]

ROI Calculation:

\[ \text{ROI} = \frac{\text{Avoided Cost} - \text{Prototyping Cost}}{\text{Prototyping Cost}} = \frac{\$77{,}500 - \$1{,}870}{\$1{,}870} = 40.4x \]

Every dollar spent on prototyping returned $40.40 by preventing manufacturing mistakes. The paper prototype alone ($0) eliminated the schedule-first design that would have failed with users — infinite ROI for 3 hours of work.

Interactive ROI Calculator:

Try adjusting the sliders to see how different prototyping investments compare to manufacturing risks. Notice how even modest prototyping costs yield 10-50x ROI by preventing expensive product failures.

Question Being Asked Low-Fidelity (Paper/Cardboard) Medium-Fidelity (Digital/Breadboard) High-Fidelity (PCB/Pilot)
Will users understand the concept? ✓ Ideal ($0-50, hours) Overkill Overkill
Can users navigate the workflow? ✓ Sufficient for early tests ✓ Better for multi-step flows Overkill
Do users interpret data correctly? Partial (static mockups) ✓ Ideal (realistic data) Overkill
Does the hardware work technically? No ✓ Ideal (breadboard proves concept) ✓ Required for reliability testing
Does it survive real environments? No No ✓ Only way to test weather/dust/vibration
Is battery life acceptable? No Partial (rough estimate) ✓ Only way to measure actual consumption
Can it be manufactured at target cost? No No ✓ Custom PCB reveals BOM costs

Decision rule:

  • Week 1-2: Paper prototypes until users understand the mental model
  • Week 3-6: Digital mockups for UI, breadboards for hardware — validate approach
  • Week 7-10: High-fidelity prototypes only after breadboard/mockup validation confirms viability
  • Week 11-12: Pilot deployment with 5-20 units in real-world conditions

Anti-pattern: Jumping to high-fidelity PCB ($5,000+) before validating with breadboard ($500) wastes money when the concept needs rethinking.

Common Mistake: Skipping Wizard of Oz for “Real AI”

The mistake: Teams spend 6-12 months building machine learning models to enable “smart” features, only to discover users don’t trust or want the automation.

Real example: A smart pet feeder team built computer vision to detect when the dog approached the bowl and dispense food automatically. After 8 months of ML development, they tested with 12 users. Result: 10/12 disabled the feature within 3 days because they didn’t trust the system to feed correctly. They preferred manual control or simple timers.

What a Wizard of Oz test would have revealed (Week 2, cost $800):

  • Researcher watches camera feed and manually triggers feeder when dog approaches
  • Users experience the “AI” behavior without any AI being built
  • Testing would have shown trust issues immediately: “What if it feeds my dog 10 times in an hour?” “What if my cat triggers it?”

The fix:

  1. Before building AI, simulate it with a human operator (Wizard of Oz)
  2. Test user reactions to the automation CONCEPT, not the technical implementation
  3. Only invest in ML development if users demonstrate they want and trust automated behavior
  4. Always provide manual override — users need an escape hatch

When Wizard of Oz makes sense:

  • Testing voice assistants (human listens and responds, simulating future AI)
  • Testing smart automation (human makes “smart” decisions based on sensor data)
  • Testing recommendation systems (human curates recommendations to test if users click)

When it doesn’t work:

  • Testing latency-sensitive features (autonomous vehicles, industrial safety)
  • Testing privacy-sensitive features (users need to know a human is watching)

Common Pitfalls

Adding too many features before validating core user needs wastes weeks of effort on a direction that user testing reveals is wrong. IoT projects frequently discover that users want simpler interactions than engineers assumed. Define and test a minimum viable version first, then add complexity only in response to validated user requirements.

Treating security as a phase-2 concern results in architectures (hardcoded credentials, unencrypted channels, no firmware signing) that are expensive to remediate after deployment. Include security requirements in the initial design review, even for prototypes, because prototype patterns become production patterns.

Designing only for the happy path leaves a system that cannot recover gracefully from sensor failures, connectivity outages, or cloud unavailability. Explicitly design and test the behaviour for each failure mode and ensure devices fall back to a safe, locally functional state during outages.

29.10 Summary

Key Takeaways:

  1. Match prototype fidelity to design questions:

    • Paper prototypes for exploring concepts
    • Breadboards for validating technical feasibility
    • High-fidelity for refining details
  2. Wizard of Oz prototypes enable testing intelligent features before building complex AI/ML systems

  3. Progress through fidelity levels sequentially—don’t invest in expensive prototypes before validating concepts

  4. Pilot deployments reveal issues invisible in lab testing—environmental factors, real usage patterns, network conditions

  5. Each prototype should answer specific questions—design prototypes intentionally, not just to “build something”

29.11 Knowledge Check

29.12 Concept Relationships

Prototyping fidelity decisions connect to broader design and engineering principles:

Fidelity Progression:

  • Paper Prototypes (hours, $0-50) test conceptual understanding before investing in implementation
  • Digital Mockups (days, $50-200) validate user flows and visual hierarchy
  • Breadboard Circuits (weeks, $200-500) prove technical feasibility (sensors work, battery lasts)
  • High-Fidelity (weeks, $500-2000+) validate complete integration in realistic environments

Question-Driven Prototyping:

  • Don’t build high-fidelity prototypes for questions answerable with low-fidelity tests
  • Match fidelity to uncertainty: High uncertainty areas deserve multiple low-fidelity iterations
  • Cost increases exponentially with fidelity; learn as much as possible at lower levels first

Integration with Design Process:

  • Discover/Define phases use paper prototypes and storyboards (concept exploration)
  • Ideate phase uses sketches and cardboard mockups (generate many options quickly)
  • Prototype phase progresses from low to high fidelity as confidence grows
  • Test phase determines whether to increase fidelity or iterate at current level

Cross-Disciplinary Connections:

  • Wizard of Oz (simulated AI) prevents building complex ML before validating users want automation
  • Breadboard prototypes bridge UX design and electrical engineering - test both usability and technical viability
  • Pilot deployments (high-fidelity) reveal integration issues invisible in controlled testing

29.13 See Also

Prototyping Process:

Tools and Platforms:

  • Wokwi ESP32 Simulator - Build breadboard prototypes in browser (no hardware needed)
  • Hands-On Lab - Complete prototyping lab with accessible interface
  • Figma/Adobe XD - Digital mockup tools
  • Fritzing - Circuit documentation for breadboard prototypes

Real-World Examples:

  • Smart Irrigation Controller (in this chapter) - 8-week progression from paper to pilot ($1,870 investment)
  • Smart Medication Dispenser (Process chapter) - 12-week fidelity journey
  • Smart Doorbell (Principles chapter) - $10,100 testing investment avoided $70,000 in fixes

Prototyping Methods:

  • Paper prototypes - Fastest concept validation
  • Wizard of Oz - Test AI/automation before building it
  • Breadboard circuits - Prove hardware feasibility
  • 3D printing - Physical form factor testing
  • Pilot deployments - Real-world integration validation

Academic Resources:

  • “Prototyping” by Tod Brethauer - Comprehensive prototyping guide
  • “Sketching User Experiences” by Bill Buxton - Early-stage prototyping methods
  • “Making Things Talk” by Tom Igoe - Physical computing prototypes

29.14 Try It Yourself

Progress through fidelity levels with your own IoT project:

Exercise 1: Paper Prototype Challenge (60 minutes)

Build a paper prototype of your IoT device interface: 1. Sketch 3 alternative layouts for the main screen 2. Cut out interactive elements (buttons, sliders) from paper 3. Test with 2 people using “acting as computer” method (you swap screens when they tap buttons) 4. Count usability issues found: Target 3-5 issues per tester 5. Cost: $0, Time: 1 hour, Issues found: ___

Exercise 2: Fidelity Matching Quiz (20 minutes)

For each question, select appropriate prototype fidelity:

Question Paper Digital Breadboard High-Fi
“Do users understand the core concept?”
“Can the ESP32 read this sensor reliably?”
“Does the app flow make sense?”
“Will battery last 7 days in real use?”
“Do users trust automated control?”

Exercise 3: Build a Wizard of Oz Prototype (90 minutes)

Test “smart” features before building AI:

Scenario: Smart thermostat that learns user preferences

Low-cost Wizard of Oz approach:

  1. Install basic thermostat showing temperature
  2. You (hidden) observe user behavior for 1 week
  3. You manually adjust temperature based on patterns you notice
  4. User experiences “learning thermostat” without AI being built
  5. Ask user: “Do you like the automation?” before investing in ML

Cost: 1 week observation + basic thermostat ($50) Avoids: 6 months ML development ($50,000) if users reject automation

Exercise 4: Breadboard to Pilot Progression (Multi-week project)

Follow this progression for your IoT hardware project:

Week 1-2: Breadboard prototype ($200-400)

  • Arduino/ESP32 + jumper wires + breakout sensors
  • Test: Does the sensor work? Is the code logic sound?

Week 3-4: Enclosure mockup ($50-100)

  • 3D-printed or cardboard case around breadboard
  • Test: Does form factor fit in target location? Can users access controls?

Week 5-6: Custom PCB prototype ($300-600)

  • Order PCBs from JLCPCB/OSH Park
  • Test: Does production-ready circuit work reliably?

Week 7-8: Pilot deployment (5-10 units, $500-1000)

  • Install in real environments for 2 weeks
  • Test: Battery life, connectivity, environmental durability
In 60 Seconds

This chapter covers prototyping techniques for iot, explaining the core concepts, practical design decisions, and common pitfalls that IoT practitioners need to build effective, reliable connected systems.

Total cost: $1,050-2,100 over 8 weeks Compare to: Skipping to production ($50,000 for 1,000 units) and discovering issues post-launch

Exercise 5: HTML Rapid Prototype (30 minutes)

Use the HTML template from the chapter to build a testable dashboard: 1. Copy the smart home dashboard HTML code 2. Modify for your IoT device (change device names, icons, status) 3. Open in browser and test with 2 users 4. Measure: Time to find and control specific device 5. Target: <5 seconds for common tasks

Where to Build:

29.15 What’s Next

Previous Up Next
Interactive Design Process Human Factors and Interaction User Testing

The next chapter covers User Testing Best Practices, providing detailed guidance on recruiting participants, creating effective tasks, conducting sessions, and analyzing results to drive design improvements.