DHT11 sensor test for Stage 1 Engineering at the University of York

Dependencies:   DHT11 UoY-serial

main.cpp

Committer:
ajp109
Date:
2021-01-11
Revision:
0:77209603a6fe
Child:
1:acb591685a28

File content as of revision 0:77209603a6fe:

#include "mbed.h"

int main()
{
    int x = 4;
    x = 6;
    int y;
    y = 2*x;
    x = 7;
    
    printf("x:%d y:%d\n", x, y);
    
    // Do nothing, forever...
    while (true);
}