Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- typedef struct {
- byte temp;
- byte humidity;
- byte dewpoint;
- int pressue;
- } weather;
- ...
- weather gettheweather(){
- weather output;
- output.temp = x;
- ...
- return output;
- }
- ...
- weather the_current_weather = gettheweather();
Advertisement
Add Comment
Please, Sign In to add comment