GuyCarver MicroPython repository
Go to file
Guy Carver fc74cc6bc8 Fix some syntax errors in getrotation() and __init__() 2022-09-28 11:18:10 -04:00
_SYNCAPP Updated 2015-03-20 02:19:59 -04:00
esp32 Adding some stuff 2021-05-15 09:31:15 -04:00
esp8266 Adding some random stuff 2021-05-15 09:31:15 -04:00
lib Fix some syntax errors in getrotation() and __init__() 2022-09-28 11:18:10 -04:00
ttgo Ignoring boot backup. 2021-05-15 09:31:15 -04:00
.gitattributes 🎪 Added .gitattributes 2014-11-03 18:00:39 -05:00
.gitignore updating stuff 2014-11-22 11:33:41 -05:00
Balance.py Created 2014-11-03 18:02:34 -05:00
DistanceDisplay.py Add JYMCU, IRDistance, Relay and SR04Distance 2014-11-24 22:40:17 -05:00
README.md Formatting fixes. 2018-02-18 11:04:59 -05:00
README.txt Created 2014-11-03 18:02:34 -05:00
TreatThrower.py Add JYMCU, IRDistance, Relay and SR04Distance 2014-11-24 22:40:17 -05:00
bombs.py Add JYMCU, IRDistance, Relay and SR04Distance 2014-11-24 22:40:17 -05:00
boot.py py driver more in line with c driver. 2014-11-13 08:21:41 -05:00
led.py Moved ST7735 to subdirectory 2014-11-06 11:56:04 -05:00
level.py Add JYMCU, IRDistance, Relay and SR04Distance 2014-11-24 22:40:17 -05:00
main.py update apds9960.py 2018-02-26 10:31:37 -05:00
motion.py Add JYMCU, IRDistance, Relay and SR04Distance 2014-11-24 22:40:17 -05:00
notes.ida Added esp32 2018-02-18 09:10:32 -05:00
sentrybot.py Added sentrybot control test. 2018-02-18 09:11:42 -05:00
shell.py Moved ST7735 to subdirectory 2014-11-06 11:56:04 -05:00
tft.py updating stuff 2014-11-22 11:33:41 -05:00

README.md

My MicroPython repository

Contents

lib directory

  • apds9960 - Proximity/Motion/Color sensor using I2C interface. Gesture reporting is not yet complete.
  • jcmcu - Temperature sensor using mlx90614 with a serial interface.
  • ds3231 - Battery backup clock with I2C interface. Ties data from ds3231 with pyb.RTC.
  • esp8266 - Interface PyBoard with an esp8266 as an external wifi interface with serial connection. Connection can be a bit flaky.
  • gy521 - Driver for gy-521 accelerometer using I2C communication.
  • irdistance - Driver for Sharp gp2y0a IR distance sensor using ADC pin.
  • joystick - Hilitchi 2pcs Arduino compatible Biaxial Button Joystick Sensor Module.
  • jymcu - Driver for JY-MCU Bluetooth board using serial connection.
  • l298n - Driver for L298N Dual HBridge Motor Controller.
  • mlx90614 - Driver for IR temperature sensor using I2C communication. NOTE: Mine don't work on PyBoard but do on ESP32 and ESP8266. I suspect the pull up resistors on my mlx90614 breakout are the cause. A raw mlx90614 would probably work.
  • oled - Driver for diymall 9.6 oled display using I2C communication. NOTE: While this works I implemented this in C and included it in the MicroPython OS to improve performance.
  • pca9865 - Driver for pca9865 16 servo controller using I2C communication.
  • pir - Driver for passive infrared motion detector.
  • pwm - wrapper for easier pwm use.
  • relay - Driver for my relay board.
  • seriffont, sysfont and terminalfont - Fonts used by ST7735 and oled. NOTE: My C implementations of those drivers use a default petme128_8x8 font included in the OS.
  • sr04distance - Driver for the SR04 sonic distance sensor.
  • ST7735 - Sainsmart LCD display driver. While this works, I implemented this in C and included in the MicroPython OS to improve performance.
  • tm1637 - Driver for the tm1637 quad 7-segment LED display.

ESP32

  • modules used on ESP32 running MicroPython.

ESP8266

  • modules used on ESP8266 running MicroPython.

Root Directory

  • bombs - render test for ST7735
  • motion - PIR sensor interupt test to display a message on motion detection.
  • tft - Tests for ST7735