Search found 3 matches

by bergamont
Mon Jun 19, 2017 10:11 am
Forum: ESP8266 boards
Topic: ESP8266 HUZZAH breakout + LSM9DS1 9DOF
Replies: 7
Views: 6253

Re: ESP8266 HUZZAH breakout + LSM9DS1 9DOF

Hey marfis,
Thanks for your respond!
As soon as I finish my project, I will try to run this driver on the pyboard. Could you tell me how to visualize the data LSM9DS1 shows me ?
by bergamont
Wed Jun 14, 2017 10:04 am
Forum: ESP8266 boards
Topic: ESP8266 HUZZAH breakout + LSM9DS1 9DOF
Replies: 7
Views: 6253

Re: ESP8266 HUZZAH breakout + LSM9DS1 9DOF

Thank you for answers! I solved this problem by using the i2c.readfrom_mem_into function. And I changed self.scratch_int from self.scratch_int = array.array('h',[0,0,0]) to self.scratch_int = bytearray(3) and also self.scratch = array.array('B',[0,0,0,0,0,0]) to self.scratch = bytearray(6). This fin...
by bergamont
Tue Jun 13, 2017 2:28 pm
Forum: ESP8266 boards
Topic: ESP8266 HUZZAH breakout + LSM9DS1 9DOF
Replies: 7
Views: 6253

ESP8266 HUZZAH breakout + LSM9DS1 9DOF

Hello! I am quite new to programming and working with microcontrollers. The Firmware on my ESP8266 ist Micropython: esp8266-20170108-v1.8.7.bin I want to connect my ESP8266 HUZZAH breakout microcontroller with LSM9DS1 9DOF. I have found a library for this sensor. But it was written to work with the ...