Search found 19 matches

by Ridley Walker
Tue Jul 26, 2016 5:17 pm
Forum: WiPy and CC3200 boards
Topic: Onewire and DS18B20
Replies: 42
Views: 56829

Re: Onewire and DS18B20 instal on pyboard ver1

Anyone here willing to help me install the drivers for the ds18b20 ? Yes, i have looked at several sources - at least one of which is touted as simple. Well, not to me, they are not. I am a complete noob and the only reason i have got the pyboard running is because it came pre loaded ( Big shout out...
by Ridley Walker
Mon Jul 25, 2016 7:47 pm
Forum: ESP8266 boards
Topic: Geekcredit "chinaboard" knockoff load problems
Replies: 12
Views: 11729

Re: Geekcredit "chinaboard" knockoff load problems

@deshipu It's known, variously, as "the cost of doing business. You have to run as fast as you can just to keep up, "etc. How many buggy whips have you bought lately? If adafruit's map going forward doesn't include microphthon They may regret it, but it is their plan - and their risk. i certainly wo...
by Ridley Walker
Sun Jul 24, 2016 8:02 pm
Forum: ESP8266 boards
Topic: Geekcredit "chinaboard" knockoff load problems
Replies: 12
Views: 11729

Re: Geekcredit "chinaboard" knockoff load problems

I don't buy from Adafruit; when they price their product honestly I may reconsider.however i am constitutionally incapable of dealing with anyone who wants to charge me $12+ to ship a simple 1oz us parcel post for which the USPS charge is ~$2
I can get Pyboards through other channels...
by Ridley Walker
Sun Jul 24, 2016 7:21 pm
Forum: ESP8266 boards
Topic: Geekcredit "chinaboard" knockoff load problems
Replies: 12
Views: 11729

Re: Geekcredit "chinaboard" knockoff load problems

Warren, you completely cleaned the subject out! I agree with everything you said, well, as i understand it anyway. However that still leaves me where i started i.e, Can't get past Zero, stuck below the bottom of the learning curve. I have several places around my property where i could use these thi...
by Ridley Walker
Sat Jul 23, 2016 6:29 pm
Forum: ESP8266 boards
Topic: Geekcredit "chinaboard" knockoff load problems
Replies: 12
Views: 11729

Geekcredit "chinaboard" knockoff load problems

I recently bought a couple of ESP8266 "china boards". and have discovered that my knowledge of Linux/command line, etc. is woefully in adequate for the task of loading micropython. All the load instructions i have tried to follow assume knowledge and a familiarity of Linux and command line which, in...
by Ridley Walker
Fri Jul 22, 2016 2:41 pm
Forum: General Discussion and Questions
Topic: Sense a voltage and turn on a pin
Replies: 5
Views: 5952

Re: Sense a voltage and turn on a pin

Confused? Confused!!! You have no idea. Imagine me at 76 yrs old, can't remember what i had for breakfast, zero experience with this stuff. Thanks again, your code fixed me right up. I used your code to show me the errors in the stuff i had cobbled up. Now a happy camper - my greenhouse will be warm...
by Ridley Walker
Thu Jul 21, 2016 11:53 pm
Forum: General Discussion and Questions
Topic: Sense a voltage and turn on a pin
Replies: 5
Views: 5952

Re: Sense a voltage and turn on a pin

thanks Dave,
I have been looking for a course that is "beginner " enough for me. I was going thru a course from Code Academy, I think it was, but it disappeared! I'll have to get more serious looking for it...

In your code you referenced "elsif". Did you mean "elif"?
by Ridley Walker
Thu Jul 21, 2016 7:01 pm
Forum: General Discussion and Questions
Topic: Sense a voltage and turn on a pin
Replies: 5
Views: 5952

Sense a voltage and turn on a pin

i want to control temperature in a small greenhouse. I have a proper sensor ordered, but in the meantime, i have been hacking around with a simple resistor/thermistor string between 3.3v and ground. I can sense the voltage on ADC1, print it, and blink an led once a second. I have been trying use an ...
by Ridley Walker
Thu Jun 30, 2016 4:02 pm
Forum: General Discussion and Questions
Topic: Continuously reading ADC pins
Replies: 7
Views: 6348

Re: Continuously reading ADC pins

Des, I re-scanned all the general discussion pages and found these two, both of which are as advertised I have been doing adc.read(). Works great with pot.read()! pot = pyb.ADC('X1') while True: pot.read() pyb.delay(100) =============================== import pyb pot = pyb.ADC('X1') while True: x = ...
by Ridley Walker
Wed Jun 29, 2016 10:49 pm
Forum: General Discussion and Questions
Topic: Continuously reading ADC pins
Replies: 7
Views: 6348

Re: Continuously reading ADC pins

as i have said, i have done the tutorials - blink the LEDs, etc> So, that's good When i try to read the ADC pin and loop similar to blinking an LED it fails... If my frustration shows, it's because well, I am. It's not easy being this ignorant! Edit to add: As i have said elsewhere on this forum, I'...