You can built your own weather station using Argent ADS-WS1 or any other devices that capable submiting to aprs-is or cwop network, but it was too expensive for me. i began my research how to craft APRS WX packet using python and bash script on direwolf. that was not easy for newbie amateur like me, LOL. Luckily i’ve found aprs-weather-submit created by KC1HBK. it makes my research easier.
first of all, we need some hardwares Raspi Zero, BME280 sensorand some jumper wires.
Conect all wires from pi zero to bme280 using i2c pin. you can find pinout configuration here:
don’t forget to activate i2c pin, go ssh shell. issue command sudo raspi-config and go to interface options to activate i2c
Wiring:
BME280 VIN pin connects to GPIO pin 1 (3.3V)
BME280 GND pin connects to GPIO pin 6 (GND)
BME280 SCL pin connects to GPIO pin 5 (SCL)
BME280 SDA pin connects to GPIO pin 3 (SDA)
i’m using python and bme280 library from https://github.com/pimoroni/bme280-python there’s some example script there, i silghtly modify the script to obtain bme280 values
fprintf(stderr, “Your comment was %lu characters long, but APRS allows %u characters. Your comment was truncated.\n”, strlen(optarg), MAX_COMMENT_LENGTH);
this command will remove leading 22 characters(based on my lat long value) in this case when i’m executing aprs-weather-submit -k YD0BCX-13 -n -6.198611 -e 106.87000E the result will be: YD0BCX-13>APRS,TCPIP:@200431z0611.92S/10652.20E_…/…t…aprs-weather-submit/1.6
we need to remove “YD0BCX-13>APRS,TCPIP:” part, that’s what “echo “${STR2:22}”” is for.
if it’s not removed direwolf will also submit those part and make it position beacon failed to aprs-is(YD0BCX-13>APRS,TCPIP*: submit 2 times)
note on direwolf configuration, i also submiting telemetries data, you can ommit it if you want. i think that’s it. i’m not good at talking or writing.
if there’s something to ask just drop me a message
Hari, thanks for your help, I have the script working perfectly now. I re-imaged a SD card with new Pi os and started from scratch and it all worked ok. I must have done something before with my Pi and it may have corrupted some files.
you’re very welcome joe, i’m glad finally it works for you.
it could be sdcard or os, could be my typo writing, could be yours too.
i always update my writing. based on reader’s feedback.
hi,
happy new year to you too.
i will try to answer your questions
1. sure every os with linux based can compile as long as dependecies/libraries was installed.
2 yes, any connection would be suffice as long as they have route to internet available.
Hello, thanks for sharing your projects.
When I run wx.sh I get a error:
File “/home/pi/./wx.sh”, line 2
STR=$(/home/pi/bme280_cjb_AA.py)
^
SyntaxError: invalid syntax
Not sure what to do now.
Regards
Joe
VK5EI
try change
1
STR=$(/home/pi/bme280_cjb_AA.py)
to
1
STR=`/home/pi/bme280_cjb_AA.py`
note (` = backtick`)
and don’t forget make bme280_cjb_AA.py executable
1
chmod
755 bme280_cjb_AA.py
Hello Hari, thanks for your reply, I tried what you suggested and I get the same error.
I am using the latest Raspberry Pi image, not sure what to do now
Regards
Joe
hmm, that’s strange. i reproduce the python and wx.sh script it still work.
1
pi@raspberrypi:~ $
ls
-al wx.sh
2
-rwxr-xr-x 1 pi pi 2321 Nov 30 13:59 wx.sh
3
pi@raspberrypi:~ $
ls
-al bme280_cjb_AA.py
4
-rwxr-xr-x 1 pi pi 2191 Nov 29 21:25 bme280_cjb_AA.py
5
pi@raspberrypi:~ $
pwd
6
/home/pi
7
pi@raspberrypi:~ $ ./wx2.sh
8
@150655z0611.92S/10652.20E_.../...t090h57b10040 WX on Pi Zero + BME280 + DW 1.7
the script
1
#!/bin/bash
2
3
STR=$(/home/pi/bme280_cjb_AA.py)
4
5
Temp=$(
echo
$STR |
cut
-f 1 -d
" "
)
6
Hum=$(
echo
$STR |
cut
-f 3 -d
" "
)
7
Bar=$(
echo
$STR |
cut
-f 2 -d
" "
)
8
Alt=$(
echo
$STR |
cut
-f 4 -d
" "
)
9
10
STR2=$(aprs-weather-submit -k YD0BCX-13 -n -6.198611 -e 106.87000E -T $Temp -h $Hum -b $Bar -M
" WX on Pi Zero + BME280 + DW 1.7"
)
11
12
echo
"${STR2:22}"
13
#echo "$Temp $Hum $Bar $Alt"
make sure bme280_cjb_AA.py script output the right result when executed.
1
pi@raspberrypi:~ $ ./bme280_cjb_AA.py
2
0032 1004 0057 0080 001 11111111
3
pi@raspberrypi:~ $
4
pi@raspberrypi:~ $ /home/pi/bme280_cjb_AA.py
5
0032 1004 0057 0080 100 11111111
6
pi@raspberrypi:~ $
can you post the script you’ve made. maybe i can recheck.
regards
YD0BCX
Hari, thanks for your help, I have the script working perfectly now. I re-imaged a SD card with new Pi os and started from scratch and it all worked ok. I must have done something before with my Pi and it may have corrupted some files.
Thanks again
Joe
VK5EI
you’re very welcome joe, i’m glad finally it works for you.
it could be sdcard or os, could be my typo writing, could be yours too.
i always update my writing. based on reader’s feedback.
thanks for the comments
73, YD0BCX
Hello Hari,
how are you doing?
A HNY 2023 to you and your family.
your schematic seems very interesting but I have to questions:
1) could it be compiled/used in another Raspberry PI;
2) could it be possible to use an Ethernet device instead WIFI ????
I am looking forward to reading from you.
Best 73.
CT1DRB/OK8RB
David Quental
hi,
happy new year to you too.
i will try to answer your questions
1. sure every os with linux based can compile as long as dependecies/libraries was installed.
2 yes, any connection would be suffice as long as they have route to internet available.
73
YD0BCX hari
Hello Hari,
tks a lot for your answer.
Best 73.
CT1DRB/OK8RB
David Quental