Search found 176 matches

by JimTal001
Sat Apr 16, 2016 11:04 pm
Forum: General Discussion and Questions
Topic: Pyboard and linear ccd sensor(TSL 1410R)
Replies: 17
Views: 15923

Re: Pyboard and linear ccd sensor(TSL 1410R)

Can anyone explain how the voltage output of a single pixel from this sensor is converted to an RGB value?

Thanks for your help.
by JimTal001
Mon Feb 08, 2016 6:22 pm
Forum: MicroPython pyboard
Topic: Led Question
Replies: 2
Views: 2779

Re: Led Question

Thanks. A factory reset took care of the LED issue.
by JimTal001
Mon Feb 08, 2016 5:28 pm
Forum: MicroPython pyboard
Topic: Led Question
Replies: 2
Views: 2779

Led Question

What does it mean when the blue LED on the pyboard comes on and stays on following power cycle? I can turn it off using: blue = pyb.LED( 4 ) blue.off() but on successive power cycle the blue light comes on and stays on. I loaned my pyboard to a friend and since I got it back it has been in this state.
by JimTal001
Mon Feb 01, 2016 5:34 pm
Forum: Drivers for External Components
Topic: Bosch BME280 driver
Replies: 42
Views: 45905

Re: Bosch BME280 driver

Thanks Turbinenreiter, I did not see this in the literature.
by JimTal001
Sun Jan 31, 2016 11:07 pm
Forum: MicroPython pyboard
Topic: Ultrasonic ADC/DAC/logger project with the PyBoard
Replies: 5
Views: 5178

Re: Ultrasonic ADC/DAC/logger project with the PyBoard

I created a pyboard driver for the ADS9850 DDS module. This $10 board will generate up to around 40 MHz sin wave output. If you are interested in the driver let me know (I don't have a github site yet).
by JimTal001
Sun Jan 31, 2016 10:38 pm
Forum: Drivers for External Components
Topic: Bosch BME280 driver
Replies: 42
Views: 45905

Re: Bosch BME280 driver

I believe I now have the pyboard working with the BME280 sensor. The data seems to be slightly off compared to measurements. If you are interested to review the code and add it to your bitbucket site I will post it.
by JimTal001
Sun Jan 31, 2016 2:19 pm
Forum: Drivers for External Components
Topic: Bosch BME280 driver
Replies: 42
Views: 45905

Re: Bosch BME280 driver

Great job! I am interested to use the same sensor with the pyboard. Will the driver require much change to work with the pyboard? If so, would you be willing to suggest the appropriate changes? Also, The original Adafruit driver sets the I2C address as: # BME280 default address. BME280_I2CADDR = 0x7...
by JimTal001
Fri Jan 22, 2016 9:46 pm
Forum: Hardware Projects
Topic: ADS9850 DDS Signal Generator
Replies: 3
Views: 5072

Re: ADS9850 DDS Signal Generator

this board -> ADS9850 DDS module
by JimTal001
Fri Jan 22, 2016 5:04 pm
Forum: General Discussion and Questions
Topic: RP GPIO code to mycropython help request
Replies: 5
Views: 4741

Re: RP GPIO code to mycropython help request

If anyone is interested, the following code works fine with the AD9850 DSP module. import pyb # Define GPIO pins DATA = pyb.Pin('Y1', pyb.Pin.OUT_PP) W_CLK = pyb.Pin('Y2', pyb.Pin.OUT_PP) FQ_UD = pyb.Pin('Y3', pyb.Pin.OUT_PP) RESET = pyb.Pin('Y4', pyb.Pin.OUT_PP) def SetPinLow(pin): pin.low() return...
by JimTal001
Fri Jan 22, 2016 12:37 am
Forum: General Discussion and Questions
Topic: RP GPIO code to mycropython help request
Replies: 5
Views: 4741

Re: RP GPIO code to mycropython help request

Thanks. I'll try it out against the hardware tomorrow. Once working I'll submit the driver to the community.