Uncategorized
aaronm — 2015-04-23T16:00:10-04:00 — #1
Hello Everyone,
Please follow along here to watch the development of the alpha kit for the OSBH project.
Thanks,
Aaron
aaronm — 2015-04-23T16:00:16-04:00 — #2
This topic is now pinned globally. It will appear at the top of its category and all topic lists until it is unpinned by staff for everyone, or by individual users for themselves.
clemens — 2015-04-24T15:48:51-04:00 — #3
Is the board operatable by battery only? With the Wifi I don't think so.
ron — 2015-04-26T06:05:37-04:00 — #4
One issue with the code was that it was to big for the flash in the spark Core.
We solved that issue for now by switching the firmware to the new feature/hal branch from Spark Core dev team, which is going to be the future code base for the photon as well. Configuring the code for this branch is in that way also future compatible.
To free up more flash space we deactivated the Spark Cloud support.
Steps to do that:
- build up a local build environment. See https://github.com/spark/firmware/tree/feature/hal
- clone the feature/hal branch instead of master: git clone -b feature/hal https://github.com/spark/firmware
- compile the OSBH code with make APP=OSBH SPARK_CLOUD=n
I needed to add following lines to the OneWire.cpp file:
#include "OneWire.h"
#include "gpio_hal.h"
#include "pinmap_impl.h"
#ifndef FALSE
#define FALSE (0)
#endif
#ifndef TRUE
#define TRUE (!FALSE)
#endif
Filesize is now about 70kb, which means we have 40kb for more Code!
We still need to do some tests with the new firmware as there seem to be some bugs around, but looks promising.
mattias — 2015-05-27T09:50:03-04:00 — #5
What is the status of the kit? I noticed the code on github changed.
Is it already possible to build your own sensor? Before there was a wiring scheme and component list on github, but these have been removed.
trizcs — 2015-05-27T15:44:20-04:00 — #6
Hey @mattias--if you go back to the public Repo on GitHub it should all still be in there
clemens — 2015-06-08T14:18:06-04:00 — #7
Can someone say two, tree words about power consumption / battery operation. There are a hand full commercial products out that run with some batteries a year (load, temperature). Will this be possible with the Particle (former Sparc Core).
trizcs — 2015-07-28T10:01:45-04:00 — #8
Hey-sorry for the delay on answering this.
@AaronM can you fill @Clemens in on the above question? Cheers
trizcs — 2015-07-28T10:03:05-04:00 — #9
Check out the latest prototype of our sensor PCB.
@ron--would you care to post a quick update on this thrread?
Cheers!
alexanderjfink — 2015-09-05T15:46:16-04:00 — #10
Is work still happening on this? I'm considering trying one in a hive next year and figured I'd put it together over the winter. Would love an update. Thank you.