Schlagwort: Weather Station

  • A DIY weather display with dedicated outdoor sensor station

    A DIY weather display with dedicated outdoor sensor station

    Reading Time: 2 minutes

    Weather stations are popular projects in the maker community because they’re useful and usually quite affordable to construct. But most that we see are really weather information displays that gather data through the internet from stations in the region. That data is fairly accurate, but there can be minor differences due to microclimate zones. So, Wilson Malone decided to build his own system with a dedicated outdoor sensor station.

    Malone’s system consists of two units: the indoor display and the outdoor sensor station. The latter receives its power from a solar panel and battery backup, so Malone can place it anywhere that gets good sunlight within wireless range of his home. It has a sensor to detect wind speed, another sensor to detect wind direction, and a PHT (pressure, humidity, temperature) combination sensor. An Arduino UNO Rev3 board reads those sensors and then transmits the data using a 915MHz radio transceiver.

    Inside the home, the indoor display unit receives that data with a radio transceiver of its own. An Arduino UNO R4 WiFi parses that and then shows each value on a four-digit seven-segment display. The Arduino will also publish the values to a self-hosted webpage every eight seconds. Any users on the same local network can visit that page to view the current information.

    [youtube https://www.youtube.com/watch?v=Qqs4lYLHYKY?feature=oembed&w=500&h=281]

    Now Malone has a hyperlocal weather station that gives him accurate information about the weather in his exact location. 

    The post A DIY weather display with dedicated outdoor sensor station appeared first on Arduino Blog.

    Website: LINK

  • Celebrating Earth Day with a solar-powered E Ink weather station

    Celebrating Earth Day with a solar-powered E Ink weather station

    Reading Time: 2 minutes

    The world just recognized Earth Day and it was a good reminder that we all have a responsibility to protect the planet. Unfortunately, many of our devices suck up energy in direct opposition to that goal. But the market has proven that we aren’t willing to sacrifice convenience. Luckily, that isn’t always necessary. To demonstrate that, overVolt built this solar-powered weather station that features an E Ink display.

    The first — and usually easiest — step in the right direction is reducing energy consumption. And it is often possible to make efficient devices that don’t require any sacrifices at all. In this case, overVolt achieved that with the use of an E Ink screen and a power-sipping Arduino Nano ESP32 board

    E Ink technology is perfect for this application, because a weather station doesn’t need to update often. The display only consumes power during a refresh and the rest of the time it continues showing very readable content without any power. 

    The next step was to eliminate any energy from fossil fuels. Because this weather station consumes so little power, it can run entirely on the power coming from a small solar panel. Sunlight isn’t always available, so overVolt added a lithium battery to store power through dark periods. 

    The Arduino monitors temperature and humidity with a DHT11 sensor, as well as air quality with an MQ-135 sensor. And because this is a Nano ESP32, it can also connect to the internet to pull weather forecasts. 

    While lithium batteries aren’t great from an environmental perspective, overVolt’s weather station proves that we can take positive steps without sacrificing convenience.

    [youtube https://www.youtube.com/watch?v=VkD2fdQSjOU?feature=oembed&w=500&h=281]

    The post Celebrating Earth Day with a solar-powered E Ink weather station appeared first on Arduino Blog.

    Website: LINK

  • This classic weather station prioritizes the essentials

    This classic weather station prioritizes the essentials

    Reading Time: 2 minutes

    Weather stations are very popular projects for people new to Arduino. They’re complex eno­­­ugh to help a person learn new skills, but they’re simple enough to be approachable. However, that popularity has led to something of an arms race, with many makers attempting to design the most impressive weather stations on the internet. If you want to go back to the basics to dip your toes into the water, Mirko Pavleski explains how to build a classic weather station that prioritizes the essentials.

    Inspired by older devices that displayed information like temperature, barometric pressure, and humidity on analog gauges, Pavleski chose a design with three screens in a vertical stack. Each screen can display whatever data the user can access through a sensor. In this case, his station utilizes the popular BME280 module that monitors the same three parameters as the vintage inspiration: temperature, pressure, and humidity. 

    This weather station shows each reading on a small two-tone OLED screen. Those screens have yellow pixels on the top and blue pixels on the bottom, which is handy for distinguishing the title from the data without the expense or complexity of a full-color screen.

    An Arduino Nano board reads the data from the BME280 sensor and writes to the displays. But those displays and the BME280 all connect through I2C. To interface with all of them through the single pair of SCL/SDA pins, Pavleski included a TCA9548a multiplexer module. 

    [youtube https://www.youtube.com/watch?v=UkQjucC2W98?feature=oembed&w=500&h=281]

    Those components all mount in a minimalist enclosure made from foam board. And while we certainly enjoy complex weather stations, we appreciate the simplicity and approachability of this design.

    The post This classic weather station prioritizes the essentials appeared first on Arduino Blog.

    Website: LINK

  • Continuously measure wind speed and direction with this EMT conduit-mounted station

    Continuously measure wind speed and direction with this EMT conduit-mounted station

    Reading Time: 2 minutes

    Arduino TeamMay 17th, 2022

    It seems like DIY weather stations are everywhere, and while most can perform the basic functions of measuring temperature, humidity, and air pressure, the majority are still unable to determine wind speed and direction. In response, Austin Allen from Elation Sports Technologies LLC created his own system that uses an anemometer and weathervane to measure the wind.

    Both the wind direction sensor and wind speed sensor were secured to sections of EMT conduit with 3D-printed mounts. The speed sensor utilizes a series of internal photo interrupters which get blocked by small plastic tabs whenever the disc spins. By reading the resulting analog voltage output, the connected Arduino Nano can map the value to a speed. The directions sensor uses a single Hall effect sensor combined with a polarized magnet in order to determine the orientation of the resulting magnetic field.

    Once every 0.8 seconds, the Arduino takes a reading from the two wind sensors and sends that data over USB to a host PC where a Python script collects and writes it to a CSV file. This newly-gathered information can then be converted into actual speed and directional values, which can be plotted with the help of a graphing utility.

    [youtube https://www.youtube.com/watch?v=tjqfaeNF8q8?feature=oembed&w=500&h=281]

    To read more about this project, you can check out Allen’s blog post here.

    Website: LINK

  • Citizen science traffic monitoring with Raspberry Pi

    Citizen science traffic monitoring with Raspberry Pi

    Reading Time: 2 minutes

    Homes in Madrid, Dublin, Cardiff, Ljubljana, and Leuven are participating in the Citizens Observing UrbaN Transport (WeCount) project, a European Commission–funded research project investigating sustainable economic growth.

    1,500 Raspberry Pi traffic sensors will be distributed to homes in the five cities to gather data on traffic conditions. Every hour, the devices will upload information to publically accessible cloud storage. The team behind WeCount says:

    Following this approach, we will be able to quantify local road transport (cars, heavy goods vehicles, active travel modes, and speed), produce scientific knowledge in the field of mobility and environmental pollution, and co-design informed solutions to tackle a variety of road transport challenges.

    “With air pollution being blamed for 500,000 premature deaths across the continent in 2018,” states a BBC News article about the project, “the experts running the survey hope their results can be used to make cities healthier places to live.” Says the WeCount team:

    [T]he project will provide cost-effective data for local authorities, at a far greater temporal and spatial scale than what would be possible in classic traffic counting campaigns, thereby opening up new opportunities for transportation policy making and research.

    Find more information about the WeCount project on the BBC News website and on the the CORDIS website.

    Raspberry Pi makes the ideal brain

    The small form factor and low cost of Raspberry Pi mean it’s the ideal brain for citizen science projects across the globe, including our own Raspberry Pi Oracle Weather Station.

    Build Your Own weather station kit assembled

    While the original Oracle Weather Station programme involved only school groups from across the world, we’ve published freely accessible online guides to building your own Raspberry Pi weather station, and to uploading weather data to the Initial State platform.

    Penguin Watch

    Another wonderful Raspberry Pi–powered citizen science project is Penguin Watch, which asks the public to, you guessed it, watch penguins. Time-lapse footage — obtained in the Antarctic by Raspberry Pi Camera Modules connected to Raspberry Pi Zeros — is uploaded to the Penguin Watch website, and anyone in the world can go online to highlight penguins in the footage, helping the research team to monitor the penguin population in these locations.

    Setting up. Credit: Alasdair Davies, ZSL

    Penguin Watch is highly addictive and it’s for a great cause, so be sure to check it out.

    Website: LINK

  • Custom weather station enhances and modifies electronic music

    Custom weather station enhances and modifies electronic music

    Reading Time: 2 minutes

    Custom weather station enhances and modifies electronic music

    Arduino TeamOctober 25th, 2018

    While the environment is important for any musical performance, generally it’s not an active part of the show. Adrien Kaeser, though, has come up with a device called the “Weather Thingy that integrates climate-related events directly into electronic music performances. It’s able to sense wind direction and speed, light intensity, and rain, translating this data into MIDI inputs.

    The system, which was created at ECAL, consists of two parts: a compact weather station on top of a portable stand, as well as a small console with buttons and knobs to select and modify environmental effects on the music. 

    Hardware for the project includes an Arduino Mega and Leonardo, a TFT screen to display the element under control and its characteristics, an ESP32 module, a SparkFun ESP32 Thing Environment Sensor Shield, a SparkFun MIDI Shield, high speed optocouplers, rotary encoder knobs, and some buttons.

    Be sure to see the demo in the video below, preferably with the sound on!

    [embedded content]

    Website: LINK

  • MagPi 71: Run Android on Raspberry Pi

    MagPi 71: Run Android on Raspberry Pi

    Reading Time: 3 minutes

    Hey folks, Rob here with good news about the latest edition of The MagPi! Issue 71, out right now, is all about running Android on Raspberry Pi with the help of emteria.OS and Android Things.

    Raspberry Pi The MagPi Magazine issue 71 - Android

    Android and Raspberry Pi, two great tastes that go great together!

    Android and Raspberry Pi

    A big part of our main feature looks at emteria.OS, a version of Android that runs directly on the Raspberry Pi. By running it on a touchscreen setup, you can use your Pi just like an Android tablet — one that’s easily customisable and hackable for all your embedded computing needs. Inside the issue, we’ve got a special emteria.OS discount code for readers.

    We also look at Android Things, the official Android release for Raspberry Pi that focuses on IoT applications, and we show you some of the amazing projects that have been built with it.

    More in The MagPi

    If Android’s not your thing, we also have a big feature on building a Raspberry Pi weather station in issue 71!

    Raspberry Pi The MagPi Magazine issue 71 - Android

    Build your own Raspberry Pi weather station

    On top of that, we’ve included guides on how to get started with TensorFlow AI and on building an oscilloscope.

    Raspberry Pi The MagPi Magazine issue 71 - Android

    We really loved this card scanning project! Read all about it in issue 71.

    All this, along with our usual varied selection of project showcases, excellent tutorials, and definitive reviews!

    Get The MagPi 71

    You can get The MagPi 71 today from WHSmith, Tesco, Sainsbury’s, and Asda. If you live in the US, head over to your local Barnes & Noble or Micro Center in the next few days for a print copy. You can also get the new issue online from our store, or digitally via our Android or iOS apps. And don’t forget, there’s always the free PDF as well.

    New subscription offer!

    Want to support the Raspberry Pi Foundation and the magazine? We’ve launched a new way to subscribe to the print version of The MagPi: you can now take out a monthly £5 subscription to the magazine, effectively creating a rolling pre-order system that saves you money on each issue.

    The MagPi subscription offer — Run Android on Raspberry Pi

    You can also take out a twelve-month print subscription and get a Pi Zero W plus case and adapter cables absolutely free! This offer does not currently have an end date.

    That’s it, folks! See you at Raspberry Fields.

    Website: LINK

  • Tackling climate change and helping the community

    Tackling climate change and helping the community

    Reading Time: 3 minutes

    In today’s guest post, seventh-grade students Evan Callas, Will Ross, Tyler Fallon, and Kyle Fugate share their story of using the Raspberry Pi Oracle Weather Station in their Innovation Lab class, headed by Raspberry Pi Certified Educator Chris Aviles.

    Raspberry Pi Certified Educator Chris Aviles Innovation Lab Oracle Weather Station

    United Nations Sustainable Goals

    The past couple of weeks in our Innovation Lab class, our teacher, Mr Aviles, has challenged us students to design a project that helps solve one of the United Nations Sustainable Goals. We chose Climate Action. Innovation Lab is a class that gives students the opportunity to learn about where the crossroads of technology, the environment, and entrepreneurship meet. Everyone takes their own paths in innovation and learns about the environment using project-based learning.

    Raspberry Pi Certified Educator Chris Aviles Innovation Lab Oracle Weather Station

    Raspberry Pi Oracle Weather Station

    For our climate change challenge, we decided to build a Raspberry Pi Oracle Weather Station. Tackling the issues of climate change in a way that helps our community stood out to us because we knew with the help of this weather station we can send the local data to farmers and fishermen in town. Recent changes in climate have been affecting farmers’ crops. Unexpected rain, heat, and other unusual weather patterns can completely destabilize the natural growth of the plants and destroy their crops altogether. The amount of labour output needed by farmers has also significantly increased, forcing farmers to grow more food on less resources. By using our Raspberry Pi Oracle Weather Station to alert local farmers, they can be more prepared and aware of the weather, leading to better crops and safe boating.

    Raspberry Pi Certified Educator Chris Aviles Innovation Lab Oracle Weather Station

    Growing teamwork and coding skills

    The process of setting up our weather station was fun and simple. Raspberry Pi made the instructions very easy to understand and read, which was very helpful for our team who had little experience in coding or physical computing. We enjoyed working together as a team and were happy to be growing our teamwork skills.

    Once we constructed and coded the weather station, we learned that we needed to support the station with PVC pipes. After we completed these steps, we brought the weather station up to the roof of the school and began collecting data. Our information is currently being sent to the Initial State dashboard so that we can share the information with anyone interested. This information will also be recorded and seen by other schools, businesses, and others from around the world who are using the weather station. For example, we can see the weather in countries such as France, Greece and Italy.

    Raspberry Pi Certified Educator Chris Aviles Innovation Lab Oracle Weather Station

    Raspberry Pi allows us to build these amazing projects that help us to enjoy coding and physical computing in a fun, engaging, and impactful way. We picked climate change because we care about our community and would like to make a substantial contribution to our town, Fair Haven, New Jersey. It is not every day that kids are given these kinds of opportunities, and we are very lucky and grateful to go to a school and learn from a teacher where these opportunities are given to us. Thanks, Mr Aviles!

    To see more awesome projects by Mr Avile’s class, you can keep up with him on his blog and follow him on Twitter.

    Website: LINK

  • 2017 Weather Station round-up

    2017 Weather Station round-up

    Reading Time: 3 minutes

    As we head into 2018 and start looking forward to longer days in the Northern hemisphere, I thought I’d take a look back at last year’s weather using data from Raspberry Pi Oracle Weather Stations. One of the great things about the kit is that as well as uploading all its readings to the shared online Oracle database, it stores them locally on the Pi in a MySQL or MariaDB database. This means you can use the power of SQL queries coupled with Python code to do automatic data analysis.

    Soggy Surrey

    My Weather Station has only been installed since May, so I didn’t have a full 52 weeks of my own data to investigate. Still, my station recorded more than 70000 measurements. Living in England, the first thing I wanted to know was: which was the wettest month? Unsurprisingly, both in terms of average daily rainfall and total rainfall, the start of the summer period — exactly when I went on a staycation — was the soggiest:

    What about the global Weather Station community?

    Even soggier Bavaria

    Here things get slightly trickier. Although we have a shiny Oracle database full of all participating schools’ sensor readings, some of the data needs careful interpretation. Many kits are used as part of the school curriculum and do not always record genuine outdoor conditions. Nevertheless, it appears that Adalbert Stifter Gymnasium in Bavaria, Germany, had an even wetter 2017 than my home did:

    View larger map

    Where the wind blows

    The records Robert-Dannemann Schule in Westerstede, Germany, is a good example of data which was most likely collected while testing and investigating the weather station sensors, rather than in genuine external conditions. Unless this school’s Weather Station was transported to a planet which suffers from extreme hurricanes, it wasn’t actually subjected to wind speeds above 1000km/h in November. Dismissing these and all similarly suspect records, I decided to award the ‘Windiest location of the year’ prize to CEIP Noalla-Telleiro, Spain.

    View larger map

    This school is right on the coast, and is subject to some strong and squally weather systems.

    Weather Station at CEIP Noalla - Telleiro

    Weather Station at CEIP Noalla-Telleiro

    They’ve mounted their wind vane and anemometer nice and high, so I can see how they were able to record such high wind velocities.

    A couple of Weather Stations have recently been commissioned in equally exposed places — it will be interesting to see whether they will record even higher speeds during 2018.

    Highs and lows

    After careful analysis and a few disqualifications (a couple of Weather Stations in contention for this category were housed indoors), the ‘Hottest location’ award went to High School of Chalastra in Thessaloniki, Greece. There were a couple of Weather Stations (the one at The Marwadi Education Foundation in India, for example) that reported higher average temperatures than Chalastra’s 24.54 ºC. However, they had uploaded far fewer readings and their data coverage of 2017 was only partial.

    View larger map

    At the other end of the thermometer, the location with the coldest average temperature is École de la Rose Sauvage in Calgary, Canada, with a very chilly 9.9 ºC.

    Ecole de la Rose sauvage Weather Station

    Weather Station at École de la Rose Sauvage

    I suspect this school has a good chance of retaining the title: their lowest 2017 temperature of -24 ºC is likely to be beaten in 2018 due to extreme weather currently bringing a freezing start to the year in that part of the world.

    View larger map

    Analyse your own Weather Station data

    If you have an Oracle Raspberry Pi Weather Station and would like to perform an annual review of your local data, you can use this Python script as a starting point. It will display a monthly summary of the temperature and rainfall for 2017, and you should be able to customise the code to focus on other sensor data or on a particular time of year. We’d love to see your results, so please share your findings with weather@raspberrypi.org, and we’ll send you some limited-edition Weather Station stickers.

    Website: LINK

  • Visualising Weather Station data with Initial State

    Visualising Weather Station data with Initial State

    Reading Time: 3 minutes

    Since we launched the Oracle Weather Station project, we’ve collected more than six million records from our network of stations at schools and colleges around the world. Each one of these records contains data from ten separate sensors — that’s over 60 million individual weather measurements!

    Weather station measurements in Oracle database - Initial State

    Weather station measurements in Oracle database

    Weather data collection

    Having lots of data covering a long period of time is great for spotting trends, but to do so, you need some way of visualising your measurements. We’ve always had great resources like Graphing the weather to help anyone analyse their weather data.

    And from now on its going to be even easier for our Oracle Weather Station owners to display and share their measurements. I’m pleased to announce a new partnership with our friends at Initial State: they are generously providing a white-label platform to which all Oracle Weather Station recipients can stream their data.

    Using Initial State

    Initial State makes it easy to create vibrant dashboards that show off local climate data. The service is perfect for having your Oracle Weather Station data on permanent display, for example in the school reception area or on the school’s website.

    But that’s not all: the Initial State toolkit includes a whole range of easy-to-use analysis tools for extracting trends from your data. Distribution plots and statistics are just a few clicks away!

    Humidity value distribution (May-Nov 2017) - Raspberry Pi Oracle Weather Station Initial State

    Looks like Auntie Beryl is right — it has been a damp old year! (Humidity value distribution May–Nov 2017)

    The wind direction data from my Weather Station supports my excuse as to why I’ve not managed a high-altitude balloon launch this year: to use my launch site, I need winds coming from the east, and those have been in short supply.

    Chart showing wind direction over time - Raspberry Pi Oracle Weather Station Initial State

    Chart showing wind direction over time

    Initial State credientials

    Every Raspberry Pi Oracle Weather Station school will shortly be receiving the credentials needed to start streaming their data to Initial State. If you’re super keen though, please email weather@raspberrypi.org with a photo of your Oracle Weather Station, and I’ll let you jump the queue!

    The Initial State folks are big fans of Raspberry Pi and have a ton of Pi-related projects on their website. They even included shout-outs to us in the music video they made to celebrate the publication of their 50th tutorial. Can you spot their weather station?

    Your home-brew weather station

    If you’ve built your own Raspberry Pi–powered weather station and would like to dabble with the Initial State dashboards, you’re in luck! The team at Initial State is offering 14-day trials for everyone. For more information on Initial State, and to sign up for the trial, check out their website.

    Website: LINK