Here is a list of all the postings Peter Bell has made in our forums. Click on a thread name to jump to the thread.
Thread: Smart Meters & temperature/BA thread size relationship |
24/01/2021 19:18:44 |
To change electricity supplier as we are often advised to do I had to have my meter replaced with a smart meter. This took my supplier at the time, EDF over a year to arrange. However it turned out the smart meter would only work with EDF so I now read my meter every month and mail the result to my new supplier. Some friends had a smart meter installed and they were so horrified by the reading when they boiled a kettle they have never used it since and now boil a kettle on there log burning stove---takes ages! Does anyone know if current smart meters can be transfered to a new supplier? |
Thread: Increasing Friction?? |
15/01/2021 13:53:20 |
Ive also put a small washer under the spring "legs" to increase the force if they are slipping. Useful if your trying to eliminate a problem. Peter |
Thread: Another Arduino-controlled pendulum clock |
12/01/2021 19:52:38 |
Thanks for the advice. Think it may be easier/quicker with my limited knowledge to go down the SD card route so I've ordered them also some extra nano's--seem to have run out Any reccomendations on temp? Got some DS18B20 but think I remember reading they were very slow, also got some TC74 to hand? Perhaps I can use the if statement where the pulse is generated as the tick after the threshold is reached? Peter #define THRESHOLD 10 int led = 13;
} void loop() {
|
11/01/2021 19:19:03 |
My pendulum seems to be happily running and its coming out at around 0.8 sec/ swing. Not sure if I should be asking this but here goes! Its a mild steel rod and bob in free air. If I wanted to get some simple data from it s rate would it need to beat seconds? What would equipment would I need to do this? Dont have a PC in the workshop. Peter |
Thread: Archdale Vertical Mill |
11/01/2021 17:21:34 |
Thanks for the history of Archdale Mark. I have an Archdale radial arm drill circa 1921 which I bought from a factory closure sale in Birmingham. Great machine, pleasure to use with all the controls to hand. It was in a store room partially buried. I bought the complete room and and demolished a wall to get it out selling most of the other contents of the room. I recruited 2 scrap men with a useful Hiab lorry to get it home and as we were gently pushing the drill through the factory delicatley balanced a pallet truck we were constantly heckled by people wanting to buy it, lots had looked at it but were more cautious than me about buying it and getting it out of the room.
Peter
|
Thread: Another Arduino-controlled pendulum clock |
05/01/2021 15:49:12 |
John, Yes I have a similar arrangement but also enabled pin 13 on and off to flash as the Arduino is remote from the pendulum, can see its working---very much work in progress! I thought of simple amplitude adjustment by using selective resistor if needed. The original sketch is a very neat arrangement, would have liked to sample something to give amplititude control as on my other clock but cannot think of a way at the moment without adding another sensor which I dont want to do. I deliberatly left the rod length short for a 1 sec beat as I was going to use the compound part to adjust it to 1 sec or more, think its about 0.75 secs now but needs reworking to make a double suspension spring arrangement to give it enough stability .
|
05/01/2021 12:58:33 |
Inspired by John's clock I eventually got round to trying the simple Arduino based driver which is described earlier in the other thread on a simple pendulum left hanging from a previous failed compound pendulum experiment. It has a an ironless wound core and the pendulum rod swinging over it has a small powerful magnet attached to the end. Pic below shows it swinging, nothing connected all as per the pic in the original article.
I used the sketch intact from the link and the pendulum worked first time, swinging away nicley, very pleasing. However after leaving it for a while when I went passed I could hear knocking with the pendulum swinging wildly. The knocking turned out to be the top suspension rod hitting the suspension bracket, not good. Put the scope on again and I could see multiple actuations from the coil. The pulse width was set at 30ms but I could see 5 x 30ms = 150ms, no wonder it was going a bit wild. Tried various settings on the sketch also playing with the limiting resistor which improved things. I realised that the multiple pulses were caused by the threshold voltage being seen on the rising part of all the cycle so modified the sketch slightly and its now on got one 30ms pulse and seems very happy. The pendulum duration is around 3/4 secs. Peter
|
Thread: Arduino Pendulum Clock Design - Comments Welcome |
10/12/2020 21:14:51 |
Dave, Good to get the report on your clock., that TCXO looks a challenge. I'm interested in seeing how you get on with the Nano Every. I bought a couple last year but I've never managed to get them to run anything more than Blink. Just plugged it in to remind me of what the problem is and got a message saying I needed a download into the library for the Every etc. Did this but still no good after configuring boards in tools etc. Gave one to a very knowledgable friend but he gave up as well so I'm looking forward to finding out what I've got wrong when yours works! Peter |
Thread: Mini lathe blowing fuse - time to change motor? |
06/12/2020 17:14:25 |
I'm with SOD on this one and I'd be a bit suspicious of the 100R and cap in series,. Think its called a snubber and Iv'e come across a few of them over the years which have broken down in a spectacular way and left traces of burning in the process. Occasionally on things like this Ive connected them ito the mains in series with a high wattage bulb or 1 bar electric fire to limit the current which has allowed me to see whats going on without too many distractions from blowing fuses and other dramas. Peter |
Thread: Display for Arduino |
28/11/2020 09:18:36 |
May thanks for all the help and suggestions. Tried them without success, however after reading the other thread on Arduino displays and following the suggestion from SOD I felt inspired enough to start looking up what I had on the 7219 which gave limited success due to my lack of knowledge before being abandoned 2 years ago. This time around from what I have learned I managed to work out what I was doing wrong and ended up with a working 7219 display on my weighing scale. This is my code below. The Adafruit display worked immediatly and its nice and large and bright so good suggestion. Next challenge is to explore storing and then retrieving a float value, can anyone reccomend an easy way or good tutorial etc? I keep hearing about wearing out eproms, is it best to store things like that on an SD card? Peter #include <HX711_ADC.h> void setup() { Serial.begin(9600); HCMAX7219.print7Seg(i,1,4,4); /* Write some text to the output buffer */ |
24/11/2020 19:24:30 |
Thanks for the help Dave. Tried all the 3 alternatives but still got the same result I'm afraid. Also tried another display just in case this one is a dud or not what it's marked with identical results. Think its time to put this display aside and wait until the ones arrive that were suggested earlier in the thread, sure they will bring new problems to the surface and then more learning. Peter |
23/11/2020 18:46:57 |
Thanks for the suggestions. Tried thems in many combinations including baud rate but didnt make any difference, When read i instead of weight got the display to do something, see attached reading a 1kg weight , no weight just flashes the decimal places. Put the lcd back as it doesnt seem to be the culprit. Tried another display with identical results, perhaps its time to give up and wait for the I2c display and other to arrive!
void setup() { void loop() { J=String(i); Edited By Peter Bell on 23/11/2020 18:47:21 Edited By Peter Bell on 23/11/2020 18:48:13 |
23/11/2020 11:57:16 |
Sorry forgot to say---yes working fine |
23/11/2020 11:17:23 |
Got rid of all lcd but no difference I'm afraid....
|
23/11/2020 10:42:02 |
This is my working sketch at least for weighing and LCD display--must have got it wrong as I cannot make the Parola do anything? Inserted what I think but probably not in the right place! Certaily takes a lot of memory. Can make the 7219 scroll from other sketches so the module is working. #include <MD_Parola.h> void loop() { J=String(weight); |
Thread: Arduino programming? |
23/11/2020 08:51:40 |
Malc, I'm in the same boat really but about 2 years in front! Thanks to help from this forum I've made good progress but original thinking on sketches is always a problem for me. I found that "Programming Arduino" getting started with sketches and "Next Steps" both by Simon Monk were a great help but perhaps you are further on from that, they include examples to play with as well as descriptions of the sketches. I found it useful if I could add lcd and serial prints to sketches to see what was happening but certainly plenty of Arduino around, parts and knowledge once you can manage the IDE. Peter |
Thread: Display for Arduino |
21/11/2020 09:48:58 |
Many thanks for the help, hesitated asking but pleased I did! The power of this site is amazing. Never heard of an I2c backpack so ordered some Adafruit bits also a TM1637 to try. Nice tutorial on the Adafruit. Meanwhile Ady I'll have a go with the Parola suggestion but looks far more than what I need. Copied the code and got it to compile after adding some curly braces. Added to my weighing sketch but its doing some funny things with the Max display, need more time to play, hopefully later. |
20/11/2020 11:04:45 |
Hello Not really model engineering but at least I'm using my Myford to make the parts! As a fairly inexperienced Arduino user I am building a dedicated weighing scale using a 1kg load cell. Its all working fine using a lcd display but what I would like is use a larger display and this where it gets difficult as there so many variations to choose from. Tried a max 7219 without much success also some tft but all seem difficult to use, at least for me! Can anyone reccomend an easy to use current larger display that worked for them, say 1.8" or 2.2"? Thanks Peter |
Thread: Making storage air power out of thin air - new UK powerplant |
08/11/2020 20:18:40 |
Clive, Thanks for the explanation--its all new to me so I found it very interesting after finding it on the web. From the info the plant looks quite large at 50Mw so expect the compressor (or multiples) and cooling to be big. Is the compressor normally a 3 stage piston type? Seems frightening pressures to me! Once the air is a liquid can it be stored in an insulated container and what would the pressure be? Peter |
Thread: Oil starvation |
18/10/2020 19:10:45 |
Not much to add all well covered but I know on bigger loco's if the piston alignment as set by the crosshead is out it can give funny noises as the piston is rubbing the bore especially when running slow. Occasionally piston rings can make similar noises, strip down and they look fine, reassemble just the same! Peter |
Want the latest issue of Model Engineer or Model Engineers' Workshop? Use our magazine locator links to find your nearest stockist!
Sign up to our newsletter and get a free digital issue.
You can unsubscribe at anytime. View our privacy policy at www.mortons.co.uk/privacy
You can contact us by phone, mail or email about the magazines including becoming a contributor, submitting reader's letters or making queries about articles. You can also get in touch about this website, advertising or other general issues.
Click THIS LINK for full contact details.
For subscription issues please see THIS LINK.