diff --git a/docs/_sources/functionallity.rst.txt b/docs/_sources/functionallity.rst.txt index 91586ac..317d83f 100644 --- a/docs/_sources/functionallity.rst.txt +++ b/docs/_sources/functionallity.rst.txt @@ -4,18 +4,21 @@ Functionallity The main differences -------------------- -* **Operates in two modes `gravity monitoring` and `configuration mode`** +* **Operates in two modes gravity monitoring and configuration mode** - In gravity monitoring mode it behaves just like the iSpindle, it wakes up at regular intervals, measure angle/tile, temperature, calculates gravity and pushes the data to defined endpoints. + In ``gravity monitoring`` mode it behaves just like the iSpindle, it wakes up at regular intervals, measure angle/tile, temperature, calculates gravity and pushes the data to defined endpoints. - In configuration mode the device is always active and the webserver is active. Here you can view the angle/tilt values, change configuration options and more. When in this mode you can also interact with the device - via an REST API so data can be pushed to the device via scripts (see API section for more information)- + In ``configuration mode`` the device is always active and the webserver is active. Here you can view the angle/tilt values, change configuration options and more. When in this mode you can also interact with the device + via an REST API so data can be pushed to the device via scripts (see API section for more information) + + You can force the device into ``configuration mode`` while measuring gravity. This is useful when calibrating the device so you dont needs to wait for the device to wake up and push the data. The entire calibration + sequence can be handled via the web interface without need for additional software tools. *See the configuration section for more information on how to trigger the configuration mode.* * **Can send data to multiple endpoints at once** - The orignial iSpindle can only have one destination, this sofware will push data to all defined endpoints so in theory you can use them all. However this will consume a lot of battery power so use only as many as needed. + The original iSpindle can only have one destination, this software will push data to all defined endpoints so in theory you can use them all. However this will consume a lot of battery power so use only as many as needed. Currently the device supports the following endpoints: http (2 differnt), influxdb2 and Brewfather @@ -73,10 +76,19 @@ Experimental features *See the compile section for more information.* -Typical performance -------------------- -Since I have the possibility to measaure the performance of different function in the code this is what I have been able to gather. +Battery life +------------ + +I'm currently measuring battery life of v0.5 but previous versions have been able to measure gravity for a 2-3 weeks without issues. Using 900 seconds as interval. + +*More on this topics once my tests are done* + + +Performance +----------- + +Since I have the possibility to measure the performance of different function in the code this is what I have been able to gather. The typical runtime in a measurement cycle is approx 2 seconds and in some cases it can take up to 6-8 seconds but this is mainly related to establishing the WIFI connection. So stable wifi is essential for long batterylife. Out of the 2 seconds of run-time the major time is spent on gyro readings (1.3s) and temperature measurements of (0.6s) so using the gyro sensor for measureing diff --git a/docs/_sources/index.rst.txt b/docs/_sources/index.rst.txt index 26e5a68..9cce114 100644 --- a/docs/_sources/index.rst.txt +++ b/docs/_sources/index.rst.txt @@ -11,8 +11,8 @@ Welcome to GravityMon's documentation! Preliminary documentation. This is work in progress. This documentation reflects **v0.5** -GravityMon is a replacement firmare for the iSpindle hardware. It's used to measure gravity in beer and show the progress -of fermentation. +GravityMon is a replacement firmare for the iSpindle firmware, it uses the same hardware configuration so +you can easily switch between them. It's used to measure gravity in beer and show the progress of fermentation. For more information on this topic and function please visit https://www.ispindel.de. @@ -35,7 +35,7 @@ be found here; https://github.com/mp-se/gravitymon The main differences: --------------------- -* Operates in two modes `gravity monitoring` and `configuration mode` +* Operates in two modes ``gravity monitoring`` and ``configuration mode`` * Send data to multiple endpoints when pushing data. * Automatic temperature adjustment of gravity reading * OTA support from local webserver diff --git a/docs/_sources/installation.rst.txt b/docs/_sources/installation.rst.txt index 9e5329f..eb3f9d6 100644 --- a/docs/_sources/installation.rst.txt +++ b/docs/_sources/installation.rst.txt @@ -9,7 +9,11 @@ here; https://docs.espressif.com/projects/esptool/en/latest/esp32/ The basic command for flashing on Windows is; -``esptool.py --port COM4 write_flash 0x0 firmware.bin`` +``esptool.py --port COM4 write_flash 0 firmware.bin`` + +If there are issues you can try do erase the flash first using this command; + +``esptool.py --port COM4 erase_flash`` In the /bin directory you will find 3 different firmware builds; diff --git a/docs/functionallity.html b/docs/functionallity.html index bc650c7..2796ecc 100644 --- a/docs/functionallity.html +++ b/docs/functionallity.html @@ -42,7 +42,8 @@
Operates in two modes `gravity monitoring` and `configuration mode`
-In gravity monitoring mode it behaves just like the iSpindle, it wakes up at regular intervals, measure angle/tile, temperature, calculates gravity and pushes the data to defined endpoints.
-In configuration mode the device is always active and the webserver is active. Here you can view the angle/tilt values, change configuration options and more. When in this mode you can also interact with the device -via an REST API so data can be pushed to the device via scripts (see API section for more information)-
+Operates in two modes gravity monitoring and configuration mode
+In gravity monitoring
mode it behaves just like the iSpindle, it wakes up at regular intervals, measure angle/tile, temperature, calculates gravity and pushes the data to defined endpoints.
In configuration mode
the device is always active and the webserver is active. Here you can view the angle/tilt values, change configuration options and more. When in this mode you can also interact with the device
+via an REST API so data can be pushed to the device via scripts (see API section for more information)
You can force the device into configuration mode
while measuring gravity. This is useful when calibrating the device so you dont needs to wait for the device to wake up and push the data. The entire calibration
+sequence can be handled via the web interface without need for additional software tools.
See the configuration section for more information on how to trigger the configuration mode.
Can send data to multiple endpoints at once
-The orignial iSpindle can only have one destination, this sofware will push data to all defined endpoints so in theory you can use them all. However this will consume a lot of battery power so use only as many as needed.
+The original iSpindle can only have one destination, this software will push data to all defined endpoints so in theory you can use them all. However this will consume a lot of battery power so use only as many as needed.
Currently the device supports the following endpoints: http (2 differnt), influxdb2 and Brewfather
If you want additional targets please raise a feature request in the github repo.
Since I have the possibility to measaure the performance of different function in the code this is what I have been able to gather.
+I’m currently measuring battery life of v0.5 but previous versions have been able to measure gravity for a 2-3 weeks without issues. Using 900 seconds as interval.
+More on this topics once my tests are done
+Since I have the possibility to measure the performance of different function in the code this is what I have been able to gather.
The typical runtime in a measurement cycle is approx 2 seconds and in some cases it can take up to 6-8 seconds but this is mainly related to establishing the WIFI connection. So stable wifi is essential for long batterylife. Out of the 2 seconds of run-time the major time is spent on gyro readings (1.3s) and temperature measurements of (0.6s) so using the gyro sensor for measureing temperature would reduce the total runtime with 25%. Sending data over http takes less than 100ms (on my local network) so this is not drawing much power.
diff --git a/docs/index.html b/docs/index.html index 5c4c8bd..e15e7b8 100644 --- a/docs/index.html +++ b/docs/index.html @@ -75,8 +75,8 @@Note
Preliminary documentation. This is work in progress. This documentation reflects v0.5
GravityMon is a replacement firmare for the iSpindle hardware. It’s used to measure gravity in beer and show the progress -of fermentation.
+GravityMon is a replacement firmare for the iSpindle firmware, it uses the same hardware configuration so +you can easily switch between them. It’s used to measure gravity in beer and show the progress of fermentation.
For more information on this topic and function please visit https://www.ispindel.de.
I started GravityMon because i like to create software and wanted to do some low level programming. I had done a few projects based on esp8266 and also started to brew beer so this combination was quite natural.
@@ -93,7 +93,7 @@ over the last 6 months without any issues.Operates in two modes gravity monitoring and configuration mode
Operates in two modes gravity monitoring
and configuration mode
Send data to multiple endpoints when pushing data.
Automatic temperature adjustment of gravity reading
OTA support from local webserver
The prefered option for flashing esp8266 device is via the official esptool. Documentation can be found here; https://docs.espressif.com/projects/esptool/en/latest/esp32/
The basic command for flashing on Windows is;
-esptool.py --port COM4 write_flash 0x0 firmware.bin
esptool.py --port COM4 write_flash 0 firmware.bin
If there are issues you can try do erase the flash first using this command;
+esptool.py --port COM4 erase_flash
In the /bin directory you will find 3 different firmware builds;
firmware.bin
diff --git a/docs/searchindex.js b/docs/searchindex.js index 9432e8b..71d7d05 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["backlog","compiling","configuration","contributing","functionallity","index","installation","releases","styling"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["backlog.rst","compiling.rst","configuration.rst","contributing.rst","functionallity.rst","index.rst","installation.rst","releases.rst","styling.rst"],objects:{},objnames:{},objtypes:{},terms:{"0x0":6,"100m":4,"15v":2,"20c":2,"2e6753":2,"60second":4,"900s":2,"break":7,"case":4,"class":1,"default":[2,4,6],"function":[1,2,4,5],"long":[2,4],"new":[1,5],Added:7,For:[2,5],Not:6,One:2,THe:1,The:[2,6],There:[1,4,5],These:2,Use:[0,1,4],Used:2,Uses:1,Using:5,Will:2,abl:4,about:[2,8],access:[2,6],accur:4,accuraci:4,acheiv:5,action:0,activ:[2,4],activate_ota:1,add:4,added:2,addit:4,adjust:[2,4,5],adress:[2,6],afterward:2,against:2,all:[2,4,6,7],almost:4,also:[2,4,5,6],alwai:[1,2,4],angl:[2,4,8],ani:[1,2,5],anoth:4,api:[4,5],app:2,appli:2,approach:[5,6],approx:4,arduino:5,arduinocurvefit:5,arduinojson:5,ardurino:1,area:4,assum:2,auth:2,automat:[0,1,4,5,6],avoid:[4,7],back:4,backlog:5,balanc:4,base:[4,5],basic:[5,6],batteri:[2,4,8],batterylif:4,bblanchon:5,becaus:5,becom:6,been:[2,4,5],beer:[4,5],befor:2,behav:4,below:4,beta:5,between:[2,4],big:4,bin:[1,2,6],binari:[1,5,6],bold:8,branch:7,breakdown:5,brew:5,brewfath:4,browser:6,bucket:2,build:[0,1,4,5,6,7],button:[2,5],cal:2,calcual:2,calcuat:7,calcul:[2,4,5],calibr:[2,8],call:[2,6],can:[2,4,5,6],cannot:2,caus:5,celciu:4,celsiu:2,cfg_appver:1,cfg_disable_log:1,chang:[2,4,5],chapter:2,charg:2,charger:2,check:[0,1,2,4],checkbox:2,chip:[2,5],choos:2,cleanup:7,code:[2,4,5,6,7,8],codeplea:5,collect:[2,4],com4:6,com:[1,5,6,7],combin:5,come:5,command:[2,6],commit:[0,1],commun:5,compat:2,compil:[4,5,6],complet:5,condit:2,config:[1,5,7,8],configu:2,configur:[4,5],connect:[2,4,6],consol:2,construct:3,consum:4,consumpt:4,contain:[1,2,5],content:[1,2,5,8],contribut:[0,5],control:5,cool:4,corr:[2,8],correct:[2,4,5],correspond:2,could:4,cover:5,cpp:1,crash:1,creat:[4,5,6],creator:5,css:5,current:[2,4,6],cycl:4,dash:2,data:[1,4,5,6],databas:6,debug:[1,6],deep:1,defin:[2,4,7],defint:1,degre:2,depend:7,descript:1,design:5,destin:4,detail:6,detect:[4,5],dev:7,develop:[1,6,7],devic:[1,4,5,6,7,8],differ:6,differnt:4,difficult:5,directori:6,disabl:[1,2],doc:[1,6],document:[1,6,7],doe:1,don:2,done:[1,2,5],dont:[2,5,6],down:4,download:2,draw:4,ds18b20:[1,4,5],dure:2,earli:5,easi:2,easier:[2,6],ee1bfc:2,either:2,embed:6,embed_html:1,empti:2,enabl:[1,4,6],endpoint:[2,4,5],ensur:[4,6],enter:[2,4,5,6],equal:2,error:5,esp32:6,esp8266:[2,5,6],esp_doubleresetdetector:5,espressif:6,esptool:5,essenti:4,establish:4,even:[2,5],exampl:2,excess:1,execut:[2,4,6],exist:[2,6],experiment:[1,5],explain:2,extend:[2,4],extern:1,factor:2,fals:2,fantast:5,farenheight:2,farenheigt:4,faster:5,faulti:[2,4],featur:[5,7],ferment:5,few:[4,5],file:[1,2,5,6,7],filesystem:1,find:[4,5,6],fine:4,firmar:5,firmwar:[2,5,6],flash:[1,2,6],flat:2,folder:1,follow:[1,2,4,5,6],forget:2,format:[4,5],formula:[4,5,7],found:[1,5,6],from:[1,2,4,5,7],functional:[1,5],gather:4,getbootstrap:5,git:[1,5],github:[0,1,4,5,7],give:2,goe:1,good:4,graph:[2,4,5],graphitemast:5,graphj:5,graviti:[1,4,5,8],gravity_unit:2,gravitymon:[2,7],gravmon:[2,6,8],guid:2,gyro:[1,2,4,5],gyro_disable_log:1,had:5,handl:5,happen:2,hardwar:5,has:[2,4],have:[4,5,6],here:[2,4,5,6],high:2,horizont:2,host:[2,7,8],how:[2,4],howev:4,htm:[2,8],html:[1,2,5,6,8],http:[1,2,4,5,6,7],i2cdevlib:5,identifi:2,imag:[1,4],img:1,incbin:5,includ:[1,5],independ:4,index:[2,5,8],influx:6,influxdb2:[2,4],influxdb:2,inform:[4,5],input:1,instal:[2,5],instead:[1,4,5],instruct:0,interact:[4,5],interfac:2,interv:[2,4],ispindel:[2,5],ispindl:[4,5],issu:5,ital:8,its:[5,6],jrowberg:5,json:5,just:4,kei:2,keyword:2,khoih:5,know:4,larg:6,last:5,latest:[6,7],less:4,level:5,lib:1,librari:[1,4,5,7],life:4,like:[4,5],line:4,list:[1,8],littl:5,local:[2,4,5],locat:2,log:[1,2,5],loglevel:5,lot:4,low:[2,5],mai:1,main:[1,2],main_disable_log:1,mainli:4,major:4,make:[4,6],manag:1,mani:[4,5],manual:2,maximum:1,mdn:[2,8],measaur:4,measur:[1,2,4,5,8],might:4,milesburton:5,millisecond:4,min:[2,8],minifi:1,minimis:1,minut:2,miss:2,mode:[1,2,4,5],model:1,modul:5,monitor:[2,4,5],month:5,more:[4,5],move:[4,6],movement:4,mqtt:0,much:[4,5,6],multipl:[4,5],must:2,name:2,natur:5,need:[4,6],neg:2,net:2,network:[2,4],never:[1,2],newer:2,next:7,nice:[2,4],normal:6,note:8,noth:2,now:7,number:[2,7],off:2,offici:5,old:5,onc:[2,4],one:[4,5],onewir:5,onli:[4,6],open:[5,6],oper:[2,4,5],optimis:5,option:[2,4,5,6],order:[1,2,6],org:2,organis:2,orient:2,origin:5,origni:4,ota:[1,2,4,5],other:[2,5,6],out:[2,4],over:[2,4,5],overview:2,page:[1,2,5,6],paramet:2,parser:5,part:4,password:[1,6],path:1,paulstoffregen:5,payload:2,perf:[1,6],perform:[1,5,6],performac:4,pink:4,place:2,platformio:1,plato:[0,2,4],pleas:[4,5],plugin:1,point:[2,6],port:6,possibl:[4,6],power:4,pre:[0,1],prefer:6,preliminari:5,present:2,press:[2,5],problem:5,probli:4,proccess:5,process:1,prog:5,program:5,progress:5,project:[2,5,6,8],publish:1,push2:2,push:[4,5],push_disable_log:1,pushtarget:1,qualiti:4,quit:[4,5],qwerti:2,rais:4,reaad:2,read:[2,4,5],readm:1,recommend:[2,6],reduc:[2,4],refactor:7,reflect:5,regard:2,regular:4,relat:4,releas:[1,5,6],render:5,replac:5,repo:4,repositori:[1,5],request:[2,4],requir:[2,4],reset:5,respons:5,rest:[4,5],retriv:2,rewrit:7,rotario:5,rssi:[2,8],run:[1,2,4],runtim:4,safeguard:2,same:[2,4],sampl:8,save:[2,4],script:[1,4],search:5,second:[2,4],section:[2,3,4,5],see:[2,4,5,6],send:[2,4,5],sensor:[4,5],sent:5,sequenc:2,serial:[2,5],serv:[1,2],server:2,servic:5,set:[5,6,7],shoot:1,should:[2,4],show:[2,4,5],simul:[2,4],sinc:[1,4],skip_sleepmod:1,sleep:[1,2,4],small:4,softwar:[4,5,6],sofwar:4,some:[4,5],sourc:5,speed:2,spent:4,src:1,src_doc:1,ssid:[1,6],stabl:[4,7],stage:5,standard:[1,2,6],start:[4,5],startup:2,statu:5,step:[2,4],still:2,stl:1,store:[6,7],stream:2,structur:5,studio:1,style:1,submit:6,support:[0,2,4,5],sync:6,system:[1,2,6],tabl:2,tag:7,take:[4,5],target:[4,5,7],telemetri:2,temp:[2,4,8],tempcorr:2,temperatur:[1,2,4,5],templat:5,tempsensor:1,test:[1,4,5],than:[2,4,5],thei:[1,2],them:4,theori:4,thi:[1,2,3,4,5,6,7],thijs:5,though:5,ticket:5,tile:4,tilt:[2,4],time:[2,4,6],tinyexpr:5,token:2,too:2,took:2,tool:[4,5],topic:5,total:[4,7],trail:2,trigger:4,troubl:1,tsen_disable_log:1,twice:5,two:[2,4,5],typic:5,tzapu:5,ubuntu:1,uncheck:2,under:[1,3],uniqu:2,unit:2,unless:2,updat:[2,4,7],upgrad:2,upload:2,url:2,use:[1,2,4,5,6],use_gyro_temp:1,use_littlef:1,used:[1,2,5,6],useful:[1,2],user_ssid:1,user_ssid_pwd:1,uses:[1,5],using:[2,4],valid:[0,1,4],valu:[2,4],vari:4,variou:[1,5],ver:2,verbos:1,version:[1,6,7,8],via:[0,2,4,6],view:4,visit:5,visual:1,voltag:2,vscode:1,wai:[2,4],wake:4,want:[4,5,6],web:[2,5,6],web_disable_log:1,webserv:[1,4,5],well:2,what:[4,5],when:[1,2,4,5,6],where:2,which:2,why:4,wifi:[4,5,7],wifimanag:5,window:[1,6],wirless:6,without:[2,5],work:[1,2,4,5,6],would:[4,5],write:[0,2],write_flash:6,wsl2:1,www:[1,5],yaml:1,year:5,yet:[1,2,4],you:[2,4,5,6],zero:2},titles:["Backlog of changes","Compiling the software","Configuration","Contributing","Functionallity","Welcome to GravityMon\u2019s documentation!","Installation","Releases","Testing formatting"],titleterms:{The:[4,5],api:2,backlog:0,beta:7,brewfath:2,chang:0,code:[0,1],compil:1,config:2,configur:[2,6],contribut:3,creat:2,credit:5,data:2,defin:1,devic:2,differ:[4,5],directori:1,document:[0,5],esptool:6,experiment:4,featur:4,format:[1,2,8],formula:2,functional:4,get:2,graviti:2,gravitymon:5,hardwar:2,header:8,indic:5,influx:2,instal:6,ispindl:2,json:2,main:[4,5],offici:6,option:1,other:4,perform:4,post:2,push:2,releas:7,rest:2,set:2,softwar:1,sourc:1,statu:2,structur:1,tabl:[5,8],target:1,test:8,tool:1,typic:4,version:2,welcom:5,wifi:6}}) \ No newline at end of file +Search.setIndex({docnames:["backlog","compiling","configuration","contributing","functionallity","index","installation","releases","styling"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["backlog.rst","compiling.rst","configuration.rst","contributing.rst","functionallity.rst","index.rst","installation.rst","releases.rst","styling.rst"],objects:{},objnames:{},objtypes:{},terms:{"100m":4,"15v":2,"20c":2,"2e6753":2,"60second":4,"900s":2,"break":7,"case":4,"class":1,"default":[2,4,6],"function":[1,2,4,5],"long":[2,4],"new":[1,5],"switch":5,"try":6,"while":4,Added:7,For:[2,5],Not:6,One:2,THe:1,The:[2,6],There:[1,4,5],These:2,Use:[0,1,4],Used:2,Uses:1,Using:[4,5],Will:2,abl:4,about:[2,8],access:[2,6],accur:4,accuraci:4,acheiv:5,action:0,activ:[2,4],activate_ota:1,add:4,added:2,addit:4,adjust:[2,4,5],adress:[2,6],afterward:2,against:2,all:[2,4,6,7],almost:4,also:[2,4,5,6],alwai:[1,2,4],angl:[2,4,8],ani:[1,2,5],anoth:4,api:[4,5],app:2,appli:2,approach:[5,6],approx:4,arduino:5,arduinocurvefit:5,arduinojson:5,ardurino:1,area:4,assum:2,auth:2,automat:[0,1,4,5,6],avoid:[4,7],back:4,backlog:5,balanc:4,base:[4,5],basic:[5,6],batteri:[2,5,8],batterylif:4,bblanchon:5,becaus:5,becom:6,been:[2,4,5],beer:[4,5],befor:2,behav:4,below:4,beta:5,between:[2,4,5],big:4,bin:[1,2,6],binari:[1,5,6],bold:8,branch:7,breakdown:5,brew:5,brewfath:4,browser:6,bucket:2,build:[0,1,4,5,6,7],button:[2,5],cal:2,calcual:2,calcuat:7,calcul:[2,4,5],calibr:[2,4,8],call:[2,6],can:[2,4,5,6],cannot:2,caus:5,celciu:4,celsiu:2,cfg_appver:1,cfg_disable_log:1,chang:[2,4,5],chapter:2,charg:2,charger:2,check:[0,1,2,4],checkbox:2,chip:[2,5],choos:2,cleanup:7,code:[2,4,5,6,7,8],codeplea:5,collect:[2,4],com4:6,com:[1,5,6,7],combin:5,come:5,command:[2,6],commit:[0,1],commun:5,compat:2,compil:[4,5,6],complet:5,condit:2,config:[1,5,7,8],configu:2,configur:[4,5],connect:[2,4,6],consol:2,construct:3,consum:4,consumpt:4,contain:[1,2,5],content:[1,2,5,8],contribut:[0,5],control:5,cool:4,corr:[2,8],correct:[2,4,5],correspond:2,could:4,cover:5,cpp:1,crash:1,creat:[4,5,6],creator:5,css:5,current:[2,4,6],cycl:4,dash:2,data:[1,4,5,6],databas:6,debug:[1,6],deep:1,defin:[2,4,7],defint:1,degre:2,depend:7,descript:1,design:5,destin:4,detail:6,detect:[4,5],dev:7,develop:[1,6,7],devic:[1,4,5,6,7,8],differ:6,differnt:4,difficult:5,directori:6,disabl:[1,2],doc:[1,6],document:[1,6,7],doe:1,don:2,done:[1,2,4,5],dont:[2,4,5,6],down:4,download:2,draw:4,ds18b20:[1,4,5],dure:2,earli:5,easi:2,easier:[2,6],easili:5,ee1bfc:2,either:2,embed:6,embed_html:1,empti:2,enabl:[1,4,6],endpoint:[2,4,5],ensur:[4,6],enter:[2,4,5,6],entir:4,equal:2,eras:6,erase_flash:6,error:5,esp32:6,esp8266:[2,5,6],esp_doubleresetdetector:5,espressif:6,esptool:5,essenti:4,establish:4,even:[2,5],exampl:2,excess:1,execut:[2,4,6],exist:[2,6],experiment:[1,5],explain:2,extend:[2,4],extern:1,factor:2,fals:2,fantast:5,farenheight:2,farenheigt:4,faster:5,faulti:[2,4],featur:[5,7],ferment:5,few:[4,5],file:[1,2,5,6,7],filesystem:1,find:[4,5,6],fine:4,firmar:5,firmwar:[2,5,6],first:6,flash:[1,2,6],flat:2,folder:1,follow:[1,2,4,5,6],forc:4,forget:2,format:[4,5],formula:[4,5,7],found:[1,5,6],from:[1,2,4,5,7],functional:[1,5],gather:4,getbootstrap:5,git:[1,5],github:[0,1,4,5,7],give:2,goe:1,good:4,graph:[2,4,5],graphitemast:5,graphj:5,graviti:[1,4,5,8],gravity_unit:2,gravitymon:[2,7],gravmon:[2,6,8],guid:2,gyro:[1,2,4,5],gyro_disable_log:1,had:5,handl:[4,5],happen:2,hardwar:5,has:[2,4],have:[4,5,6],here:[2,4,5,6],high:2,horizont:2,host:[2,7,8],how:[2,4],howev:4,htm:[2,8],html:[1,2,5,6,8],http:[1,2,4,5,6,7],i2cdevlib:5,identifi:2,imag:[1,4],img:1,incbin:5,includ:[1,5],independ:4,index:[2,5,8],influx:6,influxdb2:[2,4],influxdb:2,inform:[4,5],input:1,instal:[2,5],instead:[1,4,5],instruct:0,interact:[4,5],interfac:[2,4],interv:[2,4],ispindel:[2,5],ispindl:[4,5],issu:[4,5,6],ital:8,its:[5,6],jrowberg:5,json:5,just:4,kei:2,keyword:2,khoih:5,know:4,larg:6,last:5,latest:[6,7],less:4,level:5,lib:1,librari:[1,4,5,7],life:5,like:[4,5],line:4,list:[1,8],littl:5,local:[2,4,5],locat:2,log:[1,2,5],loglevel:5,lot:4,low:[2,5],mai:1,main:[1,2],main_disable_log:1,mainli:4,major:4,make:[4,6],manag:1,mani:[4,5],manual:2,maximum:1,mdn:[2,8],measur:[1,2,4,5,8],might:4,milesburton:5,millisecond:4,min:[2,8],minifi:1,minimis:1,minut:2,miss:2,mode:[1,2,4,5],model:1,modul:5,monitor:[2,4,5],month:5,more:[4,5],move:[4,6],movement:4,mqtt:0,much:[4,5,6],multipl:[4,5],must:2,name:2,natur:5,need:[4,6],neg:2,net:2,network:[2,4],never:[1,2],newer:2,next:7,nice:[2,4],normal:6,note:8,noth:2,now:7,number:[2,7],off:2,offici:5,old:5,onc:[2,4],one:[4,5],onewir:5,onli:[4,6],open:[5,6],oper:[2,4,5],optimis:5,option:[2,4,5,6],order:[1,2,6],org:2,organis:2,orient:2,origin:[4,5],ota:[1,2,4,5],other:[2,5,6],out:[2,4],over:[2,4,5],overview:2,page:[1,2,5,6],paramet:2,parser:5,part:4,password:[1,6],path:1,paulstoffregen:5,payload:2,perf:[1,6],perform:[1,5,6],performac:4,pink:4,place:2,platformio:1,plato:[0,2,4],pleas:[4,5],plugin:1,point:[2,6],port:6,possibl:[4,6],power:4,pre:[0,1],prefer:6,preliminari:5,present:2,press:[2,5],previou:4,problem:5,probli:4,proccess:5,process:1,prog:5,program:5,progress:5,project:[2,5,6,8],publish:1,push2:2,push:[4,5],push_disable_log:1,pushtarget:1,qualiti:4,quit:[4,5],qwerti:2,rais:4,reaad:2,read:[2,4,5],readm:1,recommend:[2,6],reduc:[2,4],refactor:7,reflect:5,regard:2,regular:4,relat:4,releas:[1,5,6],render:5,replac:5,repo:4,repositori:[1,5],request:[2,4],requir:[2,4],reset:5,respons:5,rest:[4,5],retriv:2,rewrit:7,rotario:5,rssi:[2,8],run:[1,2,4],runtim:4,safeguard:2,same:[2,4,5],sampl:8,save:[2,4],script:[1,4],search:5,second:[2,4],section:[2,3,4,5],see:[2,4,5,6],send:[2,4,5],sensor:[4,5],sent:5,sequenc:[2,4],serial:[2,5],serv:[1,2],server:2,servic:5,set:[5,6,7],shoot:1,should:[2,4],show:[2,4,5],simul:[2,4],sinc:[1,4],skip_sleepmod:1,sleep:[1,2,4],small:4,softwar:[4,5,6],some:[4,5],sourc:5,speed:2,spent:4,src:1,src_doc:1,ssid:[1,6],stabl:[4,7],stage:5,standard:[1,2,6],start:[4,5],startup:2,statu:5,step:[2,4],still:2,stl:1,store:[6,7],stream:2,structur:5,studio:1,style:1,submit:6,support:[0,2,4,5],sync:6,system:[1,2,6],tabl:2,tag:7,take:[4,5],target:[4,5,7],telemetri:2,temp:[2,4,8],tempcorr:2,temperatur:[1,2,4,5],templat:5,tempsensor:1,test:[1,4,5],than:[2,4,5],thei:[1,2],them:[4,5],theori:4,thi:[1,2,3,4,5,6,7],thijs:5,though:5,ticket:5,tile:4,tilt:[2,4],time:[2,4,6],tinyexpr:5,token:2,too:2,took:2,tool:[4,5],topic:[4,5],total:[4,7],trail:2,trigger:4,troubl:1,tsen_disable_log:1,twice:5,two:[2,4,5],typic:4,tzapu:5,ubuntu:1,uncheck:2,under:[1,3],uniqu:2,unit:2,unless:2,updat:[2,4,7],upgrad:2,upload:2,url:2,use:[1,2,4,5,6],use_gyro_temp:1,use_littlef:1,used:[1,2,5,6],useful:[1,2,4],user_ssid:1,user_ssid_pwd:1,uses:[1,5],using:[2,4,6],valid:[0,1,4],valu:[2,4],vari:4,variou:[1,5],ver:2,verbos:1,version:[1,4,6,7,8],via:[0,2,4,6],view:4,visit:5,visual:1,voltag:2,vscode:1,wai:[2,4],wait:4,wake:4,want:[4,5,6],web:[2,4,5,6],web_disable_log:1,webserv:[1,4,5],week:4,well:2,what:[4,5],when:[1,2,4,5,6],where:2,which:2,why:4,wifi:[4,5,7],wifimanag:5,window:[1,6],wirless:6,without:[2,4,5],work:[1,2,4,5,6],would:[4,5],write:[0,2],write_flash:6,wsl2:1,www:[1,5],yaml:1,year:5,yet:[1,2,4],you:[2,4,5,6],zero:2},titles:["Backlog of changes","Compiling the software","Configuration","Contributing","Functionallity","Welcome to GravityMon\u2019s documentation!","Installation","Releases","Testing formatting"],titleterms:{The:[4,5],api:2,backlog:0,batteri:4,beta:7,brewfath:2,chang:0,code:[0,1],compil:1,config:2,configur:[2,6],contribut:3,creat:2,credit:5,data:2,defin:1,devic:2,differ:[4,5],directori:1,document:[0,5],esptool:6,experiment:4,featur:4,format:[1,2,8],formula:2,functional:4,get:2,graviti:2,gravitymon:5,hardwar:2,header:8,indic:5,influx:2,instal:6,ispindl:2,json:2,life:4,main:[4,5],offici:6,option:1,other:4,perform:4,post:2,push:2,releas:7,rest:2,set:2,softwar:1,sourc:1,statu:2,structur:1,tabl:[5,8],target:1,test:8,tool:1,version:2,welcom:5,wifi:6}}) \ No newline at end of file