Clinton Freeman
Clinton Freeman
Doh. Sorry, still got my github training wells on. Not sure why support for the intel edison got automatically inserted into this pull request. Was aiming for a seperate pull...
So the humidity, temp and pressure methods should read all of 0xF7 to 0xFE using ``` func (b *i2cBus) ReadFromReg(addr, reg byte, value []byte) error ``` That will perform a...
``` func (s *BME280) Measurements() ([]byte, error) { ``` Now performs a burst read (I think?) of all the measurements, while Humidity, Pressure and Temperature can be used to calculate...
The only driver that has been tested so far is i2c ( during the development of #72 ), GPIO, LED and SPI have not been tested yet.
Ran some more tests today. GPIO works in both directions and the pin mappings all work out and line up with the 'block' from Sparkfun. ``` embd.InitGPIO() defer embd.CloseGPIO() p,...
You need to set the environment variable GOMAXPROCS. Go will only use one CPU/Core by default unless you set GOMAXPROCS. See http://golang.org/doc/faq#Why_no_multi_CPU for more details.
How did GOMAXPROCS go? Can I close this one off?
Well that certainly shouldn't be the case. Does it slowly ramp up, or does it reach a point where it suddenly blasts your CPUs? Can you dig through the logs...
Sorry. I'm logging _everything_ at the moment. I have toned things down a little in your branch and evaluating leveled logging libraries for go. This one here -- https://github.com/golang/glog --...
Had a dig around in this one today. Found that primus ping messages were not being correctly returned, and websockets not correctly closed by the server. These two things would...