Skip to content

Commit

Permalink
This and that
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Jun 1, 2023
1 parent 3ffeb91 commit a5cb2c9
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Expand Up @@ -74,7 +74,7 @@ in-progress

- :ref:`generic-firmware`: Reduce loop interval when being in bootstrap phase
- :ref:`node-gsm-http`: Fix Makefile for ESP8266. Thanks, Matthias!
- :ref:`node-yun-http`: Add firmware `node-yun-http.ino`_ for Mois Box. Thanks, Markus!
- :ref:`node-yun-http`: Add firmware `beescale-yun.ino`_ for `Mois Box`_. Thanks, @bee-mois.
- Improve the `node-wifi-mqtt.ino`_ firmware for the :ref:`node-wifi-mqtt`:

- Fix Makefile for ESP8266 reported not to work on Ubuntu 16.10. Thanks, Matthias!
Expand Down
8 changes: 6 additions & 2 deletions backdoor/multihop/config.h
Expand Up @@ -220,8 +220,12 @@
#define RH95_SS 5 //
#endif
#elif IS_GATEWAY
#define RH95_IRQ 2 // radio pins
#define RH95_SS 10 //
#if !defined(RH95_IRQ)
#define RH95_IRQ 2 // radio pins
#endif
#if !defined(RH95_SS)
#define RH95_SS 10 //
#endif
#endif


Expand Down
5 changes: 3 additions & 2 deletions backdoor/multihop/platformio.ini
Expand Up @@ -21,10 +21,11 @@ lib_deps =
mike-matera/ArduinoSTL@^1
../../libraries/Terrine
build_flags =
# -std=gnu++11
-fdiagnostics-color
# -pedantic
-Wall
-Wextra
# -Wall
# -Wextra
extra_scripts = platformio_options.py

[node-common]
Expand Down
17 changes: 11 additions & 6 deletions doc/source/project/backlog.rst
Expand Up @@ -22,7 +22,7 @@ Iteration 1
===========
- [x] FW INDEX :hidden:
- [x] Refine new firmware overview page
- [x] Get rid of tools subdirectory
- [x] Get rid of ``tools`` subdirectory
- [x] Hibernate Firmware Builder
- [x] Run linkchecker
- [x] Use brand color of previous theme
Expand All @@ -35,11 +35,12 @@ Iteration 1
Iteration 2
===========
- [x] Dissolve ``StandardCplusplus`` completely
- [x] multihop: Remove notion of ``HE_CONTAINERS``.
After switching to ArduinoSTL, container data structures can be taken for granted.
- [o] Release aerowind-ads1231 0.1.0
- [o] Broadcast PlatformIO configurations to @wtf's and @mois' firmwares
- [o] multihop: Remove notion of ``HE_CONTAINERS``.
After switching to ArduinoSTL, container data structures can be taken for granted.
- [o] Curate dependencies once more
- [o] Format code with CLion code formatter
- [o] Release

Layout
Expand Down Expand Up @@ -75,12 +76,16 @@ Documentation
- [o] Link to "Bauanleitungen"




Iteration 3
===========
- [o] Migrate POSIX examples to PlatformIO
- [o] Add firmwares from Beelogger, BEEP, EasyHive, Autonome Zelle, Dachboden Lab, @hsors, Terkin, BOB
- [o] Add firmwares from BOB, Open Hive v3, Beelogger, BEEP, EasyHive, Autonome Zelle, Dachboden Lab, @hsors, Terkin
- Die Firmware fürs BOB kit auf Arduino Basis
https://github.com/ClemensGruber/bee-observer_bee-monitoring-arduino
- Die TTGO T-Call Version
https://github.com/ClemensGruber/open-hive_bee-monitoring
https://community.hiveeyes.org/t/openhive-esp32-ttgo-t-call-sim800c/4202

- [o] Firmware builder NG::

pip install pio-launch
Expand Down
5 changes: 5 additions & 0 deletions moislabs/beescale-yun/README.rst
Expand Up @@ -39,6 +39,9 @@ About
The second generation `Mois Box`_ is a beehive monitoring system based on the
`Arduino Yún Shield`_-compatible `Dragino Yun Shield v2.4`_, running `OpenWrt`_.

The article `Bienenwaage 2.0`_ introduces you to the hardware setup.


Project repository
==================

Expand Down Expand Up @@ -130,6 +133,7 @@ Build

The build system is based on `PlatformIO`_, which will install toolchains and build
your customized firmware without efforts. All you need is a Python installation.
If you want to use an IDE, we recommend to use the `PlatformIO IDE`_.

::

Expand Down Expand Up @@ -280,6 +284,7 @@ an issue`_, or `submit a patch`_. Thank you.
.. _AR9331: http://en.techinfodepot.shoutwiki.com/wiki/Atheros_AR9331
.. _@bee-mois: https://github.com/bee-mois
.. _beescale repository: https://github.com/bee-mois/beescale
.. _Bienenwaage 2.0: https://www.euse.de/wp/blog/2017/03/bienenwaage-2_0/
.. _create an issue: https://github.com/hiveeyes/arduino/issues
.. _custom PHP receiver program: https://github.com/bee-mois/beescale/blob/master/add_line2.php
.. _Daten zu Hiveeyes übertragen: https://community.hiveeyes.org/t/daten-per-http-und-php-ans-backend-auf-swarm-hiveeyes-org-ubertragen/162
Expand Down

0 comments on commit a5cb2c9

Please sign in to comment.