Skip to content

Commit

Permalink
python: Barometer: rename modules
Browse files Browse the repository at this point in the history
All modules for this example now in folders Common
  • Loading branch information
Igor Anokhin committed Jan 10, 2018
1 parent 8f67d05 commit b241095
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Python/Barometer.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@

import time

import navio.ms5611
import navio.util
import navio.Common.util

navio.util.check_apm()
import navio.Common.ms5611

baro = navio.ms5611.MS5611()
navio.Common.util.check_apm()

baro = navio.Common.ms5611.MS5611()
baro.initialize()

while(True):
Expand Down

0 comments on commit b241095

Please sign in to comment.